1
0
Fork 0
mirror of https://github.com/archtechx/airwire-demo.git synced 2025-12-12 16:44:03 +00:00
airwire-demo/resources/js/components/CreateReport.vue
2021-05-21 18:38:26 +02:00

66 lines
2.1 KiB
Vue

<template>
<form class="flex flex-col space-y-6 w-full" @submit.prevent="submit" :class="{
'opacity-60': component.loading,
}">
<h2 class="text-xl font-medium">Create Report</h2>
<form-group label="Assignee" :errors="component.errors.assignee">
<select class="form-input" v-model.lazy="component.assignee">
<option :value="user.id" v-for="user in component.users" :key="user.id">{{ user.name }}</option>
</select>
</form-group>
<form-group label="Name" :errors="component.errors.name">
<input type="text" class="form-input" v-model.lazy="component.name">
</form-group>
<form-group label="Category" :errors="component.errors.category">
<select class="form-input" v-model.lazy="component.category">
<option :value="category" v-for="category in categories" :key="category">{{ category }}</option>
</select>
</form-group>
<button type="submit" class="bg-blue-500 text-blue-50 px-2 py-1.5 shadow rounded">Create Report</button>
</form>
</template>
<script lang="ts">
import { defineComponent, PropType } from 'vue'
import Errors from './Errors.vue'
import FormGroup from './FormGroup.vue'
export default defineComponent({
props: {
categories: {
type: Object as PropType<number[]>,
required: true,
},
},
components: { Errors, FormGroup },
data() {
return {
component: this.$airwire.component('create-report', {
name: 'Report ...',
}),
}
},
mounted() {
this.component.mount().then(data => {
this.component.defer(() => {
this.component.category = this.categories[0];
this.component.assignee = (Object.values(data.users)[0] as any).id as number;
});
})
},
methods: {
submit() {
this.component.create().then(_ => {
window.Airwire.remount(['report-filter']);
});
}
}
})
</script>