Files
api/web/components/UpdateOs/UpdateIneligible.vue
2024-05-16 14:13:01 -07:00

129 lines
4.2 KiB
Vue

<script lang="ts" setup>
import {
ArrowTopRightOnSquareIcon,
ExclamationTriangleIcon,
EyeIcon,
} from '@heroicons/vue/24/solid';
import dayjs from 'dayjs';
import { storeToRefs } from 'pinia';
import { ref, watchEffect } from 'vue';
import type { ComposerTranslation } from 'vue-i18n';
import 'tailwindcss/tailwind.css';
import '~/assets/main.css';
import useDateTimeHelper from '~/composables/dateTime';
import { useServerStore } from '~/store/server';
import { useUpdateOsStore } from '~/store/updateOs';
import { useUpdateOsActionsStore } from '~/store/updateOsActions';
import type { UserProfileLink } from '~/types/userProfile';
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>
<UiCardWrapper :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
btn-style="black"
href="/Tools/Registration"
:icon="WrenchScrewdriverIcon"
:icon-right="ArrowSmallRightIcon"
:text="t('Learn more and fix')"
class="flex-none" /> -->
<BrandButton
v-if="availableWithRenewal && updateButton"
btn-style="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>
</UiCardWrapper>
</template>
<style lang="postcss">
@tailwind base;
@tailwind components;
@tailwind utilities;
</style>