forked from mirrors/homebox
2e82398e5c
* 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
68 lines
1.4 KiB
Vue
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>
|