mirror of
https://github.com/unraid/api.git
synced 2026-01-04 23:50:37 -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 -->
184 lines
5.7 KiB
TypeScript
184 lines
5.7 KiB
TypeScript
import { computed, ref, watch } from 'vue';
|
|
import { defineStore } from 'pinia';
|
|
import { useLazyQuery } from '@vue/apollo-composable';
|
|
|
|
import { defaultColors } from '~/themes/default';
|
|
import hexToRgba from 'hex-to-rgba';
|
|
|
|
import type { Theme, ThemeVariables } from '~/themes/types';
|
|
|
|
import { graphql } from '~/composables/gql/gql';
|
|
|
|
/**
|
|
* Uses the shared global Pinia instance from ~/store/globalPinia.ts
|
|
* @see https://stackoverflow.com/questions/73476371/using-pinia-with-vue-js-web-components
|
|
* @see https://github.com/vuejs/pinia/discussions/1085
|
|
*/
|
|
import '~/store/globalPinia';
|
|
|
|
// used to swap the UPC text color when using the azure or gray theme
|
|
export const DARK_THEMES = ['black', 'gray'] as const;
|
|
|
|
export const GET_THEME_QUERY = graphql(`
|
|
query getTheme {
|
|
publicTheme {
|
|
name
|
|
showBannerImage
|
|
showBannerGradient
|
|
headerBackgroundColor
|
|
showHeaderDescription
|
|
headerPrimaryTextColor
|
|
headerSecondaryTextColor
|
|
}
|
|
}
|
|
`);
|
|
|
|
export const useThemeStore = defineStore('theme', () => {
|
|
// State
|
|
const theme = ref<Theme>({
|
|
name: 'white',
|
|
banner: false,
|
|
bannerGradient: false,
|
|
bgColor: '',
|
|
descriptionShow: false,
|
|
metaColor: '',
|
|
textColor: '',
|
|
});
|
|
|
|
const { load } = useLazyQuery(GET_THEME_QUERY);
|
|
|
|
const activeColorVariables = ref<ThemeVariables>(defaultColors.white);
|
|
|
|
// Getters
|
|
const darkMode = computed<boolean>(
|
|
() => DARK_THEMES.includes(theme.value?.name as (typeof DARK_THEMES)[number]) ?? false
|
|
);
|
|
|
|
const bannerGradient = computed(() => {
|
|
if (!theme.value?.banner || !theme.value?.bannerGradient) {
|
|
return undefined;
|
|
}
|
|
const start = theme.value?.bgColor ? 'var(--header-gradient-start)' : 'rgba(0, 0, 0, 0)';
|
|
const end = theme.value?.bgColor ? 'var(--header-gradient-end)' : 'var(--header-background-color)';
|
|
return `background-image: linear-gradient(90deg, ${start} 0, ${end} 90%);`;
|
|
});
|
|
// Actions
|
|
const setTheme = async (data?: Theme) => {
|
|
if (data) {
|
|
theme.value = data;
|
|
} else {
|
|
try {
|
|
const result = await load();
|
|
if (result && result.publicTheme) {
|
|
theme.value = {
|
|
name: result.publicTheme.name?.toLowerCase() || 'white',
|
|
banner: result.publicTheme.showBannerImage ?? false,
|
|
bannerGradient: result.publicTheme.showBannerGradient ?? false,
|
|
bgColor: result.publicTheme.headerBackgroundColor || '',
|
|
descriptionShow: result.publicTheme.showHeaderDescription ?? false,
|
|
metaColor: result.publicTheme.headerSecondaryTextColor || '',
|
|
textColor: result.publicTheme.headerPrimaryTextColor || '',
|
|
};
|
|
return;
|
|
}
|
|
} catch (error) {
|
|
console.warn('Failed to load theme from server, using default:', error);
|
|
}
|
|
|
|
// Single fallback for both no data and error cases
|
|
theme.value = {
|
|
name: 'white',
|
|
banner: false,
|
|
bannerGradient: false,
|
|
bgColor: '',
|
|
descriptionShow: false,
|
|
metaColor: '',
|
|
textColor: '',
|
|
};
|
|
}
|
|
};
|
|
|
|
const setCssVars = () => {
|
|
const selectedTheme = theme.value.name;
|
|
const customTheme = { ...defaultColors[selectedTheme] };
|
|
// Set banner gradient if enabled
|
|
if (theme.value.banner && theme.value.bannerGradient) {
|
|
const start = theme.value.bgColor
|
|
? hexToRgba(theme.value.bgColor, 0)
|
|
: customTheme['--header-gradient-start'];
|
|
const end = theme.value.bgColor
|
|
? hexToRgba(theme.value.bgColor, 0.7)
|
|
: customTheme['--header-gradient-end'];
|
|
|
|
// set the banner gradient
|
|
customTheme['--banner-gradient'] = `linear-gradient(90deg, ${start} 0, ${end} 90%)`;
|
|
}
|
|
|
|
// overwrite with hex colors set in webGUI @ /Settings/DisplaySettings
|
|
if (theme.value.textColor) {
|
|
customTheme['--header-text-primary'] = theme.value.textColor;
|
|
}
|
|
if (theme.value.metaColor) {
|
|
customTheme['--header-text-secondary'] = theme.value.metaColor;
|
|
}
|
|
|
|
if (theme.value.bgColor) {
|
|
customTheme['--header-background-color'] = theme.value.bgColor;
|
|
customTheme['--header-gradient-start'] = hexToRgba(theme.value.bgColor, 0);
|
|
customTheme['--header-gradient-end'] = hexToRgba(theme.value.bgColor, 0.7);
|
|
}
|
|
|
|
requestAnimationFrame(() => {
|
|
// Apply dark class to both html and body for maximum compatibility
|
|
if (darkMode.value) {
|
|
document.documentElement.classList.add('dark');
|
|
document.body.classList.add('dark');
|
|
} else {
|
|
document.documentElement.classList.remove('dark');
|
|
document.body.classList.remove('dark');
|
|
}
|
|
|
|
document.body.style.cssText = createCssText(customTheme, document.body);
|
|
activeColorVariables.value = customTheme;
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Creates a string of CSS rules preserving existing rules that are not defined in the theme variables
|
|
* @param themeVariables - The theme variables to apply
|
|
* @param body - The body element to apply the CSS to
|
|
* @returns A string of CSS rules
|
|
*/
|
|
const createCssText = (themeVariables: ThemeVariables, body: HTMLElement) => {
|
|
const existingStyles = body.style.cssText
|
|
.split(';')
|
|
.filter((rule) => rule.trim())
|
|
.filter((rule) => {
|
|
// Keep rules that aren't in our theme variables
|
|
return !Object.keys(themeVariables).some((themeVar) => rule.startsWith(themeVar));
|
|
});
|
|
|
|
const themeStyles = Object.entries(themeVariables).reduce((acc, [key, value]) => {
|
|
if (value) acc.push(`${key}: ${value}`);
|
|
return acc;
|
|
}, [] as string[]);
|
|
|
|
return [...existingStyles, ...themeStyles].join(';');
|
|
};
|
|
|
|
watch(theme, () => {
|
|
setCssVars();
|
|
});
|
|
|
|
return {
|
|
// state
|
|
activeColorVariables,
|
|
bannerGradient,
|
|
darkMode,
|
|
theme,
|
|
// actions
|
|
setTheme,
|
|
setCssVars,
|
|
};
|
|
});
|