mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
* add dark mode in basedropdown * dark mod add in global search, header * add dark mode in company switch * indentation issue fix company switch * fix dropdown issues --------- Co-authored-by: yogesh-gohil <yogeshgohil1611@gmail.com>
92 lines
2.4 KiB
Vue
92 lines
2.4 KiB
Vue
<template>
|
|
<BaseDropdown>
|
|
<template #activator>
|
|
<BaseButton v-if="route.name === 'items.view'" variant="primary">
|
|
<BaseIcon name="DotsHorizontalIcon" class="h-5 text-white" />
|
|
</BaseButton>
|
|
<BaseIcon v-else name="DotsHorizontalIcon" class="h-5 text-gray-500" />
|
|
</template>
|
|
|
|
<!-- edit item -->
|
|
<router-link
|
|
v-if="userStore.hasAbilities(abilities.EDIT_ITEM)"
|
|
:to="`/admin/items/${row.id}/edit`"
|
|
>
|
|
<BaseDropdownItem v-slot="slotProps">
|
|
<BaseIcon name="PencilIcon" :class="slotProps.class" />
|
|
{{ $t('general.edit') }}
|
|
</BaseDropdownItem>
|
|
</router-link>
|
|
|
|
<!-- delete item -->
|
|
<BaseDropdownItem
|
|
v-if="userStore.hasAbilities(abilities.DELETE_ITEM)"
|
|
v-slot="slotProps"
|
|
@click="removeItem(row.id)"
|
|
>
|
|
<BaseIcon name="TrashIcon" :class="slotProps.class" />
|
|
{{ $t('general.delete') }}
|
|
</BaseDropdownItem>
|
|
</BaseDropdown>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useDialogStore } from '@/scripts/stores/dialog'
|
|
import { useNotificationStore } from '@/scripts/stores/notification'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useItemStore } from '@/scripts/admin/stores/item'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import { inject } from 'vue'
|
|
import { useUserStore } from '@/scripts/admin/stores/user'
|
|
import abilities from '@/scripts/admin/stub/abilities'
|
|
|
|
const props = defineProps({
|
|
row: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
table: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
loadData: {
|
|
type: Function,
|
|
default: null,
|
|
},
|
|
})
|
|
|
|
const dialogStore = useDialogStore()
|
|
const notificationStore = useNotificationStore()
|
|
const { t } = useI18n()
|
|
const itemStore = useItemStore()
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const userStore = useUserStore()
|
|
|
|
const $utils = inject('utils')
|
|
|
|
function removeItem(id) {
|
|
dialogStore
|
|
.openDialog({
|
|
title: t('general.are_you_sure'),
|
|
message: t('items.confirm_delete'),
|
|
yesLabel: t('general.ok'),
|
|
noLabel: t('general.cancel'),
|
|
variant: 'danger',
|
|
hideNoButton: false,
|
|
size: 'lg',
|
|
})
|
|
.then((res) => {
|
|
if (res) {
|
|
itemStore.deleteItem({ ids: [id] }).then((response) => {
|
|
if (response.data.success) {
|
|
props.loadData && props.loadData()
|
|
return true
|
|
}
|
|
return true
|
|
})
|
|
}
|
|
})
|
|
}
|
|
</script>
|