mirror of
https://github.com/unraid/api.git
synced 2026-05-03 13:40:36 -05:00
2c62e0ad09
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Streamlined Tailwind CSS integration using Vite plugin, eliminating the need for separate Tailwind config files. * Updated theme and color variables for improved consistency and maintainability. * **Style** * Standardized spacing, sizing, and font classes across all components using Tailwind’s default scale. * Reduced excessive gaps, padding, and font sizes for a more compact and cohesive UI. * Updated gradient, border, and shadow classes to match Tailwind v4 conventions. * Replaced custom pixel-based classes with Tailwind’s bracketed arbitrary value syntax where needed. * Replaced focus outline styles from `outline-none` to `outline-hidden` for consistent focus handling. * Updated flex shrink/grow utility classes to use newer shorthand forms. * Converted several component templates to use self-closing tags for cleaner markup. * Adjusted icon sizes and spacing for improved visual balance. * **Chores** * Removed legacy Tailwind/PostCSS configuration files and related scripts. * Updated and cleaned up package dependencies for Tailwind v4 and related plugins. * Removed unused or redundant build scripts and configuration exports. * Updated documentation to reflect new Tailwind v4 usage. * Removed Prettier Tailwind plugin from formatting configurations. * Removed Nuxt Tailwind module in favor of direct Vite plugin integration. * Cleaned up ESLint config by removing Prettier integration. * **Bug Fixes** * Corrected invalid or outdated Tailwind class names and syntax. * Fixed issues with max-width and other utility classes for improved layout consistency. * **Tests** * Updated test assertions to match new class names and styling conventions. * **Documentation** * Revised README and internal notes to clarify Tailwind v4 adoption and configuration changes. * Added new development notes emphasizing Tailwind v4 usage and documentation references. * **UI Components** * Enhanced BrandButton stories with detailed variant, size, and padding showcases for better visual testing. * Improved theme store to apply dark mode class on both `<html>` and `<body>` elements for compatibility. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
95 lines
3.0 KiB
Vue
95 lines
3.0 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
|
|
import { ArrowPathIcon, ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
|
|
import { BrandButton } from '@unraid/ui';
|
|
import { DOCS_REGISTRATION_LICENSING } from '~/helpers/urls';
|
|
|
|
import type { ComposerTranslation } from 'vue-i18n';
|
|
|
|
import useDateTimeHelper from '~/composables/dateTime';
|
|
import { useReplaceRenewStore } from '~/store/replaceRenew';
|
|
import { useServerStore } from '~/store/server';
|
|
import RegistrationUpdateExpiration from './UpdateExpiration.vue';
|
|
|
|
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('Eligible for updates released on or before {0}.', [formattedRegExp.value])} ${props.t('Extend your license to access the latest updates.')}`
|
|
: 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-2">
|
|
<RegistrationUpdateExpiration :t="t" />
|
|
|
|
<p class="text-sm 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-2">
|
|
<BrandButton
|
|
v-if="renewStatus === 'installed'"
|
|
:icon="ArrowPathIcon"
|
|
:text="t('Reload Page')"
|
|
class="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="grow"
|
|
@click="renewAction.click?.()"
|
|
/>
|
|
|
|
<BrandButton
|
|
variant="underline"
|
|
:external="true"
|
|
:href="DOCS_REGISTRATION_LICENSING.toString()"
|
|
:icon-right="ArrowTopRightOnSquareIcon"
|
|
:text="t('Learn More')"
|
|
class="text-sm"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|