mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 12:14:33 +01:00
90 lines
2.5 KiB
Vue
90 lines
2.5 KiB
Vue
<script setup lang="ts">
|
|
import type { FormSubmitEvent } from '#ui/types'
|
|
import type { COLORS, TabType, UpdateTabSchemaType } from '~~/types/types'
|
|
import { UpdateTabSchema } from '~~/types/types'
|
|
|
|
const props = defineProps<{
|
|
tab: TabType | null
|
|
}>()
|
|
|
|
const emit = defineEmits(['closeModal'])
|
|
const { categories } = await useCategories()
|
|
const { updateTab } = await useTabs()
|
|
|
|
const state = reactive({
|
|
name: props.tab?.name,
|
|
icon: props.tab?.icon,
|
|
color: props.tab?.color,
|
|
primary: props.tab?.primary,
|
|
categoryId: props.tab?.categoryId,
|
|
})
|
|
|
|
watchEffect(() => {
|
|
state.name = props.tab?.name
|
|
state.icon = props.tab?.icon
|
|
state.color = props.tab?.color
|
|
state.primary = props.tab?.primary
|
|
state.categoryId = props.tab?.categoryId
|
|
})
|
|
|
|
async function handleUpdate(event: FormSubmitEvent<UpdateTabSchemaType>) {
|
|
await updateTab({
|
|
id: props.tab!.id,
|
|
...event.data,
|
|
categoryId: Number(event.data.categoryId),
|
|
})
|
|
emit('closeModal')
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<UModal :ui="{ width: 'w-full sm:max-w-md' }">
|
|
<UCard>
|
|
<template #header>
|
|
<div class="flex items-center justify-between">
|
|
<h3 class="text-base font-semibold leading-6 text-gray-900 dark:text-white">
|
|
Update category '{{ tab.name }}'
|
|
</h3>
|
|
<UButton
|
|
color="gray"
|
|
variant="soft"
|
|
icon="i-heroicons-x-mark-20-solid"
|
|
class="p-1"
|
|
@click="$emit('closeModal')"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<template #default>
|
|
<UForm :schema="UpdateTabSchema" :state="state" class="space-y-4" @submit="handleUpdate">
|
|
<UFormGroup label="Name" name="name">
|
|
<UInput v-model="state.name" type="text" />
|
|
</UFormGroup>
|
|
|
|
<UFormGroup label="Color " name="color">
|
|
<USelect v-model="state.color" :options="COLORS" />
|
|
</UFormGroup>
|
|
|
|
<UFormGroup label="Icon " name="icon">
|
|
<UInput v-model="state.icon" type="text" />
|
|
</UFormGroup>
|
|
|
|
<UFormGroup label="Category " name="category">
|
|
<USelect v-model="state.categoryId" :options="categories" option-attribute="name" value-attribute="id" />
|
|
</UFormGroup>
|
|
|
|
<UFormGroup>
|
|
<UCheckbox v-model="state.primary" :color="state.color" label="Is the category primary?" />
|
|
</UFormGroup>
|
|
|
|
<UButton
|
|
type="submit"
|
|
:color="state.color"
|
|
block
|
|
label="Update tab"
|
|
/>
|
|
</UForm>
|
|
</template>
|
|
</UCard>
|
|
</UModal>
|
|
</template>
|