homebox/frontend/components/Location/CreateModal.vue
Hayden 2e82398e5c
chore: cleanup (#27)
* implement password score UI and functions

* update strings tests to use `test`instead of `it`

* update typing

* refactor login/register UI+Logic

* fix width on switches to properly display

* fetch and store self in store

* (WIP) unify card styles

* update labels page

* bump nuxt

* use form area

* use text area for description

* unify confirm API

* unify UI around pages

* change header background height
2022-09-25 14:33:13 -08:00

68 lines
1.4 KiB
Vue

<template>
<BaseModal v-model="modal">
<template #title> Create Location </template>
<form @submit.prevent="create">
<FormTextField
ref="locationNameRef"
v-model="form.name"
:trigger-focus="focused"
:autofocus="true"
label="Location Name"
/>
<FormTextArea v-model="form.description" label="Location Description" />
<div class="modal-action">
<BaseButton type="submit" :loading="loading"> Create </BaseButton>
</div>
</form>
</BaseModal>
</template>
<script setup lang="ts">
const props = defineProps({
modelValue: {
type: Boolean,
required: true,
},
});
const modal = useVModel(props, "modelValue");
const loading = ref(false);
const focused = ref(false);
const form = reactive({
name: "",
description: "",
});
whenever(
() => modal.value,
() => {
focused.value = true;
}
);
function reset() {
form.name = "";
form.description = "";
focused.value = false;
modal.value = false;
loading.value = false;
}
const api = useUserApi();
const toast = useNotifier();
async function create() {
loading.value = true;
const { data, error } = await api.locations.create(form);
if (error) {
toast.error("Couldn't create location");
}
if (data) {
toast.success("Location created");
}
reset();
}
</script>