You've already forked AstralRinth
forked from didirus/AstralRinth
* New project page * fix silly icon tailwind classes * Start new versions page, add new ButtonStyled component * Pagination and finish mocking up versions page functionality * green download button * hover animation * New Modal, Avatar refactor, subpages in NavTabs * lint * Download modal * New user page + fix lint * fix ui lint * Download animation fix * Versions filter + finish project page * Improve consistency of buttons on home page * Fix ButtonStyled breaking * Fix margin on version summary * finish search, new modals, user + project page mobile * fix gallery image pages * New project header * Fix gallery tab showing improperly * Use auto direction + position for all popouts * Preliminary user page * test to see if this fixes login stuff * remove extra slash * Add version actions, move download button on versions page * Listed -> public * Shorten download modal selector height * Fix user menu open direction * Change breakpoint for header collapse * Only underline title * Tighten padding on stats a little * New nav * Make mobile breakpoint more consistent * fix header breakpoint regression * Add sign in button * Fix edit icon color * Fix margin at top of screen * Fix user bios and ad width * Fix user nav showing when there's only one type of project * Fix plural projects on user page & extract i18n * Remove ads on mobile for now * Fix overflow menu showing hidden items * NavTabs on mobile * Fix navbar z index * Search filter overhaul + negative filters * fix no-max-height * port version filters, fix following/collections, lint * hide promos * ui lint * Disable modal background animation to reduce reported motion sickness * Hide install with modrinth app button on mobile --------- Signed-off-by: Geometrically <18202329+Geometrically@users.noreply.github.com> Co-authored-by: Prospector <prospectordev@gmail.com>
129 lines
3.8 KiB
Vue
129 lines
3.8 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 } from "@modrinth/assets";
|
|
|
|
import ModrinthIcon from "~/assets/images/logo.svg?component";
|
|
import PlusIcon from "~/assets/images/utils/plus.svg?component";
|
|
import ModeratorIcon from "~/assets/images/sidebar/admin.svg?component";
|
|
import CreatorIcon from "~/assets/images/utils/box.svg?component";
|
|
import DraftIcon from "~/assets/images/utils/file-text.svg?component";
|
|
import CrossIcon from "~/assets/images/utils/x.svg?component";
|
|
import ArchiveIcon from "~/assets/images/utils/archive.svg?component";
|
|
import ProcessingIcon from "~/assets/images/utils/updated.svg?component";
|
|
import CheckIcon from "~/assets/images/utils/check.svg?component";
|
|
import LockIcon from "~/assets/images/utils/lock.svg?component";
|
|
import CalendarIcon from "~/assets/images/utils/calendar.svg?component";
|
|
import CloseIcon from "~/assets/images/utils/check-circle.svg?component";
|
|
|
|
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>
|