mirror of
https://github.com/unraid/api.git
synced 2026-01-01 22:20:05 -06:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced enhanced stepper components for smoother multi-step interactions. - Added new loading indicators and improved the loading experience with customizable variants. - **UI Improvements** - Refreshed the global color palette and updated styling across buttons, badges, and loading indicators for a more modern, consistent experience. - Improved the organization and readability of templates and styles across various components. - **Code & Dependency Updates** - Updated key dependencies and revised the theme and configuration settings to improve performance and maintainability. - Introduced new environment variables for better configuration management. - **Legacy Cleanup** - Removed deprecated components and streamlined registrations to simplify the codebase without affecting end-user functionality. - Eliminated unused utility functions and legacy code to enhance overall code quality. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: mdatelle <mike@datelle.net> Co-authored-by: Eli Bosley <ekbosley@gmail.com>
68 lines
2.0 KiB
Vue
68 lines
2.0 KiB
Vue
<script setup lang="ts">
|
|
import { storeToRefs } from 'pinia';
|
|
|
|
import { ArrowPathIcon, ArrowTopRightOnSquareIcon, LinkIcon } from '@heroicons/vue/24/solid';
|
|
import { Badge, BrandButton } from '@unraid/ui';
|
|
|
|
import type { ComposerTranslation } from 'vue-i18n';
|
|
|
|
import { useAccountStore } from '~/store/account';
|
|
import { useReplaceRenewStore } from '~/store/replaceRenew';
|
|
|
|
const accountStore = useAccountStore();
|
|
const replaceRenewStore = useReplaceRenewStore();
|
|
const { keyLinkedStatus, keyLinkedOutput } = storeToRefs(replaceRenewStore);
|
|
|
|
defineProps<{
|
|
t: ComposerTranslation;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-wrap items-center justify-between gap-8px">
|
|
<BrandButton
|
|
v-if="keyLinkedStatus !== 'linked' && keyLinkedStatus !== 'checking'"
|
|
variant="none"
|
|
:title="t('Refresh')"
|
|
class="group"
|
|
@click="replaceRenewStore.check(true)"
|
|
>
|
|
<Badge
|
|
v-if="keyLinkedOutput"
|
|
:variant="keyLinkedOutput.variant"
|
|
:icon="keyLinkedOutput.icon"
|
|
:icon-right="ArrowPathIcon"
|
|
size="md"
|
|
>
|
|
{{ t(keyLinkedOutput.text ?? 'Unknown') }}
|
|
</Badge>
|
|
</BrandButton>
|
|
<Badge v-else :variant="keyLinkedOutput.variant" :icon="keyLinkedOutput.icon" size="md">
|
|
{{ t(keyLinkedOutput.text ?? 'Unknown') }}
|
|
</Badge>
|
|
|
|
<span class="inline-flex flex-wrap-items-start gap-8px">
|
|
<BrandButton
|
|
v-if="keyLinkedStatus === 'notLinked'"
|
|
variant="underline"
|
|
:external="true"
|
|
:icon="LinkIcon"
|
|
:icon-right="ArrowTopRightOnSquareIcon"
|
|
:text="t('Link Key')"
|
|
:title="t('Learn more and link your key to your account')"
|
|
class="text-14px"
|
|
@click="accountStore.linkKey"
|
|
/>
|
|
<BrandButton
|
|
v-else
|
|
variant="underline"
|
|
:external="true"
|
|
:icon-right="ArrowTopRightOnSquareIcon"
|
|
:text="t('Learn More')"
|
|
class="text-14px"
|
|
@click="accountStore.myKeys"
|
|
/>
|
|
</span>
|
|
</div>
|
|
</template>
|