Operators reported losing a part-filled form by clicking slightly outside it. Every data-entry modal closed on a backdrop click with no warning and no way back - the worst possible response to a misplaced click, and it happens most to someone adding their first records at a new site. Close-on-overlay is removed from 35 modals across 30 files: anything containing an input, textarea, select or v-model. They still close by Cancel or the X. Confirmation dialogs keep it, because a delete prompt holds nothing to lose and dismissing one by clicking away is the behaviour people expect. VendorsList shows the distinction - its edit form no longer closes that way, its delete confirmation still does. The shared Modal component now defaults closeOnOverlay to FALSE. Every current caller holds a form, a checkout, a stock adjustment or a map position being picked, and not one passed the prop, so all of them had the same fault. A modal that genuinely wants dismissing that way opts in explicitly. Also regroups the operator console menu, which had grown to numbers 1-9 plus three letters bolted on with no order to them. Actions are now grouped by what they touch, keyed by their first letter, and the old numbers still work so nobody who has used it for months is stopped by a rearrangement. The menu also warns when the server is not fully provisioned and names the key that fixes it, instead of reporting it as ordinary status lines that read as normal unless you already knew what to look for. That check is cached for the session because it shells out to flask twice and the answer does not change while somebody reads the screen.
187 lines
6.7 KiB
Vue
187 lines
6.7 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">
|
|
<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>
|