mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
4c9ddac395
* use vue component for date picker * zero out database fields even when set to 0001-xx-xx * fix wrong datetime display + improved datepicker * fix ts error * zero out times * add date-fns to dependencies
64 lines
1.2 KiB
TypeScript
64 lines
1.2 KiB
TypeScript
import { ComputedRef } from "vue";
|
|
import { DaisyTheme } from "~~/lib/data/themes";
|
|
|
|
export interface UseTheme {
|
|
theme: ComputedRef<DaisyTheme>;
|
|
setTheme: (theme: DaisyTheme) => void;
|
|
}
|
|
|
|
const themeRef = ref<DaisyTheme>("garden");
|
|
|
|
export function useTheme(): UseTheme {
|
|
const preferences = useViewPreferences();
|
|
themeRef.value = preferences.value.theme;
|
|
|
|
const setTheme = (newTheme: DaisyTheme) => {
|
|
preferences.value.theme = newTheme;
|
|
|
|
if (htmlEl) {
|
|
htmlEl.value?.setAttribute("data-theme", newTheme);
|
|
}
|
|
|
|
themeRef.value = newTheme;
|
|
};
|
|
|
|
const htmlEl = ref<HTMLElement | null>();
|
|
|
|
onMounted(() => {
|
|
if (htmlEl.value) {
|
|
return;
|
|
}
|
|
|
|
htmlEl.value = document.querySelector("html");
|
|
});
|
|
|
|
const theme = computed(() => {
|
|
return themeRef.value;
|
|
});
|
|
|
|
return { theme, setTheme };
|
|
}
|
|
|
|
export function useIsDark() {
|
|
const theme = useTheme();
|
|
|
|
const darkthemes = [
|
|
"synthwave",
|
|
"retro",
|
|
"cyberpunk",
|
|
"valentine",
|
|
"halloween",
|
|
"forest",
|
|
"aqua",
|
|
"black",
|
|
"luxury",
|
|
"dracula",
|
|
"business",
|
|
"night",
|
|
"coffee",
|
|
];
|
|
|
|
return computed(() => {
|
|
return darkthemes.includes(theme.theme.value);
|
|
});
|
|
}
|