Files
api/web/components/ThemeSwitcher.ce.vue
Eli Bosley 2c62e0ad09 feat: tailwind v4 (#1522)
<!-- 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 -->
2025-07-21 09:58:02 -04:00

100 lines
2.9 KiB
Vue

<script lang="ts" setup>
/**
* Add to webgui via DefaultPageLayout.php
* Find the footer and the PHP that builds it. Search for `annotate('Footer');` for the start of the footer.
*
* At the of the footer end replace this PHP
* ```
* echo "</span></div>";
* ```
* with the following PHP
* ```
* echo "</span>"; //
* echo "<unraid-theme-switcher current='$theme' themes='".htmlspecialchars(json_encode(['azure', 'gray', 'black', 'white']), ENT_QUOTES, 'UTF-8')."'></unraid-theme-switcher>";
* echo "</div>";
* ```
*
* @todo unraid-theme-switcher usage should pull theme files to determine what themes are available instead of being hardcoded.
*/
import { ref, computed } from 'vue';
import { storeToRefs } from 'pinia';
import { WebguiUpdate } from '~/composables/services/webgui';
import { useServerStore } from '~/store/server';
const props = defineProps<{
current: string;
themes?: string | string[]; // when string it'll be JSON encoded array that's been run thru htmlspecialchars in PHP
}>();
const computedThemes = computed(() => {
if (props.themes) {
return typeof props.themes === 'string' ? JSON.parse(props.themes) : props.themes;
}
return ['azure', 'black', 'gray', 'white'];
});
const { csrf } = storeToRefs(useServerStore());
const storageKey = 'enableThemeSwitcher';
const enableThemeSwitcher = sessionStorage.getItem(storageKey) === 'true' || localStorage.getItem(storageKey) === 'true';
const submitting = ref<boolean>(false);
const handleThemeChange = (event: Event) => {
const newTheme = (event.target as HTMLSelectElement).value;
if (newTheme === props.current) {
console.debug('[ThemeSwitcher.setTheme] Theme is already set');
return;
}
console.debug('[ThemeSwitcher.setTheme] Submitting form');
submitting.value = true;
try {
WebguiUpdate
.formUrl({
csrf_token: csrf.value,
'#file': 'dynamix/dynamix.cfg',
'#section': 'display',
theme: newTheme,
})
.post()
.res(() => {
console.log('[ThemeSwitcher.setTheme] Theme updated, reloading…');
// without this timeout, the page refresh happens before emhttp has a chance to update the theme
setTimeout(() => {
window.location.reload();
}, 1000);
});
} catch (error) {
console.error('[ThemeSwitcher.setTheme] Failed to update theme', error);
throw new Error('[ThemeSwitcher.setTheme] Failed to update theme');
}
};
</script>
<template>
<div>
<select
v-if="enableThemeSwitcher"
:disabled="submitting"
:value="props.current"
class="text-xs relative float-left mr-2 text-white bg-black"
@change="handleThemeChange"
>
<option
v-for="theme in computedThemes"
:key="theme"
:value="theme"
>
{{ theme }}
</option>
</select>
</div>
</template>
<style >
/* Import unraid-ui globals first */
@import '@unraid/ui/styles';
@import '~/assets/main.css';
</style>