Files
InvoiceShelf/resources/scripts/components/base/BaseSwitchSection.vue
Darko Gjorgjijoski 88adfe0e50 Add dark mode with CSS custom property theme system
Define 13 semantic color tokens (surface, text, border, hover) with
light/dark values in themes.css. Register with Tailwind via @theme inline.
Migrate all 335 Vue files from hardcoded gray/white classes to semantic
tokens. Add theme toggle (sun/moon/system) in user avatar dropdown.
Replace @tailwindcss/forms with custom form reset using theme vars.
Add status badge and alert tokens for dark mode. Theme-aware chart
grid/labels, skeleton placeholders, and editor. Inline script in
<head> prevents flash of wrong theme on load.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 02:05:00 +02:00

70 lines
1.6 KiB
Vue

<template>
<SwitchGroup as="li" class="py-4 flex items-center justify-between">
<div class="flex flex-col">
<SwitchLabel
as="p"
class="p-0 mb-1 text-sm leading-snug text-heading font-medium"
passive
>
{{ title }}
</SwitchLabel>
<SwitchDescription class="text-sm text-muted">
{{ description }}
</SwitchDescription>
</div>
<Switch
:disabled="disabled"
:model-value="modelValue"
:class="[
modelValue ? 'bg-primary-500' : 'bg-surface-muted',
'ml-4 relative inline-flex shrink-0 h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-hidden focus:ring-2 focus:ring-offset-2 focus:ring-primary-500',
]"
@update:modelValue="onUpdate"
>
<span
aria-hidden="true"
:class="[
modelValue ? 'translate-x-5' : 'translate-x-0',
'inline-block h-5 w-5 rounded-full bg-white shadow ring-0 transition ease-in-out duration-200',
]"
/>
</Switch>
</SwitchGroup>
</template>
<script setup>
import {
Switch,
SwitchDescription,
SwitchGroup,
SwitchLabel,
} from '@headlessui/vue'
defineProps({
title: {
type: String,
required: true,
},
description: {
type: String,
default: '',
},
modelValue: {
type: Boolean,
default: false,
},
disabled: {
type: Boolean,
default: false,
},
})
const emit = defineEmits(['update:modelValue'])
function onUpdate(value) {
emit('update:modelValue', value)
}
</script>