161 lines
5.0 KiB
Vue
161 lines
5.0 KiB
Vue
<script setup>
|
|
import { FwbTable, FwbTableBody, FwbTableHead, FwbTableHeadCell, FwbTableCell, FwbTableRow, FwbDropdown } from 'flowbite-vue';
|
|
import { DottedMenu, EditIcon, TrashBinIcon } from '@/Utilities/Icons';
|
|
import Drawer from '@/Components/Drawer.vue';
|
|
import { onMounted, ref } from 'vue';
|
|
import { useForm } from '@inertiajs/vue3';
|
|
import InputLabel from '@/Components/InputLabel.vue';
|
|
import TextInput from '@/Components/TextInput.vue';
|
|
import Multiselect from 'vue-multiselect';
|
|
import PrimaryButton from '@/Components/PrimaryButton.vue';
|
|
import ActionMessage from '@/Components/ActionMessage.vue';
|
|
|
|
const props = defineProps({
|
|
actions: Array,
|
|
decisions: Array
|
|
});
|
|
|
|
const menuDropdown = ref();
|
|
|
|
const drawerEdit = ref(false);
|
|
|
|
const selectOptions = ref([]);
|
|
|
|
const form = useForm({
|
|
id: 0,
|
|
name: '',
|
|
color_tag: '',
|
|
decisions: []
|
|
});
|
|
|
|
const openEditDrawer = (item) => {
|
|
form.id = item.id;
|
|
form.name = item.name;
|
|
form.color_tag = item.color_tag;
|
|
drawerEdit.value = true;
|
|
|
|
item.decisions.forEach((d) => {
|
|
form.decisions.push({
|
|
name: d.name,
|
|
id: d.id
|
|
});
|
|
})
|
|
}
|
|
|
|
const closeEditDrawer = () => {
|
|
drawerEdit.value = false;
|
|
form.reset();
|
|
}
|
|
|
|
const onColorPickerChange = () => {
|
|
console.log(form.color_tag);
|
|
}
|
|
|
|
onMounted(() => {
|
|
props.decisions.forEach((d) => {
|
|
selectOptions.value.push({
|
|
name: d.name,
|
|
id: d.id
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
const update = () => {
|
|
form.put(route('settings.actions.update', { id: form.id }), {
|
|
onSuccess: () => {
|
|
closeEditDrawer();
|
|
},
|
|
});
|
|
};
|
|
|
|
</script>
|
|
<template>
|
|
<fwb-table>
|
|
<fwb-table-head>
|
|
<fwb-table-head-cell>#</fwb-table-head-cell>
|
|
<fwb-table-head-cell>Name</fwb-table-head-cell>
|
|
<fwb-table-head-cell>Color tag</fwb-table-head-cell>
|
|
<fwb-table-head-cell>Decisions</fwb-table-head-cell>
|
|
<fwb-table-head-cell>
|
|
<span class="sr-only">Edit</span>
|
|
</fwb-table-head-cell>
|
|
</fwb-table-head>
|
|
<fwb-table-body>
|
|
<fwb-table-row v-for="act in actions" :key="act.id">
|
|
<fwb-table-cell>{{ act.id }}</fwb-table-cell>
|
|
<fwb-table-cell>{{ act.name }}</fwb-table-cell>
|
|
<fwb-table-cell>{{ act.color_tag }}</fwb-table-cell>
|
|
<fwb-table-cell>{{ act.decisions.length }}</fwb-table-cell>
|
|
<fwb-table-cell>
|
|
<button class="px-2" @click="openEditDrawer(act)"><EditIcon size="md" css="text-gray-500" /></button>
|
|
</fwb-table-cell>
|
|
</fwb-table-row>
|
|
</fwb-table-body>
|
|
</fwb-table>
|
|
<Drawer
|
|
:show="drawerEdit"
|
|
@close="closeEditDrawer"
|
|
>
|
|
|
|
<template #title>
|
|
<span>Spremeni akcijo</span>
|
|
</template>
|
|
<template #content>
|
|
<form @submit.prevent="update">
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="name" value="Ime"/>
|
|
<TextInput
|
|
id="name"
|
|
ref="nameInput"
|
|
v-model="form.name"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
autocomplete="name"
|
|
/>
|
|
</div>
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="colorTag" value="Barva"/>
|
|
<div class="mt-1 w-full border flex p-1">
|
|
<TextInput
|
|
id="colorTag"
|
|
ref="colorTagInput"
|
|
v-model="form.color_tag"
|
|
@change="onColorPickerChange"
|
|
type="color"
|
|
class="mr-2"
|
|
autocomplete="color-tag"
|
|
/>
|
|
<span>{{ form.color_tag }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-span-6 sm:col-span-4">
|
|
<InputLabel for="decisions" value="Odločitve"/>
|
|
<multiselect
|
|
id="decisions"
|
|
ref="decisionsSelect"
|
|
v-model="form.decisions"
|
|
:options="selectOptions"
|
|
:multiple="true"
|
|
track-by="id"
|
|
:taggable="true"
|
|
placeholder="Dodaj odločitev"
|
|
label="name"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex justify-end mt-4">
|
|
<ActionMessage :on="form.recentlySuccessful" class="me-3">
|
|
Shranjuje.
|
|
</ActionMessage>
|
|
|
|
<PrimaryButton :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
|
|
Shrani
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</template>
|
|
</Drawer>
|
|
</template> |