homebox/frontend/components/Label/CreateModal.vue

92 lines
2.2 KiB
Vue
Raw Normal View History

2022-09-02 01:52:40 +00:00
<template>
<BaseModal v-model="modal">
<template #title> Create Label </template>
<form @submit.prevent="create()">
2022-09-02 01:52:40 +00:00
<FormTextField
ref="locationNameRef"
v-model="form.name"
:trigger-focus="focused"
2022-09-02 01:52:40 +00:00
:autofocus="true"
label="Label Name"
/>
<FormTextArea v-model="form.description" label="Label Description" />
2022-09-02 01:52:40 +00:00
<div class="modal-action">
<div class="flex justify-center">
<BaseButton class="rounded-r-none" :loading="loading" type="submit"> Create </BaseButton>
<div class="dropdown dropdown-top">
<label tabindex="0" class="btn rounded-l-none rounded-r-xl">
<Icon class="h-5 w-5" name="mdi-chevron-down" />
</label>
<ul tabindex="0" class="dropdown-content menu p-2 shadow bg-base-100 rounded-box w-64">
<li>
<button type="button" @click="create(false)">Create and Add Another</button>
</li>
</ul>
</div>
</div>
2022-09-02 01:52:40 +00:00
</div>
</form>
<p class="text-sm text-center mt-4">
use <kbd class="kbd kbd-xs">Shift</kbd> + <kbd class="kbd kbd-xs"> Enter </kbd> to create and add another
</p>
2022-09-02 01:52:40 +00:00
</BaseModal>
</template>
<script setup lang="ts">
const props = defineProps({
modelValue: {
type: Boolean,
required: true,
},
});
const modal = useVModel(props, "modelValue");
2022-09-02 01:52:40 +00:00
const loading = ref(false);
const focused = ref(false);
const form = reactive({
name: "",
description: "",
color: "", // Future!
2022-09-02 01:52:40 +00:00
});
function reset() {
form.name = "";
form.description = "";
form.color = "";
2022-09-02 01:52:40 +00:00
focused.value = false;
loading.value = false;
}
whenever(
() => modal.value,
() => {
focused.value = true;
}
);
const api = useUserApi();
const toast = useNotifier();
const { shift } = useMagicKeys();
async function create(close = true) {
if (shift.value) {
close = false;
}
const { error, data } = await api.labels.create(form);
2022-09-02 01:52:40 +00:00
if (error) {
toast.error("Couldn't create label");
return;
}
toast.success("Label created");
2022-09-02 01:52:40 +00:00
reset();
if (close) {
modal.value = false;
navigateTo(`/label/${data.id}`);
}
}
2022-09-02 01:52:40 +00:00
</script>