mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-20 03:31:13 +10:00
* feat: database redist support * feat: rearchitecture of database schemas, migration reset, and #180 * feat: import redists * fix: giantbomb logging bug * feat: partial user platform support + statusMessage -> message * feat: add user platform filters to store view * fix: sanitize svg uploads ... copilot suggested this I feel dirty. * feat: beginnings of platform & redist management * feat: add server side redist patching * fix: update drop-base commit * feat: import of custom platforms & file extensions * fix: redelete platform * fix: remove platform * feat: uninstall commands, new R UI * checkpoint: before migrating to nuxt v4 * update to nuxt 4 * fix: fixes for Nuxt v4 update * fix: remaining type issues * feat: initial feedback to import other kinds of versions * working commit * fix: lint * feat: redist import
32 lines
763 B
Vue
32 lines
763 B
Vue
<template>
|
|
<div
|
|
:class="[
|
|
'relative h-5 rounded-xl overflow-hidden',
|
|
CHART_COLOURS[backgroundColor].bg,
|
|
]"
|
|
>
|
|
<div
|
|
:style="{ width: `${percentage}%` }"
|
|
:class="['transition-all h-full', CHART_COLOURS[color].bg]"
|
|
/>
|
|
<span
|
|
class="absolute inset-0 flex items-center justify-center text-blue-200 text-sm font-bold font-display"
|
|
>
|
|
{{ $t("tasks.admin.progress", [Math.round(percentage * 10) / 10]) }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { type ChartColour, CHART_COLOURS } from "~/utils/colors";
|
|
const {
|
|
percentage,
|
|
color = "blue",
|
|
backgroundColor = "zinc",
|
|
} = defineProps<{
|
|
percentage: number;
|
|
color?: ChartColour;
|
|
backgroundColor?: ChartColour;
|
|
}>();
|
|
</script>
|