mirror of
https://github.com/unraid/api.git
synced 2026-01-04 07:29:48 -06:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Streamlined the activation steps display with improved conditional rendering and enhanced interactive button styling. - **New Features** - Introduced a new welcome page featuring a dummy server switcher and refreshed welcome modal. - Expanded the activation interface with a new activation code section for clearer navigation. - **Chores** - Removed the welcome modal from the home page to simplify the layout. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Zack Spear <hi@zackspear.com>
130 lines
3.4 KiB
Vue
130 lines
3.4 KiB
Vue
<script lang="ts" setup>
|
||
import { storeToRefs } from 'pinia';
|
||
|
||
import { ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
|
||
import { BrandButton } from '@unraid/ui';
|
||
|
||
import type { BrandButtonProps } from '@unraid/ui';
|
||
import type { ComposerTranslation } from 'vue-i18n';
|
||
|
||
import ActivationPartnerLogo from '~/components/Activation/PartnerLogo.vue';
|
||
import { useActivationCodeStore } from '~/store/activationCode';
|
||
import { usePurchaseStore } from '~/store/purchase';
|
||
|
||
export interface Props {
|
||
t: ComposerTranslation;
|
||
}
|
||
|
||
const props = defineProps<Props>();
|
||
|
||
const activationCodeStore = useActivationCodeStore();
|
||
const { partnerLogo, showActivationModal } = storeToRefs(activationCodeStore);
|
||
const purchaseStore = usePurchaseStore();
|
||
|
||
const title = computed<string>(() => props.t("Let's activate your Unraid OS License"));
|
||
const description = computed<string>(() =>
|
||
props.t(
|
||
`On the following screen, your license will be activated. You’ll then create an Unraid.net Account to manage your license going forward.`
|
||
)
|
||
);
|
||
const docsButtons = computed<BrandButtonProps[]>(() => {
|
||
return [
|
||
{
|
||
variant: 'underline',
|
||
external: true,
|
||
href: 'https://docs.unraid.net/unraid-os/faq/licensing-faq/',
|
||
iconRight: ArrowTopRightOnSquareIcon,
|
||
size: '14px',
|
||
text: props.t('More about Licensing'),
|
||
},
|
||
{
|
||
variant: 'underline',
|
||
external: true,
|
||
href: 'https://docs.unraid.net/account/',
|
||
iconRight: ArrowTopRightOnSquareIcon,
|
||
size: '14px',
|
||
text: props.t('More about Unraid.net Accounts'),
|
||
},
|
||
];
|
||
});
|
||
|
||
/**
|
||
* Listen for konami code sequence to close the modal
|
||
*/
|
||
const keySequence = [
|
||
'ArrowUp',
|
||
'ArrowUp',
|
||
'ArrowDown',
|
||
'ArrowDown',
|
||
'ArrowLeft',
|
||
'ArrowRight',
|
||
'ArrowLeft',
|
||
'ArrowRight',
|
||
'b',
|
||
'a',
|
||
];
|
||
let sequenceIndex = 0;
|
||
|
||
const handleKeydown = (event: KeyboardEvent) => {
|
||
if (event.key === keySequence[sequenceIndex]) {
|
||
sequenceIndex++;
|
||
} else {
|
||
sequenceIndex = 0;
|
||
}
|
||
|
||
if (sequenceIndex === keySequence.length) {
|
||
activationCodeStore.setActivationModalHidden(true);
|
||
window.location.href = '/Tools/Registration';
|
||
}
|
||
};
|
||
|
||
onMounted(() => {
|
||
window?.addEventListener('keydown', handleKeydown);
|
||
});
|
||
|
||
onUnmounted(() => {
|
||
window?.removeEventListener('keydown', handleKeydown);
|
||
});
|
||
</script>
|
||
|
||
<template>
|
||
<Modal
|
||
v-if="showActivationModal"
|
||
:t="t"
|
||
:open="showActivationModal"
|
||
:show-close-x="false"
|
||
:title="title"
|
||
:title-in-main="!!partnerLogo"
|
||
:description="description"
|
||
overlay-color="bg-background"
|
||
overlay-opacity="bg-opacity-100"
|
||
max-width="max-w-800px"
|
||
:modal-vertical-center="false"
|
||
:disable-shadow="true"
|
||
>
|
||
<template v-if="partnerLogo" #header>
|
||
<ActivationPartnerLogo />
|
||
</template>
|
||
|
||
<template #footer>
|
||
<div class="w-full flex gap-8px justify-center mx-auto">
|
||
<BrandButton
|
||
:text="t('Activate Now')"
|
||
:icon-right="ArrowTopRightOnSquareIcon"
|
||
@click="purchaseStore.activate"
|
||
/>
|
||
</div>
|
||
</template>
|
||
|
||
<template #subFooter>
|
||
<div class="flex flex-col gap-6">
|
||
<ActivationSteps :active-step="2" class="hidden sm:flex mt-6" />
|
||
|
||
<div class="flex flex-col sm:flex-row justify-center gap-4 mx-auto w-full">
|
||
<BrandButton v-for="button in docsButtons" :key="button.text" v-bind="button" />
|
||
</div>
|
||
</div>
|
||
</template>
|
||
</Modal>
|
||
</template>
|