jws-frontend/src/components/DrawerComponent.vue

221 lines
4.9 KiB
Vue
Raw Normal View History

2024-04-02 11:02:16 +07:00
<script setup lang="ts">
2024-07-04 11:28:51 +07:00
import { computed, ref } from 'vue';
import { useRouter } from 'vue-router';
2024-04-05 17:58:34 +07:00
import { Icon } from '@iconify/vue';
2024-04-03 14:21:02 +07:00
const router = useRouter();
2024-04-02 11:02:16 +07:00
const currentRoute = ref<string>('');
2024-07-02 10:15:29 +00:00
const currentPath = computed(() => {
return router.currentRoute.value.path;
});
2024-04-03 14:21:02 +07:00
2024-07-01 11:14:01 +07:00
const labelMenu = ref<
{ label: string; icon: string; route: string; disabled?: boolean }[]
>([
2024-04-03 14:21:02 +07:00
{
label: 'drawerDashboard',
2024-07-02 10:15:29 +00:00
icon: 'mage:dashboard',
2024-07-03 03:39:02 +00:00
route: '',
disabled: true,
2024-04-03 14:21:02 +07:00
},
{
2024-04-03 14:21:02 +07:00
label: 'drawerBranchManagement',
icon: 'mdi-sitemap-outline',
route: '/branch-management',
},
{
2024-04-03 14:21:02 +07:00
label: 'drawerPersonnelManagement',
icon: 'mdi:account-settings-outline',
route: '/personnel-management',
},
2024-04-03 14:21:02 +07:00
{
label: 'drawerCustomerManagement',
icon: 'mdi-account-settings-outline',
route: '/customer-management',
2024-04-03 14:21:02 +07:00
},
{
label: 'drawerProductsAndServices',
icon: 'raphael:package',
2024-06-10 16:42:40 +07:00
route: '/product-service',
2024-04-03 14:21:02 +07:00
},
2024-07-01 11:14:01 +07:00
{
label: 'drawerQuotation',
icon: 'raphael:package',
route: '',
disabled: true,
},
{
label: 'drawerRequestList',
icon: 'raphael:package',
route: '',
disabled: true,
},
{
label: 'drawerWorkOrder',
icon: 'raphael:package',
route: '',
disabled: true,
},
{
label: 'drawerInvoice',
icon: 'raphael:package',
route: '',
disabled: true,
},
2024-04-03 14:21:02 +07:00
{
label: 'drawerAccountingLedger',
icon: 'mdi-account-cash-outline',
route: '',
2024-07-01 11:14:01 +07:00
disabled: true,
},
{
label: 'drawerReport',
icon: 'mdi-file-chart-outline',
route: '',
disabled: true,
2024-04-03 14:21:02 +07:00
},
]);
2024-04-02 11:02:16 +07:00
const leftDrawerOpen = defineModel<boolean>('leftDrawerOpen', {
default: false,
});
function navigateTo(label: string, destination: string) {
currentRoute.value = label;
router.push(`${destination}`);
}
2024-07-04 07:43:50 +00:00
function branchSetting() {}
2024-04-02 11:02:16 +07:00
</script>
<template>
<!-- Drawer -->
<q-drawer
v-model="leftDrawerOpen"
side="left"
2024-07-02 09:11:10 +00:00
:breakpoint="599"
2024-07-04 13:16:28 +07:00
:width="$q.screen.lt.sm ? $q.screen.width - 16 : 256"
2024-07-04 07:43:50 +00:00
class="column justify-between no-wrap"
>
2024-07-04 07:43:50 +00:00
<div class="scroll">
<div
class="flex justify-center q-pa-xl cursor-pointer"
@click="$router.push('/')"
id="btn-drawer-home"
>
<q-img src="/logo.png" style="width: 80%; height: 70%" />
</div>
<div id="drawer-menu" class="q-pr-sm q-pl-md">
<q-item
v-for="v in labelMenu"
dense
:key="v.label"
clickable
:disable="!!v.disabled"
class="no-padding q-my-xs"
:class="{
active: currentPath === v.route,
'border-active': currentPath === v.route,
dark: $q.dark.isActive,
}"
@click="navigateTo(v.label, v.route)"
>
<q-item-section id="btn-drawer-back">
<q-item-label class="row items-center q-px-md">
<div class="box-border-left" />
<Icon :icon="v.icon" width="24px" class="q-mr-md" />
{{ $t(v.label) }}
</q-item-label>
</q-item-section>
</q-item>
</div>
2024-04-02 11:02:16 +07:00
</div>
2024-07-04 07:43:50 +00:00
<div class="surface-2 q-px-md q-py-sm row justify-between items-center">
<div class="flex q-gutter-x-md items-center">
<q-avatar
text-color="white"
size="md"
style="background-color: var(--violet-1)"
class="relative-position"
>
<q-icon
name="mdi-home-group"
size="sm"
style="color: var(--violet-11)"
/>
<div class="dot absolute-bottom-right" />
</q-avatar>
<div class="text-caption column">
<span class="text-weight-bold">
{{ 'ชื่อสาขาที่ 1' }}
</span>
<span>
{{ 'BR1001' }}
</span>
</div>
</div>
<q-btn
dense
flat
rounded
icon="mdi-cog-outline"
size="sm"
@click="branchSetting"
></q-btn>
2024-04-02 11:02:16 +07:00
</div>
</q-drawer>
</template>
<style lang="scss" scoped>
#drawer-menu :deep(.q-item) {
color: var(--gray-6);
2024-07-04 07:43:50 +00:00
border-radius: var(--radius-2);
2024-04-02 11:02:16 +07:00
}
#drawer-menu :deep(.q-item.active) {
--_drawer-item-background-color: var(--brand-1) !important;
2024-04-09 14:52:53 +07:00
background-color: var(--_drawer-item-background-color);
2024-04-02 11:02:16 +07:00
color: white;
2024-07-04 07:43:50 +00:00
// border-left: 10px solid $secondary;
2024-04-02 11:02:16 +07:00
}
2024-07-04 13:16:28 +07:00
:deep(.q-drawer) {
2024-07-04 14:46:45 +07:00
background-color: var(--surface-3);
2024-07-04 13:16:28 +07:00
padding: var(--size-4);
padding-right: 0;
}
:deep(.q-drawer__content) {
border-radius: var(--radius-2);
background: var(--surface-1);
border: 1px solid var(--border-color);
}
2024-07-04 07:43:50 +00:00
#drawer-menu :deep(.q-item.active)::before {
display: block;
position: absolute;
content: ' ';
background: var(--brand-2);
border-radius: 99rem;
width: 6px;
left: -5%;
top: 18%;
bottom: 18%;
cursor: context-menu;
}
.dot {
height: 10px;
width: 10px;
background-color: var(--teal-6);
border-radius: 50%;
display: inline-block;
border: 1.5px solid white;
}
2024-04-02 11:02:16 +07:00
</style>