mirror of
https://github.com/unraid/api.git
synced 2025-12-30 04:59:51 -06:00
Added a Vite plugin to automatically inject the Tailwind CSS import into the `unraid-components.client.js` entry file, enhancing the integration of Tailwind CSS within the application. This change improves the setup for styling components consistently across the project. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added automated validation to ensure Tailwind CSS styles are correctly included in the custom elements build output. * **Chores** * Updated the build process to include a CSS validation step after manifest generation. * Enhanced development build configuration to enable CSS source maps and optimize Tailwind CSS injection into web components. * Extended CSS theme with new responsive breakpoint variables. * Improved CSS class specificity in user profile, server state, and update modal components for consistent styling. * Removed redundant style blocks and global CSS imports from multiple components to streamline styling and reduce duplication. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
94 lines
2.8 KiB
Vue
94 lines
2.8 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>
|