mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
141 lines
3.5 KiB
Vue
141 lines
3.5 KiB
Vue
<template>
|
|
<UPopover :ui="{ content: 'w-72 px-6 py-4 flex flex-col gap-4' }">
|
|
<template #default="{ open }">
|
|
<UButton
|
|
icon="i-heroicons-swatch"
|
|
color="neutral"
|
|
:variant="open ? 'soft' : 'ghost'"
|
|
square
|
|
aria-label="Color picker"
|
|
:ui="{ leadingIcon: 'text-[var(--ui-primary)]' }"
|
|
/>
|
|
</template>
|
|
|
|
<template #content>
|
|
<fieldset>
|
|
<legend class="text-[11px] leading-none font-semibold mb-2">
|
|
Primary
|
|
</legend>
|
|
|
|
<div class="grid grid-cols-3 gap-1 -mx-2">
|
|
<ThemePickerButton
|
|
v-for="color in primaryColors"
|
|
:key="color"
|
|
:label="color"
|
|
:chip="color"
|
|
:selected="primary === color"
|
|
@select="primary = color"
|
|
/>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend class="text-[11px] leading-none font-semibold mb-2">
|
|
Neutral
|
|
</legend>
|
|
|
|
<div class="grid grid-cols-3 gap-1 -mx-2">
|
|
<ThemePickerButton
|
|
v-for="color in neutralColors"
|
|
:key="color"
|
|
:label="color"
|
|
:chip="color"
|
|
:selected="neutral === color"
|
|
@select="neutral = color"
|
|
/>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend class="text-[11px] leading-none font-semibold mb-2">
|
|
Radius
|
|
</legend>
|
|
|
|
<div class="grid grid-cols-5 gap-1 -mx-2">
|
|
<ThemePickerButton
|
|
v-for="r in radiuses"
|
|
:key="r"
|
|
:label="String(r)"
|
|
class="justify-center px-0"
|
|
:selected="radius === r"
|
|
@select="radius = r"
|
|
/>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend class="text-[11px] leading-none font-semibold mb-2">
|
|
Theme
|
|
</legend>
|
|
|
|
<div class="flex gap-1 -mx-2">
|
|
<ThemePickerButton
|
|
v-for="m in modes"
|
|
:key="m.label"
|
|
v-bind="m"
|
|
:selected="mode === m.label"
|
|
@select="mode = m.label"
|
|
/>
|
|
</div>
|
|
</fieldset>
|
|
</template>
|
|
</UPopover>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import colors from 'tailwindcss/colors'
|
|
import { omit } from '#ui/utils'
|
|
|
|
const appConfig = useAppConfig()
|
|
const colorMode = useColorMode()
|
|
|
|
// Computed
|
|
|
|
const neutralColors = ['slate', 'gray', 'zinc', 'neutral', 'stone']
|
|
const neutral = computed({
|
|
get() {
|
|
return appConfig.ui.colors.neutral
|
|
},
|
|
set(option) {
|
|
appConfig.ui.colors.neutral = option
|
|
window.localStorage.setItem('nuxt-ui-neutral', appConfig.ui.colors.neutral)
|
|
}
|
|
})
|
|
|
|
const colorsToOmit = ['inherit', 'current', 'transparent', 'black', 'white', ...neutralColors]
|
|
const primaryColors = Object.keys(omit(colors, colorsToOmit as any))
|
|
const primary = computed({
|
|
get() {
|
|
return appConfig.ui.colors.primary
|
|
},
|
|
set(option) {
|
|
appConfig.ui.colors.primary = option
|
|
window.localStorage.setItem('nuxt-ui-primary', appConfig.ui.colors.primary)
|
|
}
|
|
})
|
|
|
|
const radiuses = [0, 0.125, 0.25, 0.375, 0.5]
|
|
const radius = computed({
|
|
get() {
|
|
return appConfig.theme.radius
|
|
},
|
|
set(option) {
|
|
appConfig.theme.radius = option
|
|
window.localStorage.setItem('nuxt-ui-radius', String(appConfig.theme.radius))
|
|
}
|
|
})
|
|
|
|
const modes = [
|
|
{ label: 'light', icon: appConfig.ui.icons.light },
|
|
{ label: 'dark', icon: appConfig.ui.icons.dark }
|
|
]
|
|
const mode = computed({
|
|
get() {
|
|
return colorMode.value
|
|
},
|
|
set(option) {
|
|
colorMode.preference = option
|
|
}
|
|
})
|
|
</script>
|