Files
ikea/resources/js/Pages/Superuser/Menu/Index.vue
2022-10-30 19:05:29 +07:00

382 lines
11 KiB
Vue

<script setup>
import { getCurrentInstance, ref, onMounted, onUnmounted, nextTick } from 'vue'
import { useForm, Link } from '@inertiajs/inertia-vue3'
import { Inertia } from '@inertiajs/inertia'
import DashboardLayout from '@/Layouts/DashboardLayout.vue'
import Card from '@/Components/Card.vue'
import Icon from '@/Components/Icon.vue'
import axios from 'axios'
import Swal from 'sweetalert2'
import Select from '@vueform/multiselect'
import Nested from './Nested.vue'
import Modal from '@/Components/Modal.vue'
import Close from '@/Components/Button/Close.vue'
import ButtonGreen from '@/Components/Button/Green.vue'
import ButtonBlue from '@/Components/Button/Blue.vue'
import Input from '@/Components/Input.vue'
import InputError from '@/Components/InputError.vue'
const self = getCurrentInstance()
const props = defineProps({
permissions: Array,
routes: Array,
icons: Array,
menus: Array,
handlers: Array,
})
const menus = ref(props.menus || [])
const search = ref('')
const form = useForm({
id: null,
name: '',
icon: 'circle',
route_or_url: '',
counter_handler: null,
actives: [],
permissions: [],
})
const fetch = async () => {
try {
const response = await axios.get(route('superuser.menu'))
menus.value = response.data
} catch (e) {
const response = await Swal.fire({
title: __('are you want to try again') + '?',
text: __(`${e}`),
icon: 'question',
showCancelButton: true,
showCloseButton: true,
})
response.isConfirmed && fetch()
}
}
const icon = ref(false)
const open = ref(false)
const show = () => {
open.value = true
nextTick(() => self.refs.name?.focus())
}
const close = () => {
open.value = false
form.id && form.reset()
}
const store = () => {
return form.post(route('superuser.menu.store'), {
onSuccess: () => {
close()
form.reset()
Inertia.get(route(route().current()))
},
onError: () => {
show()
},
})
}
const edit = menu => {
form.id = menu.id
form.name = menu.name
form.icon = menu.icon
form.route_or_url = menu.route_or_url
form.counter_handler = menu.counter_handler
form.actives = menu.actives
form.permissions = menu.permissions.map(p => p.id)
nextTick(show)
}
const update = () => {
return form.patch(route('superuser.menu.update', form.id), {
onSuccess: () => {
close()
form.reset()
Inertia.get(route(route().current()))
},
onError: () => {
show()
},
})
}
const destroy = async menu => {
const response = await Swal.fire({
title: __('are you sure want to delete') + '?',
text: __('you can\'t recover it after deleted'),
icon: 'question',
showCloseButton: true,
showCancelButton: true,
})
response.isConfirmed && Inertia.delete(route('superuser.menu.destroy', menu.id), {
onSuccess: () => Inertia.get(route(route().current()))
})
}
const submit = () => form.id ? update() : store()
const timeout = ref(null)
const save = () => {
timeout.value && clearTimeout(timeout.value)
timeout.value = setTimeout(() => {
return useForm({ menus: menus.value }).patch(route('superuser.menu.save'), {
onFinish: () => {
clearTimeout(timeout.value)
Inertia.get(route(route().current()))
}
}, 100)
})
}
const esc = e => e.key === 'Escape' && close()
onMounted(fetch)
onMounted(() => window.addEventListener('keydown', esc))
onUnmounted(() => window.removeEventListener('keydown', esc))
</script>
<style src="@vueform/multiselect/themes/default.css"></style>
<style src="@/multiselect.css"></style>
<template>
<DashboardLayout
:title="__('menu')"
>
<Card class="bg-gray-50 dark:bg-gray-700 dark:text-gray-100">
<template #header>
<div class="flex items-center space-x-2 p-2 bg-gray-200 dark:bg-gray-800">
<ButtonGreen
v-if="can('create menu')"
@click.prevent="form.id = null; show()"
>
<Icon name="plus" />
<p class="uppercase font-semibold">
{{ __('create') }}
</p>
</ButtonGreen>
</div>
</template>
<template #body>
<div class="flex flex-col space-y-1 p-2">
<Nested
:menus="menus"
:edit="edit"
:destroy="destroy"
:save="save"
/>
</div>
</template>
</Card>
<Modal :show="open">
<form
@submit.prevent="submit"
class="w-full max-w-xl sm:max-w-5xl h-fit rounded-md shadow-xl"
>
<Card class="bg-gray-50 dark:bg-gray-700 dark:text-gray-100">
<template #header>
<div class="flex items-center space-x-2 p-2 justify-end bg-gray-200 dark:bg-gray-800">
<Close @click.prevent="close" />
</div>
</template>
<template #body>
<div class="flex flex-col space-y-2 p-4">
<div class="flex flex-col space-y-1">
<div class="flex items-center space-x-2">
<label for="name" class="lowercase first-letter:capitalize w-1/3">
{{ __('name') }}
</label>
<Input
v-model="form.name"
:placeholder="__('name')"
type="text"
name="name"
required
autofocus
/>
</div>
<InputError
:error="form.errors.name"
/>
</div>
<div class="flex flex-col space-y-1">
<div class="flex items-center space-x-2">
<label for="route_or_url" class="lowercase first-letter:capitalize w-1/3">
{{ __('route name or url') }}
</label>
<Select
v-model="form.route_or_url"
:options="routes"
:searchable="true"
:createOption="true"
:value="form.route_or_url"
:placeholder="__('route name or url')"
ref="route_or_url"
/>
</div>
<InputError
:error="form.errors.route_or_url"
/>
</div>
<div class="flex flex-col space-y-1">
<div class="flex items-center space-x-2">
<label for="counter_handler" class="lowercase first-letter:capitalize w-1/3">
{{ __('counter handler') }}
</label>
<Select
v-model="form.counter_handler"
:options="handlers.map(handler => ({
label: handler.name,
value: handler.class,
}))"
:searchable="true"
:placeholder="__('Counter Handler')"
ref="counter_handler"
/>
</div>
<InputError
:error="form.errors.counter_handler"
/>
</div>
<div class="flex flex-col space-y-1">
<div class="flex items-center space-x-2">
<label for="actives" class="lowercase first-letter:capitalize w-1/3">
{{ __('actives') }}
</label>
<Select
v-model="form.actives"
:options="[...routes, ...form.actives.filter(active => ! routes.includes(active))]"
:searchable="true"
:closeOnSelect="false"
:clearOnSelect="false"
:createTag="true"
:placeholder="__('actives')"
ref="actives"
mode="tags"
/>
</div>
<InputError :error="form.errors.actives" />
</div>
<div class="flex flex-col space-y-1">
<div class="flex items-center space-x-2">
<label for="permissions" class="lowercase first-letter:capitalize w-1/3">
{{ __('permissions') }}
</label>
<Select
v-model="form.permissions"
:options="permissions.map(p => ({
label: __(p.name),
value: p.id,
}))"
:searchable="true"
:closeOnSelect="false"
:clearOnSelect="false"
:placeholder="__('permissions')"
ref="permissions"
mode="tags"
/>
</div>
<InputError
:error="form.errors.permissions"
/>
</div>
<div class="flex items-center space-x-2">
<label class="flex-none lowercase first-letter:capitalize w-1/4">
{{ __('icon') }}
</label>
<div class="flex items-center justify-between w-full">
<p class="text-3xl">
<Icon
:name="form.icon"
class="dark:text-white"
/>
</p>
<p class="text-sm uppercase">
{{ form.icon }}
</p>
<ButtonBlue
@click.prevent="icon = true"
type="button"
>
<Icon name="edit" />
<p class="uppercase font-semibold">
{{ __('change') }}
</p>
</ButtonBlue>
</div>
</div>
</div>
</template>
<template #footer>
<div class="flex items-center justify-end space-x-2 bg-gray-200 dark:bg-gray-800 py-1 px-2">
<ButtonGreen type="submit">
<Icon name="check" />
<p class="uppercase font-semibold">
{{ __(form.id ? 'update' : 'create') }}
</p>
</ButtonGreen>
</div>
</template>
</Card>
</form>
</Modal>
<Modal :show="icon">
<Card class="bg-gray-50 dark:bg-gray-700 dark:text-gray-100 w-full max-w-xl sm:max-w-5xl h-fit">
<template #header>
<div class="flex items-center space-x-2 p-2 justify-end bg-gray-200 dark:bg-gray-800">
<Input
v-model="search"
:placeholder="__('search something')"
type="search"
class="py-1 w-full bg-white dark:bg-transparent rounded-md text-sm uppercase"
autofocus
/>
<Close @click.prevent="icon = false" />
</div>
</template>
<template #body>
<div class="flex-wrap p-4 max-h-96 overflow-auto">
<Icon
v-for="(icx, i) in icons.filter(icx => icx.includes(search.trim().toLocaleLowerCase()))"
:key="i"
@click.prevent="form.icon = icx; icon = false"
:name="icx"
class="m-1 text-5xl px-2 py-1 text-gray-800 bg-gray-200 hover:bg-gray-100 dark:text-white dark:bg-gray-600 dark:hover:bg-gray-700 rounded-md cursor-pointer transition-all"
/>
</div>
</template>
</Card>
</Modal>
</DashboardLayout>
</template>