Files
InvoiceShelf/resources/scripts-v2/features/company/items/views/ItemIndexView.vue
Darko Gjorgjijoski a46cca5cd8 Complete scripts-v2 TypeScript migration — all imports resolved,
build passes

Create all missing components (modals, dropdowns, icons, tabs, mail
drivers, customer partials), fix all @/scripts/ imports to @v2/,
wire up vite entry point and blade template. 382 files, 48883 lines.

- 27 settings components: modals (tax, payment, custom field, note,
  category, role, exchange rate, unit, mail test), dropdowns (6),
  customization tabs (4), mail driver forms (4)
- 22 icon components: 5 utility icons, 4 dashboard icons, 13 editor
  toolbar icons with typed barrel export
- 3 customer components: info, chart placeholder, custom fields single
- Fixed usePopper composable, client/format-money import patterns
- Zero remaining @/scripts/ imports in scripts-v2/

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 09:30:00 +02:00

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 '@v2/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>