mirror of
https://github.com/unraid/api.git
synced 2026-01-05 16:09:49 -06:00
92 lines
2.7 KiB
Vue
92 lines
2.7 KiB
Vue
<script setup lang="ts">
|
|
import { ArrowPathIcon, ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
|
|
import { storeToRefs } from 'pinia';
|
|
|
|
import useDateTimeHelper from '~/composables/dateTime';
|
|
import { DOCS_REGISTRATION_LICENSING } from '~/helpers/urls';
|
|
import { useReplaceRenewStore } from '~/store/replaceRenew';
|
|
import { useServerStore } from '~/store/server';
|
|
|
|
export interface Props {
|
|
t: any;
|
|
}
|
|
|
|
const props = defineProps<Props>();
|
|
|
|
const replaceRenewStore = useReplaceRenewStore();
|
|
const serverStore = useServerStore();
|
|
|
|
const { renewStatus } = storeToRefs(replaceRenewStore);
|
|
const {
|
|
dateTimeFormat,
|
|
regExp,
|
|
regUpdatesExpired,
|
|
renewAction,
|
|
} = storeToRefs(serverStore);
|
|
|
|
const reload = () => {
|
|
window.location.reload();
|
|
};
|
|
|
|
const {
|
|
outputDateTimeReadableDiff: readableDiffRegExp,
|
|
outputDateTimeFormatted: formattedRegExp,
|
|
} = useDateTimeHelper(dateTimeFormat.value, props.t, true, regExp.value);
|
|
|
|
const output = computed(() => {
|
|
if (!regExp.value) {
|
|
return undefined;
|
|
}
|
|
return {
|
|
text: regUpdatesExpired.value
|
|
? props.t('Ineligible for updates released after {0}', [formattedRegExp.value])
|
|
: props.t('Eligible for updates until {0}', [formattedRegExp.value]),
|
|
title: regUpdatesExpired.value
|
|
? props.t('Ineligible as of {0}', [readableDiffRegExp.value])
|
|
: props.t('Eligible for updates for {0}', [readableDiffRegExp.value]),
|
|
};
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="output" class="flex flex-col gap-8px">
|
|
<RegistrationUpdateExpiration :t="t" />
|
|
|
|
<p class="text-14px opacity-90">
|
|
<template v-if="renewStatus === 'installed'">
|
|
{{ t('Your license key was automatically renewed and installed. Reload the page to see updated details.') }}
|
|
</template>
|
|
</p>
|
|
<div class="flex flex-wrap items-start justify-between gap-8px">
|
|
<BrandButton
|
|
v-if="renewStatus === 'installed'"
|
|
:icon="ArrowPathIcon"
|
|
:text="t('Reload Page')"
|
|
class="flex-grow"
|
|
@click="reload"
|
|
/>
|
|
<BrandButton
|
|
v-else-if="regUpdatesExpired"
|
|
:disabled="renewAction?.disabled"
|
|
:external="renewAction?.external"
|
|
:icon="renewAction.icon"
|
|
:icon-right="ArrowTopRightOnSquareIcon"
|
|
:icon-right-hover-display="true"
|
|
:text="t('Extend License')"
|
|
:title="t('Pay your annual fee to continue receiving OS updates.')"
|
|
class="flex-grow"
|
|
@click="renewAction.click()"
|
|
/>
|
|
|
|
<BrandButton
|
|
btn-style="underline"
|
|
:external="true"
|
|
:href="DOCS_REGISTRATION_LICENSING.toString()"
|
|
:icon-right="ArrowTopRightOnSquareIcon"
|
|
:text="t('Learn More')"
|
|
class="text-14px"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|