Relocate warranty, measuringtools, network, printers, usb, notifications, computers, and slides into plugins/<name>/frontend/. Each plugin's views are pulled from wherever they lived (own dir, plus the shared views/settings/, views/reports/, views/print/ dirs, and top-level views) into the plugin's frontend/views/, and its route file becomes the self-contained routes.js. Handled the messy cases: - computers: name mismatch (its views live in views/pcs/) - moved by following the route file's own imports, so the dir name did not matter. Its OS/access- protocol/PC-type settings views move with it (only computers.js routed them). - network: NetworkHub's sibling sub-views (NetworkDevicesList, SubnetsBrowse, not directly routed) moved too so its `./` imports resolve. - printers: the qrLogo helper is SHARED with core AssetLabel, so it stays in views/print/ and PrinterQR imports it via @/views/print/qrLogo. - slides: route file is toplevel-only (TVDashboard); SlideManager stays core (core.js routes /settings/slides). frontend/src/views/ now holds only core views; frontend/src/router/routes/ holds only core.js. All 13 plugins are self-contained under plugins/<name>/frontend/. Verified live: Network (hub + moved sub-views), Computers (name mismatch), GE-Enforce (helper), printedparts all render from their staged frontends. Build + 58 vitest + naming green.
187 lines
6.8 KiB
Vue
187 lines
6.8 KiB
Vue
<template>
|
|
<div>
|
|
<div class="page-header">
|
|
<h2>Printer Drivers</h2>
|
|
<label class="show-inactive"><input type="checkbox" v-model="showInactive" /> Show inactive</label>
|
|
<button class="btn btn-primary" @click="openModal()">+ Add Driver</button>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<p class="hint">
|
|
Each driver is a name + a link to the driver package - an SMB path
|
|
(<code>\\server\share\driver</code>) or an HTTP URL. HTTP links open;
|
|
SMB paths are shown for copy-paste (browsers block file:// SMB).
|
|
</p>
|
|
<div v-if="loading" class="muted">Loading...</div>
|
|
<template v-else>
|
|
<div class="table-container">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Printer Model</th>
|
|
<th>Location</th>
|
|
<th>Description</th>
|
|
<th>Active</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="d in visibleItems" :key="d.driverid">
|
|
<td><strong>{{ d.name }}</strong></td>
|
|
<td>{{ d.modelname || '-' }}</td>
|
|
<td>
|
|
<a v-if="isHttp(d.location)" :href="d.location" target="_blank" class="mono">{{ d.location }}</a>
|
|
<span v-else class="mono">{{ d.location }}</span>
|
|
</td>
|
|
<td class="cell-truncate" :title="d.description">{{ d.description || '-' }}</td>
|
|
<td>
|
|
<span class="badge" :class="d.isactive ? 'badge-success' : 'badge-secondary'">{{ d.isactive ? 'yes' : 'no' }}</span>
|
|
</td>
|
|
<td class="actions">
|
|
<button class="btn btn-secondary btn-sm" @click="openModal(d)">Edit</button>
|
|
<button class="btn btn-danger btn-sm" @click="deleteDriver(d)">Delete</button>
|
|
</td>
|
|
</tr>
|
|
<tr v-if="visibleItems.length === 0">
|
|
<td colspan="6" style="text-align: center; color: var(--text-light);">No drivers</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
|
|
<div v-if="showModal" class="modal-overlay" @click.self="closeModal">
|
|
<div class="modal">
|
|
<div class="modal-header"><h3>{{ editing ? 'Edit' : 'Add' }} Driver</h3></div>
|
|
<form @submit.prevent="save">
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label>Name *</label>
|
|
<input v-model="form.name" type="text" class="form-control" maxlength="150" required />
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Printer Model <span class="hint">(links driver to a model so it shows on matching printers)</span></label>
|
|
<select v-model="form.modelnumberid" class="form-control">
|
|
<option :value="null">-- none --</option>
|
|
<option v-for="m in models" :key="m.modelnumberid" :value="m.modelnumberid">
|
|
{{ m.modelnumber }}<template v-if="m.vendorname"> ({{ m.vendorname }})</template>
|
|
</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Location * <span class="hint">(SMB path or HTTP URL)</span></label>
|
|
<input v-model="form.location" type="text" class="form-control" maxlength="500"
|
|
placeholder="\\server\share\driver or https://..." required />
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Description</label>
|
|
<textarea v-model="form.description" class="form-control" rows="2"></textarea>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="checkbox-label"><input type="checkbox" v-model="form.isactive" /> Active</label>
|
|
</div>
|
|
<div v-if="error" class="error-message">{{ error }}</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" @click="closeModal">Cancel</button>
|
|
<button type="submit" class="btn btn-primary" :disabled="saving">{{ saving ? 'Saving...' : 'Save' }}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, computed, onMounted } from 'vue'
|
|
import { printersApi } from '@/api'
|
|
import { useToast } from '@/composables/toast'
|
|
import { apiError } from '@/utils/apiError'
|
|
const toast = useToast()
|
|
|
|
const items = ref([])
|
|
const models = ref([])
|
|
const showInactive = ref(false)
|
|
const visibleItems = computed(() => showInactive.value ? items.value : items.value.filter(x => x.isactive !== false))
|
|
const loading = ref(true)
|
|
const showModal = ref(false)
|
|
const editing = ref(null)
|
|
const saving = ref(false)
|
|
const error = ref('')
|
|
const form = ref({ name: '', location: '', description: '', modelnumberid: null, isactive: true })
|
|
|
|
function isHttp(loc) {
|
|
return typeof loc === 'string' && /^https?:\/\//i.test(loc)
|
|
}
|
|
|
|
onMounted(() => { loadData(); loadModels() })
|
|
|
|
async function loadData() {
|
|
loading.value = true
|
|
try {
|
|
const response = await printersApi.drivers.list({ active: false })
|
|
items.value = response.data.data || []
|
|
} catch (err) {
|
|
console.error('Error loading drivers:', err)
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
async function loadModels() {
|
|
try {
|
|
const response = await printersApi.modelSupplies.listModels({ perpage: 100 })
|
|
models.value = response.data.data || []
|
|
} catch (err) {
|
|
console.error('Error loading models:', err)
|
|
}
|
|
}
|
|
|
|
function openModal(item = null) {
|
|
editing.value = item
|
|
form.value = item
|
|
? { name: item.name || '', location: item.location || '', description: item.description || '', modelnumberid: item.modelnumberid || null, isactive: item.isactive !== false }
|
|
: { name: '', location: '', description: '', modelnumberid: null, isactive: true }
|
|
error.value = ''
|
|
showModal.value = true
|
|
}
|
|
|
|
function closeModal() { showModal.value = false; editing.value = null }
|
|
|
|
async function save() {
|
|
error.value = ''
|
|
saving.value = true
|
|
try {
|
|
if (editing.value) {
|
|
await printersApi.drivers.update(editing.value.driverid, form.value)
|
|
} else {
|
|
await printersApi.drivers.create(form.value)
|
|
}
|
|
closeModal()
|
|
loadData()
|
|
} catch (err) {
|
|
error.value = apiError(err, 'Failed to save')
|
|
} finally {
|
|
saving.value = false
|
|
}
|
|
}
|
|
|
|
async function deleteDriver(d) {
|
|
if (!confirm(`Delete driver "${d.name}"?`)) return
|
|
try {
|
|
await printersApi.drivers.delete(d.driverid)
|
|
loadData()
|
|
} catch (err) {
|
|
toast.error(apiError(err, 'Failed to delete'))
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.hint { color: var(--text-light); font-size: 0.9rem; margin: 0 0 14px; }
|
|
.muted { color: var(--text-light); }
|
|
.mono { font-family: monospace; font-size: 0.85rem; word-break: break-all; }
|
|
</style>
|