Files
MixedAssets/src/views/TemplatesView.vue
2026-06-05 04:15:24 -05:00

216 lines
8.1 KiB
Vue

<template>
<section class="content-grid">
<v-card class="span-5 panel-pad">
<div class="toolbar-row mb-4">
<h2 class="section-title">{{ localForm.id ? 'Edit template' : 'New asset template' }}</h2>
<v-spacer />
<v-btn v-if="localForm.id" variant="text" size="small" prepend-icon="mdi-plus" @click="startNew">New</v-btn>
</div>
<v-text-field v-model="localForm.name" label="Name" />
<v-textarea v-model="localForm.description" label="Description" rows="2" />
<v-select v-model="localForm.defaults.category" :items="categoryItems" label="Category" />
<v-text-field v-model.number="localForm.defaults.useful_life_months" type="number" label="Useful life months" />
<v-select v-model="localForm.defaults.depreciation_method" :items="methodItems" item-title="title" item-value="value" label="Depreciation method" />
<v-divider class="my-4" />
<div class="toolbar-row mb-3">
<h3 class="section-title">Custom fields</h3>
<v-spacer />
<v-btn variant="tonal" size="small" prepend-icon="mdi-plus" @click="addField">Add field</v-btn>
</div>
<div v-if="!localForm.custom_fields.length" class="quiet text-body-2 mb-4">No custom fields defined.</div>
<div v-for="(field, index) in localForm.custom_fields" :key="field.local_id" class="custom-field-row">
<v-text-field v-model="field.label" label="Label" @update:model-value="syncFieldKey(field)" />
<v-text-field v-model="field.key" label="Key" />
<v-select v-model="field.type" :items="customFieldTypes" item-title="title" item-value="value" label="Type" />
<v-text-field v-if="field.type !== 'bool'" v-model="field.defaultValue" label="Default" />
<v-switch v-else v-model="field.defaultValue" label="Default" color="primary" density="compact" hide-details />
<v-switch v-model="field.required" label="Required" color="primary" density="compact" hide-details />
<v-btn icon="mdi-delete" variant="text" color="error" @click="localForm.custom_fields.splice(index, 1)" />
</div>
<v-btn color="primary" prepend-icon="mdi-content-save" :disabled="!localForm.name" @click="$emit('save-template', localForm)">
{{ localForm.id ? 'Update template' : 'Save template' }}
</v-btn>
</v-card>
<v-card class="span-7 panel-pad">
<h2 class="section-title mb-3">Templates</h2>
<DataTable
:columns="columns"
:rows="templateRows"
row-key="id"
:page-size="10"
has-actions
searchable
search-placeholder="Filter templates"
empty-text="No templates yet. Create one on the left."
>
<template #cell-name="{ row }">
<span class="font-weight-bold">{{ row.name }}</span>
</template>
<template #cell-description="{ row }">{{ row.description || '—' }}</template>
<template #actions="{ row }">
<v-btn v-if="canDelete" icon="mdi-pencil" size="small" variant="text" @click="editTemplate(row)" />
<v-btn v-if="canDelete" icon="mdi-delete-outline" size="small" variant="text" color="error" @click="confirmDelete(row)" />
</template>
</DataTable>
</v-card>
<v-dialog v-model="deleteDialog" max-width="520">
<v-card>
<v-card-title class="text-error">Delete template</v-card-title>
<v-card-text>
<p class="mb-3">Delete the template <strong>{{ deleteTarget?.name }}</strong>?</p>
<v-alert
:type="deleteTarget && deleteTarget.asset_count ? 'warning' : 'info'"
variant="tonal"
density="comfortable"
class="mb-3"
>
<template v-if="deleteTarget && deleteTarget.asset_count">
This template is currently assigned to <strong>{{ deleteTarget.asset_count }}</strong>
asset{{ deleteTarget.asset_count === 1 ? '' : 's' }}.
</template>
<template v-else>
This template is not assigned to any assets.
</template>
</v-alert>
<p class="mb-2">When you delete it:</p>
<ul class="delete-impact">
<li>Assigned assets <strong>keep all their data and custom-field values</strong> nothing is removed from them.</li>
<li>Those assets are simply <strong>unlinked</strong> from this template.</li>
<li>The template will <strong>no longer be available</strong> when creating new assets.</li>
</ul>
<p class="quiet text-body-2 mt-3">This action cannot be undone.</p>
</v-card-text>
<v-card-actions>
<v-spacer />
<v-btn variant="text" @click="deleteDialog = false">Cancel</v-btn>
<v-btn color="error" prepend-icon="mdi-delete-outline" @click="performDelete">Delete template</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</section>
</template>
<script>
import DataTable from '../components/DataTable.vue';
import { slugFieldKey } from '../utils/assets';
import { clonePlain } from '../utils/clone';
function fieldId() {
return crypto.randomUUID ? crypto.randomUUID() : String(Date.now() + Math.random());
}
export default {
components: { DataTable },
props: {
categoryItems: { type: Array, required: true },
customFieldTypes: { type: Array, required: true },
methodItems: { type: Array, required: true },
templateForm: { type: Object, required: true },
templates: { type: Array, required: true },
canDelete: { type: Boolean, default: false }
},
emits: ['save-template', 'delete-template'],
data() {
return {
localForm: clonePlain(this.templateForm),
deleteDialog: false,
deleteTarget: null,
columns: [
{ key: 'name', label: 'Template' },
{ key: 'description', label: 'Description' },
{ key: 'fields_count', label: 'Fields', format: 'number' },
{ key: 'asset_count', label: 'Assets', format: 'number' }
]
};
},
computed: {
templateRows() {
return this.templates.map((template) => ({
id: template.id,
name: template.name,
description: template.description,
fields_count: (template.custom_fields || []).length,
asset_count: template.asset_count || 0
}));
}
},
watch: {
templateForm: {
handler(value) {
this.localForm = clonePlain(value);
},
deep: true
}
},
methods: {
addField() {
this.localForm.custom_fields.push({
local_id: fieldId(),
key: '',
label: '',
type: 'text',
required: false,
defaultValue: ''
});
},
syncFieldKey(field) {
if (!field.key) field.key = slugFieldKey(field.label);
},
startNew() {
this.localForm = {
id: null,
name: '',
description: '',
defaults: { category: 'Computer Equipment', useful_life_months: 60, depreciation_method: 'straight_line' },
custom_fields: []
};
},
editTemplate(row) {
const template = this.templates.find((item) => item.id === row.id);
if (!template) return;
this.localForm = {
id: template.id,
name: template.name,
description: template.description || '',
defaults: {
category: 'Computer Equipment',
useful_life_months: 60,
depreciation_method: 'straight_line',
...(template.defaults || {})
},
custom_fields: (template.custom_fields || []).map((f) => ({
local_id: fieldId(),
key: f.key || '',
label: f.label || '',
type: f.type || 'text',
required: Boolean(f.required),
defaultValue: f.defaultValue ?? f.default ?? ''
}))
};
if (typeof window !== 'undefined') window.scrollTo({ top: 0, behavior: 'smooth' });
},
confirmDelete(row) {
this.deleteTarget = row;
this.deleteDialog = true;
},
performDelete() {
if (this.deleteTarget) this.$emit('delete-template', this.deleteTarget.id);
this.deleteDialog = false;
this.deleteTarget = null;
}
}
};
</script>
<style scoped>
.delete-impact {
padding-left: 20px;
line-height: 1.6;
}
.delete-impact li {
margin-bottom: 4px;
}
</style>