Files
api/web/components/Activation/WelcomeModal.ce.vue
Michael Datelle a5f48da322 test: create tests for components batch 3 (#1374)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **New Features**
- Added comprehensive unit tests for components including SsoButton,
ThemeSwitcher, UpdateOs, UserProfile, WanIpCheck, WelcomeModal,
ActivationModal, ActivationPartnerLogo, ActivationPartnerLogoImg, and
ActivationSteps.
- **Tests**
- Enhanced existing test suites for ColorSwitcher, DummyServerSwitcher,
and I18nHost to improve test isolation, DOM management, and reliability.
- **Style**
- Made minor typographic correction in ActivationModal description text.
- **Refactor**
- Reorganized import statements in several components for improved code
clarity.
- **Chores**
- Added necessary imports in multiple components to support Vue
Composition API features.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: mdatelle <mike@datelle.net>
2025-05-07 16:21:45 -04:00

155 lines
3.9 KiB
Vue

<script setup lang="ts">
import { computed, ref, watchEffect } from 'vue';
import { useI18n } from 'vue-i18n';
import { storeToRefs } from 'pinia';
import { BrandButton } from '@unraid/ui';
import ActivationPartnerLogo from '~/components/Activation/ActivationPartnerLogo.vue';
import ActivationSteps from '~/components/Activation/ActivationSteps.vue';
import { useActivationCodeDataStore } from '~/components/Activation/store/activationCodeData';
import Modal from '~/components/Modal.vue';
import { useThemeStore } from '~/store/theme';
const { t } = useI18n();
const { partnerInfo, loading } = storeToRefs(useActivationCodeDataStore());
const { setTheme } = useThemeStore();
(async () => {
try {
await setTheme();
} catch (error) {
console.error('Error setting theme:', error);
}
})();
const title = computed<string>(() =>
partnerInfo.value?.partnerName
? t(`Welcome to your new {0} system, powered by Unraid!`, [partnerInfo.value?.partnerName])
: t('Welcome to Unraid!')
);
const description = computed<string>(() =>
t(
`First, you'll create your device's login credentials, then you'll activate your Unraid license—your device's operating system (OS).`
)
);
const showModal = ref<boolean>(true);
const dropdownHide = () => {
showModal.value = false;
};
watchEffect(() => {
/**
* A necessary workaround for how the webgui handles font-size.
* There's not a shared CSS file between /login and any of the authenticated webgui pages.
* Which has lead to font-size differences.
* The authed webgui pages have CSS of `html { font-size: 62.5%; }` which makes REMs act as if the base font-size is 10px.
* The /login page doesn't do this.
* So we'll target the HTML element and toggle the font-size to be 62.5% when the modal is open and 100% when it's closed.
* */
const confirmPasswordField = window.document.querySelector('#confirmPassword');
if (confirmPasswordField) {
if (showModal.value) {
window.document.documentElement.style.setProperty('font-size', '62.5%');
} else {
window.document.documentElement.style.setProperty('font-size', '100%');
}
}
});
</script>
<template>
<div id="modals" ref="modals" class="relative z-[99999]">
<Modal
v-if="showModal"
:t="t"
:open="showModal"
:show-close-x="false"
:title="title"
:title-in-main="partnerInfo?.hasPartnerLogo"
:description="description"
overlay-color="bg-background"
overlay-opacity="bg-opacity-100"
max-width="max-w-800px"
:disable-shadow="true"
:modal-vertical-center="false"
:disable-overlay-close="true"
class="bg-background"
@close="dropdownHide"
>
<template v-if="partnerInfo?.hasPartnerLogo" #header>
<ActivationPartnerLogo />
</template>
<template #footer>
<div class="w-full flex gap-8px justify-center mx-auto">
<BrandButton :text="t('Create a password')" :disabled="loading" @click="dropdownHide" />
</div>
</template>
<template #subFooter>
<ActivationSteps :active-step="1" class="mt-6" />
</template>
</Modal>
</div>
</template>
<style lang="postcss">
/* Import unraid-ui globals first */
@import '@unraid/ui/styles';
@import '~/assets/main.css';
.unraid_mark_2,
.unraid_mark_4 {
animation: mark_2 1.5s ease infinite;
}
.unraid_mark_3 {
animation: mark_3 1.5s ease infinite;
}
.unraid_mark_6,
.unraid_mark_8 {
animation: mark_6 1.5s ease infinite;
}
.unraid_mark_7 {
animation: mark_7 1.5s ease infinite;
}
@keyframes mark_2 {
50% {
transform: translateY(-40px);
}
100% {
transform: translateY(0);
}
}
@keyframes mark_3 {
50% {
transform: translateY(-62px);
}
100% {
transform: translateY(0);
}
}
@keyframes mark_6 {
50% {
transform: translateY(40px);
}
100% {
transform: translateY(0);
}
}
@keyframes mark_7 {
50% {
transform: translateY(62px);
}
100% {
transform: translateY(0);
}
}
</style>