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 - **Style** - Updated CSS file paths across multiple components to reference assets absolutely, ensuring consistent and reliable styling across the user interface. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
129 lines
4.2 KiB
Vue
129 lines
4.2 KiB
Vue
<script lang="ts" setup>
|
|
import { ref, watchEffect } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
|
|
import { ArrowTopRightOnSquareIcon, ExclamationTriangleIcon, EyeIcon } from '@heroicons/vue/24/solid';
|
|
import { BrandButton, CardWrapper } from '@unraid/ui';
|
|
import dayjs from 'dayjs';
|
|
|
|
import type { UserProfileLink } from '~/types/userProfile';
|
|
import type { ComposerTranslation } from 'vue-i18n';
|
|
|
|
import useDateTimeHelper from '~/composables/dateTime';
|
|
import { useServerStore } from '~/store/server';
|
|
import { useUpdateOsStore } from '~/store/updateOs';
|
|
import { useUpdateOsActionsStore } from '~/store/updateOsActions';
|
|
|
|
const props = defineProps<{
|
|
t: ComposerTranslation;
|
|
}>();
|
|
|
|
const serverStore = useServerStore();
|
|
const updateOsStore = useUpdateOsStore();
|
|
const updateOsActionsStore = useUpdateOsActionsStore();
|
|
|
|
const { dateTimeFormat, regTy, renewAction, updateOsResponse } = storeToRefs(serverStore);
|
|
const { availableWithRenewal } = storeToRefs(updateOsStore);
|
|
const { ineligibleText } = storeToRefs(updateOsActionsStore);
|
|
|
|
const availableWithRenewalRelease = computed(() =>
|
|
availableWithRenewal.value ? updateOsResponse.value : undefined
|
|
);
|
|
const { outputDateTimeFormatted: formattedReleaseDate } = useDateTimeHelper(
|
|
dateTimeFormat.value,
|
|
props.t,
|
|
true,
|
|
dayjs(availableWithRenewalRelease.value?.date, 'YYYY-MM-DD').valueOf()
|
|
);
|
|
|
|
const heading = computed((): string => {
|
|
if (availableWithRenewal.value) {
|
|
return props.t('Unraid OS {0} Released', [availableWithRenewal.value]);
|
|
}
|
|
return props.t('License Key Updates Expired');
|
|
});
|
|
|
|
const text = computed(() => {
|
|
return props.t(ineligibleText.value, [regTy.value, formattedReleaseDate.value]);
|
|
});
|
|
|
|
const updateButton = ref<UserProfileLink | undefined>();
|
|
|
|
watchEffect(() => {
|
|
if (availableWithRenewal.value) {
|
|
updateButton.value = updateOsActionsStore.updateCallbackButton();
|
|
} else {
|
|
updateButton.value = updateOsActionsStore.updateCallbackButton();
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<CardWrapper :increased-padding="true" :warning="true">
|
|
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-20px sm:gap-24px">
|
|
<div class="grid gap-y-16px">
|
|
<h3 class="font-semibold leading-normal flex flex-row items-start justify-start gap-8px">
|
|
<ExclamationTriangleIcon class="w-20px shrink-0" />
|
|
<span class="leading-none inline-flex flex-wrap justify-start items-baseline gap-8px">
|
|
<span class="text-20px">
|
|
{{ heading }}
|
|
</span>
|
|
<span
|
|
v-if="
|
|
availableWithRenewalRelease && availableWithRenewalRelease.date && formattedReleaseDate
|
|
"
|
|
class="text-16px opacity-75 shrink"
|
|
>
|
|
{{ formattedReleaseDate }}
|
|
</span>
|
|
</span>
|
|
</h3>
|
|
|
|
<h4 class="text-18px font-semibold italic">
|
|
<RegistrationUpdateExpiration :t="t" />
|
|
</h4>
|
|
|
|
<div class="prose text-black text-16px leading-relaxed whitespace-normal" v-html="text" />
|
|
</div>
|
|
|
|
<div class="flex flex-col sm:flex-shrink-0 items-center gap-16px">
|
|
<BrandButton
|
|
:disabled="renewAction?.disabled"
|
|
:external="renewAction?.external"
|
|
:icon="renewAction.icon"
|
|
:icon-right="ArrowTopRightOnSquareIcon"
|
|
:text="t('Extend License')"
|
|
:title="t('Pay your annual fee to continue receiving OS updates.')"
|
|
class="flex-grow"
|
|
@click="renewAction.click?.()"
|
|
/>
|
|
<!-- <BrandButton
|
|
variant="black"
|
|
href="/Tools/Registration"
|
|
:icon="WrenchScrewdriverIcon"
|
|
:icon-right="ArrowSmallRightIcon"
|
|
:text="t('Learn more and fix')"
|
|
class="flex-none" /> -->
|
|
|
|
<BrandButton
|
|
v-if="availableWithRenewal && updateButton"
|
|
variant="outline-black"
|
|
:external="updateButton?.external"
|
|
:icon="EyeIcon"
|
|
:icon-right="ArrowTopRightOnSquareIcon"
|
|
:name="updateButton?.name"
|
|
:text="t('View Changelog')"
|
|
class="flex-none"
|
|
@click="updateButton?.click"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</CardWrapper>
|
|
</template>
|
|
|
|
<style lang="postcss">
|
|
/* Import unraid-ui globals first */
|
|
@import '@unraid/ui/styles';
|
|
@import '~/assets/main.css';
|
|
</style>
|