You've already forked AstralRinth
forked from didirus/AstralRinth
* Start of app redesign * format * continue progress * Content page nearly done * Fix recursion issues with content page * Fix update all alignment * Discover page progress * Settings progress * Removed unlocked-size hack that breaks web * Revamp project page, refactor web project page to share code with app, fixed loading bar, misc UI/UX enhancements, update ko-fi logo, update arrow icons, fix web issues caused by floating-vue migration, fix tooltip issues, update web tooltips, clean up web hydration issues * Ads + run prettier * Begin auth refactor, move common messages to ui lib, add i18n extraction to all apps, begin Library refactor * fix ads not hiding when plus log in * rev lockfile changes/conflicts * Fix sign in page * Add generated * (mostly) Data driven search * Fix search mobile issue * profile fixes * Project versions page, fix typescript on UI lib and misc fixes * Remove unused gallery component * Fix linkfunction err * Search filter controls at top, localization for locked filters * Fix provided filter names * Fix navigating from instance browse to main browse * Friends frontend (#2995) * Friends system frontend * (almost) finish frontend * finish friends, fix lint * Fix lint --------- Signed-off-by: Geometrically <18202329+Geometrically@users.noreply.github.com> * Refresh macOS app icon * Update web search UI more * Fix link opens * Fix frontend build --------- Signed-off-by: Geometrically <18202329+Geometrically@users.noreply.github.com> Co-authored-by: Jai A <jaiagr+gpg@pm.me> Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
132 lines
3.3 KiB
Vue
132 lines
3.3 KiB
Vue
<template>
|
|
<span
|
|
:class="
|
|
'badge flex items-center gap-1 font-semibold text-secondary ' + color + ' type--' + type
|
|
"
|
|
>
|
|
<template v-if="color"> <span class="circle" /> {{ capitalizeString(type) }}</template>
|
|
|
|
<!-- User roles -->
|
|
<template v-else-if="type === 'admin'"> <ModrinthIcon /> Modrinth Team</template>
|
|
<template v-else-if="type === 'moderator'"> <ModeratorIcon /> Moderator</template>
|
|
<template v-else-if="type === 'creator'"><CreatorIcon /> Creator</template>
|
|
<template v-else-if="type === 'plus'"><PlusIcon /> Modrinth Plus</template>
|
|
|
|
<!-- Project statuses -->
|
|
<template v-else-if="type === 'approved'"><GlobeIcon /> Public</template>
|
|
<template v-else-if="type === 'approved-general'"><CheckIcon /> Approved</template>
|
|
<template v-else-if="type === 'unlisted' || type === 'withheld'"
|
|
><LinkIcon /> Unlisted</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'"><DraftIcon /> Draft</template>
|
|
<template v-else-if="type === 'archived'"> <ArchiveIcon /> Archived</template>
|
|
<template v-else-if="type === 'rejected'"><CrossIcon /> Rejected</template>
|
|
<template v-else-if="type === 'processing'"> <ProcessingIcon /> Under review</template>
|
|
|
|
<!-- Team members -->
|
|
<template v-else-if="type === 'accepted'"><CheckIcon /> Accepted</template>
|
|
<template v-else-if="type === 'pending'"> <ProcessingIcon /> Pending </template>
|
|
|
|
<!-- Transaction statuses -->
|
|
<template v-else-if="type === 'success'"><CheckIcon /> Success</template>
|
|
|
|
<!-- Report status -->
|
|
<template v-else-if="type === 'closed'"> <CloseIcon /> Closed</template>
|
|
|
|
<!-- Other -->
|
|
<template v-else> <span class="circle" /> {{ capitalizeString(type) }} </template>
|
|
</span>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
GlobeIcon,
|
|
LinkIcon,
|
|
ModrinthIcon,
|
|
PlusIcon,
|
|
ScaleIcon as ModeratorIcon,
|
|
BoxIcon as CreatorIcon,
|
|
FileTextIcon as DraftIcon,
|
|
XIcon as CrossIcon,
|
|
ArchiveIcon,
|
|
UpdatedIcon as ProcessingIcon,
|
|
CheckIcon,
|
|
LockIcon,
|
|
CalendarIcon,
|
|
XCircleIcon as CloseIcon,
|
|
} from "@modrinth/assets";
|
|
import { capitalizeString } from "@modrinth/utils";
|
|
|
|
defineProps({
|
|
type: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.badge {
|
|
.circle {
|
|
width: 0.5rem;
|
|
height: 0.5rem;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
margin-right: 0.25rem;
|
|
background-color: var(--badge-color);
|
|
}
|
|
|
|
svg {
|
|
vertical-align: -15%;
|
|
width: 1em;
|
|
height: 1em;
|
|
}
|
|
|
|
&.type--closed,
|
|
&.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,
|
|
&.type--success,
|
|
&.type--approved-general,
|
|
&.green {
|
|
--badge-color: var(--color-green);
|
|
}
|
|
|
|
&.type--creator,
|
|
&.blue {
|
|
--badge-color: var(--color-blue);
|
|
}
|
|
|
|
&.type--unlisted,
|
|
&.type--plus,
|
|
&.purple {
|
|
--badge-color: var(--color-purple);
|
|
}
|
|
|
|
&.type--private,
|
|
&.type--approved,
|
|
&.gray {
|
|
--badge-color: var(--color-secondary);
|
|
}
|
|
}
|
|
</style>
|