Files
InvoiceShelf/resources/scripts/features/company/settings/components/NumberCustomizer.vue
Darko Gjorgjijoski 71388ec6a5 Rename resources/scripts-v2 to resources/scripts and drop @v2 alias
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.
2026-04-07 12:50:16 +02:00

399 lines
11 KiB
Vue

<script setup lang="ts">
import { ref, computed, watch } from 'vue'
import { useDebounceFn } from '@vueuse/core'
import { useI18n } from 'vue-i18n'
import draggable from 'vuedraggable'
import Guid from 'guid'
import { useCompanyStore } from '../../../../stores/company.store'
import { useGlobalStore } from '../../../../stores/global.store'
import DragIcon from '@/scripts/components/icons/DragIcon.vue'
interface NumberField {
id: string
label: string
description: string
name: string
paramLabel: string
value: string
inputDisabled: boolean
inputType: string
allowMultiple: boolean
}
interface TypeStore {
getNextNumber: (data: {
key: string
format: string
}) => Promise<{ data?: { nextNumber: string } }>
}
interface Props {
type: string
typeStore: TypeStore
defaultSeries?: string
}
const props = withDefaults(defineProps<Props>(), {
defaultSeries: 'INV',
})
const { t } = useI18n()
const companyStore = useCompanyStore()
const globalStore = useGlobalStore()
const selectedFields = ref<NumberField[]>([])
const isSaving = ref<boolean>(false)
const nextNumber = ref<string>('')
const isFetchingNextNumber = ref<boolean>(false)
const isLoadingPlaceholders = ref<boolean>(false)
const allFields = ref<Omit<NumberField, 'id'>[]>([
{
label: t('settings.customization.series'),
description: t('settings.customization.series_description'),
name: 'SERIES',
paramLabel: t('settings.customization.series_param_label'),
value: props.defaultSeries,
inputDisabled: false,
inputType: 'text',
allowMultiple: false,
},
{
label: t('settings.customization.sequence'),
description: t('settings.customization.sequence_description'),
name: 'SEQUENCE',
paramLabel: t('settings.customization.sequence_param_label'),
value: '6',
inputDisabled: false,
inputType: 'number',
allowMultiple: false,
},
{
label: t('settings.customization.delimiter'),
description: t('settings.customization.delimiter_description'),
name: 'DELIMITER',
paramLabel: t('settings.customization.delimiter_param_label'),
value: '-',
inputDisabled: false,
inputType: 'text',
allowMultiple: true,
},
{
label: t('settings.customization.customer_series'),
description: t('settings.customization.customer_series_description'),
name: 'CUSTOMER_SERIES',
paramLabel: '',
value: '',
inputDisabled: true,
inputType: 'text',
allowMultiple: false,
},
{
label: t('settings.customization.customer_sequence'),
description: t('settings.customization.customer_sequence_description'),
name: 'CUSTOMER_SEQUENCE',
paramLabel: t('settings.customization.customer_sequence_param_label'),
value: '6',
inputDisabled: false,
inputType: 'number',
allowMultiple: false,
},
{
label: t('settings.customization.date_format'),
description: t('settings.customization.date_format_description'),
name: 'DATE_FORMAT',
paramLabel: t('settings.customization.date_format_param_label'),
value: 'Y',
inputDisabled: false,
inputType: 'text',
allowMultiple: true,
},
{
label: t('settings.customization.random_sequence'),
description: t('settings.customization.random_sequence_description'),
name: 'RANDOM_SEQUENCE',
paramLabel: t('settings.customization.random_sequence_param_label'),
value: '6',
inputDisabled: false,
inputType: 'number',
allowMultiple: false,
},
])
const computedFields = computed<Omit<NumberField, 'id'>[]>(() => {
return allFields.value.filter((obj) => {
return !selectedFields.value.some((obj2) => {
if (obj.allowMultiple) return false
return obj.name === obj2.name
})
})
})
const getNumberFormat = computed<string>(() => {
let format = ''
selectedFields.value.forEach((field) => {
let fieldString = `{{${field.name}`
if (field.value) {
fieldString += `:${field.value}`
}
format += `${fieldString}}}`
})
return format
})
watch(selectedFields, () => {
fetchNextNumber()
})
setInitialFields()
async function setInitialFields(): Promise<void> {
const data = {
format: companyStore.selectedCompanySettings[`${props.type}_number_format`],
}
isLoadingPlaceholders.value = true
const res = await globalStore.fetchPlaceholders(data as { key: string })
res.placeholders.forEach((placeholder) => {
const found = allFields.value.find((field) => field.name === placeholder.name)
if (!found) return
selectedFields.value.push({
...found,
value: placeholder.value ?? found.value,
id: Guid.raw(),
})
})
isLoadingPlaceholders.value = false
fetchNextNumber()
}
function isFieldAdded(field: Omit<NumberField, 'id'>): boolean {
return !!selectedFields.value.find((v) => v.name === field.name)
}
function onSelectField(field: Omit<NumberField, 'id'>): void {
if (isFieldAdded(field) && !field.allowMultiple) return
selectedFields.value.push({ ...field, id: Guid.raw() })
fetchNextNumber()
}
function removeComponent(component: NumberField): void {
selectedFields.value = selectedFields.value.filter((el) => component.id !== el.id)
}
function onUpdate(val: string, element: NumberField): void {
switch (element.name) {
case 'SERIES':
if (val.length >= 6) val = val.substring(0, 6)
break
case 'DELIMITER':
if (val.length >= 1) val = val.substring(0, 1)
break
}
setTimeout(() => {
element.value = val
fetchNextNumber()
}, 100)
}
const fetchNextNumber = useDebounceFn(() => {
getNextNumber()
}, 500)
async function getNextNumber(): Promise<void> {
if (!getNumberFormat.value) {
nextNumber.value = ''
return
}
const data = {
key: props.type,
format: getNumberFormat.value,
}
isFetchingNextNumber.value = true
const res = await props.typeStore.getNextNumber(data)
isFetchingNextNumber.value = false
if (res.data) {
nextNumber.value = (res.data as Record<string, string>).nextNumber
}
}
async function submitForm(): Promise<boolean> {
if (isFetchingNextNumber.value || isLoadingPlaceholders.value) return false
isSaving.value = true
const data: { settings: Record<string, string> } = { settings: {} }
data.settings[props.type + '_number_format'] = getNumberFormat.value
await companyStore.updateCompanySettings({
data,
message: `settings.customization.${props.type}s.${props.type}_settings_updated`,
})
isSaving.value = false
return true
}
</script>
<template>
<h6 class="text-heading text-lg font-medium">
{{ $t(`settings.customization.${type}s.${type}_number_format`) }}
</h6>
<p class="mt-1 text-sm text-muted">
{{ $t(`settings.customization.${type}s.${type}_number_format_description`) }}
</p>
<div class="overflow-x-auto">
<table class="w-full mt-6 table-fixed">
<colgroup>
<col style="width: 4%" />
<col style="width: 45%" />
<col style="width: 27%" />
<col style="width: 24%" />
</colgroup>
<thead>
<tr>
<th
class="px-5 py-3 text-sm not-italic font-medium leading-5 text-left text-body border-t border-b border-line-default border-solid"
/>
<th
class="px-5 py-3 text-sm not-italic font-medium leading-5 text-left text-body border-t border-b border-line-default border-solid"
>
{{ $t('settings.customization.component') }}
</th>
<th
class="px-5 py-3 text-sm not-italic font-medium leading-5 text-left text-body border-t border-b border-line-default border-solid"
>
{{ $t('settings.customization.Parameter') }}
</th>
<th
class="px-5 py-3 text-sm not-italic font-medium leading-5 text-left text-body border-t border-b border-line-default border-solid"
/>
</tr>
</thead>
<draggable
v-model="selectedFields"
class="divide-y divide-line-default"
item-key="id"
tag="tbody"
handle=".handle"
filter=".ignore-element"
>
<template #item="{ element }">
<tr class="relative">
<td class="text-subtle cursor-move handle align-middle">
<DragIcon />
</td>
<td class="px-5 py-4">
<label
class="block text-sm not-italic font-medium text-primary-500 whitespace-nowrap mr-2 min-w-[200px]"
>
{{ element.label }}
</label>
<p class="text-xs text-muted mt-1">
{{ element.description }}
</p>
</td>
<td class="px-5 py-4 text-left align-middle">
<BaseInputGroup
:label="element.paramLabel"
class="lg:col-span-3"
required
>
<BaseInput
v-model="element.value"
:disabled="element.inputDisabled"
:type="element.inputType"
@update:model-value="onUpdate($event, element)"
/>
</BaseInputGroup>
</td>
<td class="px-5 py-4 text-right align-middle pt-10">
<BaseButton
variant="white"
@click.prevent="removeComponent(element)"
>
{{ $t('general.remove') }}
<template #left="slotProps">
<BaseIcon
name="XMarkIcon"
class="!sm:m-0"
:class="slotProps.class"
/>
</template>
</BaseButton>
</td>
</tr>
</template>
<template #footer>
<tr>
<td colspan="2" class="px-5 py-4">
<BaseInputGroup
:label="$t(`settings.customization.${type}s.preview_${type}_number`)"
>
<BaseInput
v-model="nextNumber"
disabled
:loading="isFetchingNextNumber"
/>
</BaseInputGroup>
</td>
<td class="px-5 py-4 text-right align-middle" colspan="2">
<BaseDropdown wrapper-class="flex items-center justify-end mt-5">
<template #activator>
<BaseButton variant="primary-outline">
<template #left="slotProps">
<BaseIcon :class="slotProps.class" name="PlusIcon" />
</template>
{{ $t('settings.customization.add_new_component') }}
</BaseButton>
</template>
<BaseDropdownItem
v-for="field in computedFields"
:key="field.label"
@click.prevent="onSelectField(field)"
>
{{ field.label }}
</BaseDropdownItem>
</BaseDropdown>
</td>
</tr>
</template>
</draggable>
</table>
</div>
<BaseButton
:loading="isSaving"
:disabled="isSaving"
variant="primary"
type="submit"
class="mt-4"
@click="submitForm"
>
<template #left="slotProps">
<BaseIcon
v-if="!isSaving"
:class="slotProps.class"
name="ArrowDownOnSquareIcon"
/>
</template>
{{ $t('settings.customization.save') }}
</BaseButton>
</template>