mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-16 09:44:06 +00:00
Now that the legacy v1 frontend (commit 064bdf53) is gone, the v2 directory is the only frontend and the v2 suffix is just noise. Renames resources/scripts-v2 to resources/scripts via git mv (so git records the move as renames, preserving blame and log --follow), then bulk-rewrites the 152 files that imported via @v2/... to use @/scripts/... instead. The existing @ alias (resources/) covers the new path with no extra config needed.
Drops the now-unused @v2 alias from vite.config.js and points the laravel-vite-plugin entry at resources/scripts/main.ts. Updates the only blade reference (resources/views/app.blade.php) to match. The package.json test script (eslint ./resources/scripts) automatically targets the right place after the rename without any edit.
Verified: npm run build exits clean and the Vite warning lines now reference resources/scripts/plugins/i18n.ts, confirming every import resolved through the new path. git log --follow on any moved file walks back through its scripts-v2 history.
385 lines
9.7 KiB
Vue
385 lines
9.7 KiB
Vue
<script setup lang="ts">
|
|
import { ref, computed, reactive, onUnmounted } from 'vue'
|
|
import { debouncedWatch } from '@vueuse/core'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useItemStore } from '../store'
|
|
import { useDialogStore } from '../../../../stores/dialog.store'
|
|
import { useCompanyStore } from '../../../../stores/company.store'
|
|
import { useUserStore } from '../../../../stores/user.store'
|
|
import ItemDropdown from '../components/ItemDropdown.vue'
|
|
import SatelliteIcon from '@/scripts/components/icons/SatelliteIcon.vue'
|
|
|
|
interface TableColumn {
|
|
key: string
|
|
label?: string
|
|
thClass?: string
|
|
tdClass?: string
|
|
placeholderClass?: string
|
|
sortable?: boolean
|
|
}
|
|
|
|
interface FetchParams {
|
|
page: number
|
|
filter: Record<string, unknown>
|
|
sort: { fieldName: string; order: string }
|
|
}
|
|
|
|
interface FetchResult {
|
|
data: unknown[]
|
|
pagination: {
|
|
totalPages: number
|
|
currentPage: number
|
|
totalCount: number
|
|
limit: number
|
|
}
|
|
}
|
|
|
|
interface ItemFilters {
|
|
name: string
|
|
unit_id: string | number
|
|
price: string | number
|
|
}
|
|
|
|
const ABILITIES = {
|
|
CREATE_ITEM: 'create-item',
|
|
DELETE_ITEM: 'delete-item',
|
|
EDIT_ITEM: 'edit-item',
|
|
} as const
|
|
|
|
const itemStore = useItemStore()
|
|
const companyStore = useCompanyStore()
|
|
const dialogStore = useDialogStore()
|
|
const userStore = useUserStore()
|
|
|
|
const { t } = useI18n()
|
|
const showFilters = ref<boolean>(false)
|
|
const isFetchingInitialData = ref<boolean>(true)
|
|
|
|
const filters = reactive<ItemFilters>({
|
|
name: '',
|
|
unit_id: '',
|
|
price: '',
|
|
})
|
|
|
|
const table = ref<{ refresh: () => void } | null>(null)
|
|
|
|
const showEmptyScreen = computed<boolean>(
|
|
() => !itemStore.totalItems && !isFetchingInitialData.value
|
|
)
|
|
|
|
const selectField = computed<number[]>({
|
|
get: () => itemStore.selectedItems,
|
|
set: (value: number[]) => {
|
|
itemStore.selectItem(value)
|
|
},
|
|
})
|
|
|
|
const itemColumns = computed<TableColumn[]>(() => [
|
|
{
|
|
key: 'status',
|
|
thClass: 'extra w-10',
|
|
tdClass: 'font-medium text-heading',
|
|
placeholderClass: 'w-10',
|
|
sortable: false,
|
|
},
|
|
{
|
|
key: 'name',
|
|
label: t('items.name'),
|
|
thClass: 'extra',
|
|
tdClass: 'font-medium text-heading',
|
|
},
|
|
{ key: 'unit_name', label: t('items.unit') },
|
|
{ key: 'price', label: t('items.price') },
|
|
{ key: 'created_at', label: t('items.added_on') },
|
|
{
|
|
key: 'actions',
|
|
thClass: 'text-right',
|
|
tdClass: 'text-right text-sm font-medium',
|
|
sortable: false,
|
|
},
|
|
])
|
|
|
|
debouncedWatch(
|
|
filters,
|
|
() => {
|
|
setFilters()
|
|
},
|
|
{ debounce: 500 }
|
|
)
|
|
|
|
itemStore.fetchItemUnits({ limit: 'all' })
|
|
|
|
onUnmounted(() => {
|
|
if (itemStore.selectAllField) {
|
|
itemStore.selectAllItems()
|
|
}
|
|
})
|
|
|
|
function clearFilter(): void {
|
|
filters.name = ''
|
|
filters.unit_id = ''
|
|
filters.price = ''
|
|
}
|
|
|
|
function hasAbilities(): boolean {
|
|
return userStore.hasAbilities([ABILITIES.DELETE_ITEM, ABILITIES.EDIT_ITEM])
|
|
}
|
|
|
|
function toggleFilter(): void {
|
|
if (showFilters.value) {
|
|
clearFilter()
|
|
}
|
|
showFilters.value = !showFilters.value
|
|
}
|
|
|
|
function refreshTable(): void {
|
|
table.value?.refresh()
|
|
}
|
|
|
|
function setFilters(): void {
|
|
refreshTable()
|
|
}
|
|
|
|
async function searchUnits(search: string): Promise<unknown[]> {
|
|
const res = await itemStore.fetchItemUnits({ search })
|
|
return res.data.data
|
|
}
|
|
|
|
async function fetchData({ page, sort }: FetchParams): Promise<FetchResult> {
|
|
const data = {
|
|
search: filters.name,
|
|
unit_id: filters.unit_id !== null ? filters.unit_id : '',
|
|
price: Math.round(Number(filters.price) * 100),
|
|
orderByField: sort.fieldName || 'created_at',
|
|
orderBy: sort.order || 'desc',
|
|
page,
|
|
}
|
|
|
|
isFetchingInitialData.value = true
|
|
const response = await itemStore.fetchItems(data)
|
|
isFetchingInitialData.value = false
|
|
|
|
return {
|
|
data: response.data,
|
|
pagination: {
|
|
totalPages: response.meta.last_page,
|
|
currentPage: page,
|
|
totalCount: response.meta.total,
|
|
limit: 10,
|
|
},
|
|
}
|
|
}
|
|
|
|
function removeMultipleItems(): void {
|
|
dialogStore
|
|
.openDialog({
|
|
title: t('general.are_you_sure'),
|
|
message: t('items.confirm_delete', 2),
|
|
yesLabel: t('general.ok'),
|
|
noLabel: t('general.cancel'),
|
|
variant: 'danger',
|
|
hideNoButton: false,
|
|
size: 'lg',
|
|
})
|
|
.then((res: boolean) => {
|
|
if (res) {
|
|
itemStore.deleteMultipleItems().then((response) => {
|
|
if (response.success) {
|
|
table.value?.refresh()
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<BasePage>
|
|
<BasePageHeader :title="$t('items.title')">
|
|
<BaseBreadcrumb>
|
|
<BaseBreadcrumbItem :title="$t('general.home')" to="dashboard" />
|
|
<BaseBreadcrumbItem :title="$t('items.item', 2)" to="#" active />
|
|
</BaseBreadcrumb>
|
|
|
|
<template #actions>
|
|
<div class="flex items-center justify-end space-x-5">
|
|
<BaseButton
|
|
v-show="itemStore.totalItems"
|
|
variant="primary-outline"
|
|
@click="toggleFilter"
|
|
>
|
|
{{ $t('general.filter') }}
|
|
<template #right="slotProps">
|
|
<BaseIcon
|
|
v-if="!showFilters"
|
|
:class="slotProps.class"
|
|
name="FunnelIcon"
|
|
/>
|
|
<BaseIcon v-else name="XMarkIcon" :class="slotProps.class" />
|
|
</template>
|
|
</BaseButton>
|
|
|
|
<BaseButton
|
|
v-if="userStore.hasAbilities(ABILITIES.CREATE_ITEM)"
|
|
@click="$router.push('/admin/items/create')"
|
|
>
|
|
<template #left="slotProps">
|
|
<BaseIcon name="PlusIcon" :class="slotProps.class" />
|
|
</template>
|
|
{{ $t('items.add_item') }}
|
|
</BaseButton>
|
|
</div>
|
|
</template>
|
|
</BasePageHeader>
|
|
|
|
<BaseFilterWrapper :show="showFilters" class="mt-5" @clear="clearFilter">
|
|
<BaseInputGroup :label="$t('items.name')" class="text-left">
|
|
<BaseInput
|
|
v-model="filters.name"
|
|
type="text"
|
|
name="name"
|
|
autocomplete="off"
|
|
/>
|
|
</BaseInputGroup>
|
|
|
|
<BaseInputGroup :label="$t('items.unit')" class="text-left">
|
|
<BaseMultiselect
|
|
v-model="filters.unit_id"
|
|
:placeholder="$t('items.select_a_unit')"
|
|
value-prop="id"
|
|
track-by="name"
|
|
:filter-results="false"
|
|
label="name"
|
|
resolve-on-load
|
|
:delay="500"
|
|
searchable
|
|
class="w-full"
|
|
:options="searchUnits"
|
|
/>
|
|
</BaseInputGroup>
|
|
|
|
<BaseInputGroup class="text-left" :label="$t('items.price')">
|
|
<BaseMoney v-model="filters.price" />
|
|
</BaseInputGroup>
|
|
</BaseFilterWrapper>
|
|
|
|
<BaseEmptyPlaceholder
|
|
v-show="showEmptyScreen"
|
|
:title="$t('items.no_items')"
|
|
:description="$t('items.list_of_items')"
|
|
>
|
|
<SatelliteIcon class="mt-5 mb-4" />
|
|
|
|
<template #actions>
|
|
<BaseButton
|
|
v-if="userStore.hasAbilities(ABILITIES.CREATE_ITEM)"
|
|
variant="primary-outline"
|
|
@click="$router.push('/admin/items/create')"
|
|
>
|
|
<template #left="slotProps">
|
|
<BaseIcon name="PlusIcon" :class="slotProps.class" />
|
|
</template>
|
|
{{ $t('items.add_new_item') }}
|
|
</BaseButton>
|
|
</template>
|
|
</BaseEmptyPlaceholder>
|
|
|
|
<div v-show="!showEmptyScreen" class="relative table-container">
|
|
<div
|
|
class="
|
|
relative
|
|
flex
|
|
items-center
|
|
justify-end
|
|
h-5
|
|
border-line-default border-solid
|
|
"
|
|
>
|
|
<BaseDropdown v-if="itemStore.selectedItems.length">
|
|
<template #activator>
|
|
<span
|
|
class="
|
|
flex
|
|
text-sm
|
|
font-medium
|
|
cursor-pointer
|
|
select-none
|
|
text-primary-400
|
|
"
|
|
>
|
|
{{ $t('general.actions') }}
|
|
<BaseIcon name="ChevronDownIcon" />
|
|
</span>
|
|
</template>
|
|
<BaseDropdownItem @click="removeMultipleItems">
|
|
<BaseIcon name="TrashIcon" class="mr-3 text-body" />
|
|
{{ $t('general.delete') }}
|
|
</BaseDropdownItem>
|
|
</BaseDropdown>
|
|
</div>
|
|
|
|
<BaseTable
|
|
ref="table"
|
|
:data="fetchData"
|
|
:columns="itemColumns"
|
|
:placeholder-count="itemStore.totalItems >= 20 ? 10 : 5"
|
|
class="mt-3"
|
|
>
|
|
<template #header>
|
|
<div class="absolute items-center left-6 top-2.5 select-none">
|
|
<BaseCheckbox
|
|
v-model="itemStore.selectAllField"
|
|
variant="primary"
|
|
@change="itemStore.selectAllItems"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<template #cell-status="{ row }">
|
|
<div class="relative block">
|
|
<BaseCheckbox
|
|
:id="row.id"
|
|
v-model="selectField"
|
|
:value="row.data.id"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<template #cell-name="{ row }">
|
|
<router-link
|
|
:to="{ path: `items/${row.data.id}/edit` }"
|
|
class="font-medium text-primary-500"
|
|
>
|
|
<BaseText :text="row.data.name" />
|
|
</router-link>
|
|
</template>
|
|
|
|
<template #cell-unit_name="{ row }">
|
|
<span>
|
|
{{ row.data.unit ? row.data.unit.name : '-' }}
|
|
</span>
|
|
</template>
|
|
|
|
<template #cell-price="{ row }">
|
|
<BaseFormatMoney
|
|
:amount="row.data.price"
|
|
:currency="companyStore.selectedCompanyCurrency"
|
|
/>
|
|
</template>
|
|
|
|
<template #cell-created_at="{ row }">
|
|
<span>{{ row.data.formatted_created_at }}</span>
|
|
</template>
|
|
|
|
<template v-if="hasAbilities()" #cell-actions="{ row }">
|
|
<ItemDropdown
|
|
:row="row.data"
|
|
:table="table"
|
|
:load-data="refreshTable"
|
|
/>
|
|
</template>
|
|
</BaseTable>
|
|
</div>
|
|
</BasePage>
|
|
</template>
|