mirror of
https://github.com/unraid/api.git
synced 2026-01-06 08:39:54 -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 -->
95 lines
2.6 KiB
Vue
95 lines
2.6 KiB
Vue
<script lang="ts" setup>
|
|
import { reactive, watch } from 'vue';
|
|
|
|
import {
|
|
Input,
|
|
Label,
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
Switch,
|
|
} from '@unraid/ui';
|
|
import { defaultColors } from '~/themes/default';
|
|
|
|
import type { Theme } from '~/themes/types';
|
|
|
|
import { useThemeStore } from '~/store/theme';
|
|
|
|
const themeStore = useThemeStore();
|
|
|
|
// Form state
|
|
const form = reactive({
|
|
selectedTheme: 'white',
|
|
gradient: false,
|
|
description: true,
|
|
banner: true,
|
|
textPrimary: '',
|
|
textSecondary: '',
|
|
bgColor: '',
|
|
});
|
|
|
|
// Watch for changes and update theme
|
|
watch([form], () => {
|
|
// Enable gradient if banner is enabled
|
|
if (form.banner && !form.gradient) {
|
|
form.gradient = true;
|
|
}
|
|
|
|
const themeToSet: Theme = {
|
|
banner: form.banner,
|
|
bannerGradient: form.gradient,
|
|
descriptionShow: form.description,
|
|
textColor: form.textPrimary ?? defaultColors[form.selectedTheme]['--header-text-primary']!,
|
|
metaColor: form.textSecondary ?? defaultColors[form.selectedTheme]['--header-text-secondary']!,
|
|
bgColor: form.bgColor ?? defaultColors[form.selectedTheme]['--header-background-color']!,
|
|
name: form.selectedTheme,
|
|
};
|
|
themeStore.setTheme(themeToSet);
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col gap-2 border-solid border-2 p-2 border-r-2">
|
|
<h1 class="text-lg">Color Theme Customization</h1>
|
|
|
|
<Label for="theme-select">Theme</Label>
|
|
<Select v-model="form.selectedTheme">
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select a theme" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="white">Light</SelectItem>
|
|
<SelectItem value="black">Dark</SelectItem>
|
|
<SelectItem value="azure">Azure</SelectItem>
|
|
<SelectItem value="gray">Gray</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
|
|
<Label for="primary-text-color">Header Primary Text Color</Label>
|
|
<Input id="primary-text-color" v-model="form.textPrimary" />
|
|
|
|
<Label for="secondary-text-color">Header Secondary Text Color</Label>
|
|
<Input id="secondary-text-color" v-model="form.textSecondary" />
|
|
|
|
<Label for="background-color">Header Background Color</Label>
|
|
<Input id="background-color" v-model="form.bgColor" />
|
|
|
|
<Label for="gradient">Gradient</Label>
|
|
<Switch id="gradient" v-model:checked="form.gradient" />
|
|
|
|
<Label for="description">Description</Label>
|
|
<Switch id="description" v-model:checked="form.description" />
|
|
|
|
<Label for="banner">Banner</Label>
|
|
<Switch id="banner" v-model:checked="form.banner" />
|
|
</div>
|
|
</template>
|
|
|
|
<style >
|
|
/* Import unraid-ui globals first */
|
|
@import '@unraid/ui/styles';
|
|
@import '~/assets/main.css';
|
|
</style>
|