119 lines
2.8 KiB
Vue
119 lines
2.8 KiB
Vue
<template>
|
|
<span :class="'version-badge ' + color + ' type--' + type">
|
|
<template v-if="color"> <span class="circle" /> {{ type }} </template>
|
|
|
|
<!-- User roles -->
|
|
<template v-else-if="type === 'admin'"> <ModrinthIcon /> Modrinth Team </template>
|
|
<template v-else-if="type === 'moderator'"> <ScaleIcon /> Moderator </template>
|
|
<template v-else-if="type === 'creator'"><BoxIcon /> Creator</template>
|
|
|
|
<!-- Project statuses -->
|
|
<template v-else-if="type === 'approved'"><ListIcon /> Listed</template>
|
|
<template v-else-if="type === 'unlisted'"><EyeOffIcon /> Unlisted</template>
|
|
<template v-else-if="type === 'withheld'"><EyeOffIcon /> Withheld</template>
|
|
<template v-else-if="type === 'private'"><LockIcon /> Private</template>
|
|
<template v-else-if="type === 'scheduled'"> <CalendarIcon /> Scheduled </template>
|
|
<template v-else-if="type === 'draft'"><FileTextIcon /> Draft</template>
|
|
<template v-else-if="type === 'archived'"> <ArchiveIcon /> Archived </template>
|
|
<template v-else-if="type === 'rejected'"><XIcon /> Rejected</template>
|
|
<template v-else-if="type === 'processing'"> <UpdatedIcon /> Under review </template>
|
|
|
|
<!-- Team members -->
|
|
<template v-else-if="type === 'accepted'"><CheckIcon /> Accepted</template>
|
|
<template v-else-if="type === 'pending'"> <UpdatedIcon /> Pending </template>
|
|
<template v-else> <span class="circle" /> {{ type }} </template>
|
|
</span>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
ModrinthIcon,
|
|
ScaleIcon,
|
|
BoxIcon,
|
|
ListIcon,
|
|
EyeOffIcon,
|
|
FileTextIcon,
|
|
XIcon,
|
|
ArchiveIcon,
|
|
UpdatedIcon,
|
|
CheckIcon,
|
|
LockIcon,
|
|
CalendarIcon,
|
|
} from '@/components'
|
|
|
|
defineProps({
|
|
type: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.version-badge {
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: bold;
|
|
width: fit-content;
|
|
--badge-color: var(--color-gray);
|
|
color: var(--badge-color);
|
|
|
|
.circle {
|
|
width: 0.5rem;
|
|
height: 0.5rem;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
margin-right: 0.25rem;
|
|
background-color: var(--badge-color);
|
|
}
|
|
|
|
svg {
|
|
margin-right: 0.25rem;
|
|
}
|
|
|
|
&.type--withheld,
|
|
&.type--rejected,
|
|
&.red {
|
|
--badge-color: var(--color-red);
|
|
}
|
|
|
|
&.type--pending,
|
|
&.type--moderator,
|
|
&.type--processing,
|
|
&.type--scheduled,
|
|
&.orange {
|
|
--badge-color: var(--color-orange);
|
|
}
|
|
|
|
&.type--accepted,
|
|
&.type--admin,
|
|
&.green {
|
|
--badge-color: var(--color-green);
|
|
}
|
|
|
|
&.type--creator,
|
|
&.type--approved,
|
|
&.blue {
|
|
color: var(--color-blue);
|
|
}
|
|
|
|
&.type--unlisted,
|
|
&.purple {
|
|
color: var(--color-purple);
|
|
}
|
|
|
|
&.type--private,
|
|
&.gray {
|
|
--badge-color: var(--color-gray);
|
|
}
|
|
|
|
&::first-letter {
|
|
text-transform: capitalize;
|
|
}
|
|
}
|
|
</style>
|