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 * **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 -->
85 lines
2.6 KiB
Vue
85 lines
2.6 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
|
|
import {
|
|
Bars3Icon,
|
|
BellAlertIcon,
|
|
ExclamationTriangleIcon,
|
|
InformationCircleIcon,
|
|
ShieldExclamationIcon,
|
|
} from '@heroicons/vue/24/solid';
|
|
|
|
import type { ComposerTranslation } from 'vue-i18n';
|
|
|
|
import BrandAvatar from '~/components/Brand/Avatar.vue';
|
|
import { useErrorsStore } from '~/store/errors';
|
|
import { useServerStore } from '~/store/server';
|
|
import { useUpdateOsStore } from '~/store/updateOs';
|
|
|
|
const props = defineProps<{ t: ComposerTranslation }>();
|
|
|
|
const { errors } = storeToRefs(useErrorsStore());
|
|
const { connectPluginInstalled, rebootType, state, stateData } = storeToRefs(useServerStore());
|
|
const { available: osUpdateAvailable } = storeToRefs(useUpdateOsStore());
|
|
|
|
const showErrorIcon = computed(() => errors.value.length || stateData.value.error);
|
|
|
|
const text = computed((): string => {
|
|
if (stateData.value.error && state.value !== 'EEXPIRED') {
|
|
return props.t('Fix Error');
|
|
}
|
|
return '';
|
|
});
|
|
|
|
const title = computed((): string => {
|
|
if (state.value === 'ENOKEYFILE') {
|
|
return props.t('Get Started');
|
|
}
|
|
if (state.value === 'EEXPIRED') {
|
|
return props.t('Trial Expired, see options below');
|
|
}
|
|
if (showErrorIcon.value) {
|
|
return props.t('Learn more about the error');
|
|
}
|
|
return props.t('Open Dropdown');
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<button
|
|
class="group text-lg border-0 relative flex flex-row justify-end items-center h-full gap-x-2 opacity-100 hover:opacity-75 transition-opacity text-header-text-primary"
|
|
:title="title"
|
|
>
|
|
<template v-if="errors.length && errors[0].level">
|
|
<InformationCircleIcon
|
|
v-if="errors[0].level === 'info'"
|
|
class="text-unraid-red fill-current relative w-6 h-6"
|
|
/>
|
|
<ExclamationTriangleIcon
|
|
v-if="errors[0].level === 'warning'"
|
|
class="text-unraid-red fill-current relative w-6 h-6"
|
|
/>
|
|
<ShieldExclamationIcon
|
|
v-if="errors[0].level === 'error'"
|
|
class="text-unraid-red fill-current relative w-6 h-6"
|
|
/>
|
|
</template>
|
|
<span v-if="text" class="relative leading-none">
|
|
<span>{{ text }}</span>
|
|
<span
|
|
class="absolute bottom-[-3px] inset-x-0 h-0.5 w-full bg-linear-to-r from-unraid-red to-orange rounded opacity-0 group-hover:opacity-100 group-focus:opacity-100 transition-opacity"
|
|
/>
|
|
</span>
|
|
|
|
<BellAlertIcon
|
|
v-if="osUpdateAvailable && !rebootType"
|
|
class="hover:animate-pulse fill-current relative w-4 h-4"
|
|
/>
|
|
|
|
<Bars3Icon class="w-5" />
|
|
|
|
<BrandAvatar v-if="connectPluginInstalled" />
|
|
</button>
|
|
</template>
|