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

93 lines
2.8 KiB
Vue

<script setup lang="ts">
import { ArrowPathIcon, ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
import { storeToRefs } from 'pinia';
import type { ComposerTranslation } from 'vue-i18n';
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: ComposerTranslation;
}
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 feature updates released after {0}', [formattedRegExp.value])
: props.t('Eligible for free feature updates until {0}', [formattedRegExp.value]),
title: regUpdatesExpired.value
? props.t('Ineligible as of {0}', [readableDiffRegExp.value])
: props.t('Eligible for free feature 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>