mirror of
https://github.com/unraid/api.git
synced 2026-01-07 00:59: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 -->
78 lines
2.3 KiB
Vue
78 lines
2.3 KiB
Vue
<script setup lang="ts">
|
|
import { computed, h } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
|
|
import { CheckCircleIcon, ExclamationTriangleIcon, UserCircleIcon } from '@heroicons/vue/24/solid';
|
|
import { BrandLoading } from '@unraid/ui';
|
|
|
|
import type { ComposerTranslation } from 'vue-i18n';
|
|
|
|
import { useServerStore } from '~/store/server';
|
|
import { useUnraidApiStore } from '~/store/unraidApi';
|
|
import UpcDropdownItem from './DropdownItem.vue';
|
|
|
|
const props = defineProps<{ t: ComposerTranslation }>();
|
|
|
|
const { username } = storeToRefs(useServerStore());
|
|
|
|
const unraidApiStore = useUnraidApiStore();
|
|
const { unraidApiStatus, unraidApiRestartAction } = storeToRefs(unraidApiStore);
|
|
const brandLoading = () => h(BrandLoading, { size: 'custom' });
|
|
|
|
interface StatusOutput {
|
|
icon: typeof BrandLoading | typeof ExclamationTriangleIcon | typeof CheckCircleIcon;
|
|
iconClasses?: string;
|
|
text: string;
|
|
textClasses?: string;
|
|
}
|
|
const status = computed((): StatusOutput | undefined => {
|
|
if (unraidApiStatus.value === 'connecting') {
|
|
return {
|
|
icon: brandLoading,
|
|
iconClasses: 'w-4',
|
|
text: props.t('Loading…'),
|
|
textClasses: 'italic',
|
|
};
|
|
}
|
|
if (unraidApiStatus.value === 'restarting') {
|
|
return {
|
|
icon: brandLoading,
|
|
iconClasses: 'w-4',
|
|
text: props.t('Restarting unraid-api…'),
|
|
textClasses: 'italic',
|
|
};
|
|
}
|
|
if (unraidApiStatus.value === 'offline') {
|
|
return {
|
|
icon: ExclamationTriangleIcon,
|
|
iconClasses: 'text-red-500 w-4 h-4',
|
|
text: props.t('unraid-api is offline'),
|
|
};
|
|
}
|
|
if (unraidApiStatus.value === 'online') {
|
|
return {
|
|
icon: CheckCircleIcon,
|
|
iconClasses: 'text-green-600 w-4 h-4',
|
|
text: props.t('Connected'),
|
|
};
|
|
}
|
|
return undefined;
|
|
});
|
|
|
|
const statusItemClasses = "text-sm flex flex-row justify-start items-center gap-2 mt-2 px-2";
|
|
</script>
|
|
|
|
<template>
|
|
<li v-if="username" :class="statusItemClasses">
|
|
<UserCircleIcon class="w-4 h-4" aria-hidden="true" />
|
|
{{ username }}
|
|
</li>
|
|
<li v-if="status" :class="statusItemClasses">
|
|
<component :is="status.icon" :class="status.iconClasses" aria-hidden="true" />
|
|
{{ status.text }}
|
|
</li>
|
|
<li v-if="unraidApiRestartAction" class="w-full">
|
|
<UpcDropdownItem :item="unraidApiRestartAction" :t="t" />
|
|
</li>
|
|
</template>
|