Framework: - Per-plugin Alembic migration chains (ADR-008): every bundled plugin carries its own chain with a stamp-only anchor at the ownership cutover; new plugin schema lands in plugins/<name>/migrations/, never the core chain. Deploys add flask plugin upgrade-all. Fixed a latent bug in the shared alembic template (engine URL resolution) and taught the metadata filter to include FK-referenced core tables. - Frontend plugin route gating (ADR-009): plugin routes carry meta.plugin; a disabled plugin's pages redirect to the dashboard via a cached, fail-open check against the new public GET /api/plugins/enabled. - get_reports() plugin hook (contract 0.5.0 -> 0.6.0): plugins contribute report cards; warranty and toner cards moved off the hardcoded list. Reports: - Hub grouped by category with search; inline reports render at the top, are URL-backed (?report=id, back-button and deep links work), expose their server-side filter params as controls, and export CSV. Warranty and Toner pages gained CSV export. - Deleted the dead legacy Warranty Status report (always-zero buckets from a retired column). Theming and fonts: - Inter (variable) bundled locally via @fontsource, replacing the Google Fonts Roboto import - air-gapped installs now render correctly; tables use tabular numerals. - Optional brand_primary_dark_color, brand_accent_color, brand_sidebar_color settings applied to CSS vars at bootstrap. USB frontend repair (views were reading a dead legacy shape): - List/detail/form and the employee profile USB panels remapped to the real API shape (device_id/device_desc/checkinoutlog); employee panels now use /usb/checkouts endpoints; external-mode /usb/checkouts/active honors the badge filter; dead client methods pruned. Also: warranties list page no longer requires login (matches app convention); collector doc rewritten with a GE-Enforce integration guide and paste-ready PowerShell reporter; ADR index and CHANGELOG updated. Verified: 323 tests pass, naming/style green, frontend builds, plugin migration dry-run green on scratch MySQL. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
287 lines
8.0 KiB
Vue
287 lines
8.0 KiB
Vue
<template>
|
|
<div class="detail-page">
|
|
<div class="page-header">
|
|
<h2>USB Device Details</h2>
|
|
<div class="header-actions">
|
|
<router-link to="/usb" class="btn btn-secondary">Back to List</router-link>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-if="loading" class="loading">Loading...</div>
|
|
|
|
<template v-else-if="device">
|
|
<!-- Hero Section -->
|
|
<div class="hero-card">
|
|
<div class="hero-content">
|
|
<div class="hero-title">
|
|
<h1>{{ device.device_desc || device.device_id }}</h1>
|
|
</div>
|
|
<div class="hero-meta">
|
|
<span class="badge badge-lg" :class="device.status === 'checked-out' ? 'badge-warning' : 'badge-success'">
|
|
{{ device.status === 'checked-out' ? 'Checked Out' : 'Available' }}
|
|
</span>
|
|
</div>
|
|
<div class="hero-details">
|
|
<div class="hero-detail" v-if="device.device_id">
|
|
<span class="hero-detail-label">Serial Number</span>
|
|
<span class="hero-detail-value mono">{{ device.device_id }}</span>
|
|
</div>
|
|
<div class="hero-detail" v-if="device.locker_location">
|
|
<span class="hero-detail-label">Locker Location</span>
|
|
<span class="hero-detail-value">{{ device.locker_location }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Action Buttons -->
|
|
<div class="action-buttons">
|
|
<button
|
|
v-if="device.status !== 'checked-out'"
|
|
class="btn btn-primary btn-lg"
|
|
@click="openCheckoutModal"
|
|
>
|
|
Checkout Device
|
|
</button>
|
|
<button
|
|
v-else
|
|
class="btn btn-warning btn-lg"
|
|
@click="openCheckinModal"
|
|
>
|
|
Check In Device
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Current Checkout Info -->
|
|
<div class="section-card" v-if="device.status === 'checked-out'">
|
|
<h3 class="section-title">Current Checkout</h3>
|
|
<div class="info-list">
|
|
<div class="info-row">
|
|
<span class="info-label">Checked Out By</span>
|
|
<span class="info-value">{{ device.current_holder_name || device.current_holder }}</span>
|
|
</div>
|
|
<div class="info-row">
|
|
<span class="info-label">Checkout Time</span>
|
|
<span class="info-value">{{ formatDate(device.checkout_time) }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Check-in/out Log -->
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3>Checkout History</h3>
|
|
</div>
|
|
|
|
<div v-if="!device.checkinoutlog?.length" class="empty-state">
|
|
No checkout history
|
|
</div>
|
|
|
|
<div v-else class="table-container">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Action</th>
|
|
<th>User</th>
|
|
<th>Time</th>
|
|
<th>Sanitized</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="entry in device.checkinoutlog" :key="entry.log_id">
|
|
<td>{{ entry.action === 'check-in' ? 'Check In' : 'Check Out' }}</td>
|
|
<td>{{ entry.badge_name || entry.badge_number }}</td>
|
|
<td>{{ formatDate(entry.timestamp) }}</td>
|
|
<td>
|
|
<span v-if="entry.action === 'check-in'">{{ entry.sanitized ? 'Yes' : 'No' }}</span>
|
|
<span v-else>-</span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<div v-else class="card">
|
|
<p style="text-align: center; color: var(--text-light);">USB device not found</p>
|
|
</div>
|
|
|
|
<!-- Checkout Modal -->
|
|
<Modal v-if="showCheckoutModal" @close="closeModals">
|
|
<template #header>
|
|
<h3>Checkout USB Device</h3>
|
|
</template>
|
|
<template #body>
|
|
<div class="form-group">
|
|
<label>Your SSO *</label>
|
|
<input v-model="checkoutForm.sso" type="text" class="form-control" placeholder="Enter your SSO" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Reason</label>
|
|
<textarea v-model="checkoutForm.reason" class="form-control" rows="3" placeholder="Why do you need this device?"></textarea>
|
|
</div>
|
|
</template>
|
|
<template #footer>
|
|
<button class="btn btn-secondary" @click="closeModals">Cancel</button>
|
|
<button class="btn btn-primary" @click="doCheckout" :disabled="!checkoutForm.sso">Checkout</button>
|
|
</template>
|
|
</Modal>
|
|
|
|
<!-- Checkin Modal -->
|
|
<Modal v-if="showCheckinModal" @close="closeModals">
|
|
<template #header>
|
|
<h3>Check In USB Device</h3>
|
|
</template>
|
|
<template #body>
|
|
<div class="form-group">
|
|
<label class="checkbox-label">
|
|
<input type="checkbox" v-model="checkinForm.waswiped" />
|
|
Device was wiped
|
|
</label>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Notes</label>
|
|
<textarea v-model="checkinForm.notes" class="form-control" rows="3" placeholder="Any notes about this return?"></textarea>
|
|
</div>
|
|
</template>
|
|
<template #footer>
|
|
<button class="btn btn-secondary" @click="closeModals">Cancel</button>
|
|
<button class="btn btn-primary" @click="doCheckin">Check In</button>
|
|
</template>
|
|
</Modal>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, onMounted } from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
import { usbApi } from '../../api'
|
|
import Modal from '../../components/Modal.vue'
|
|
import { useToast } from '../../composables/toast'
|
|
import { apiError } from '../../utils/apiError'
|
|
const toast = useToast()
|
|
|
|
const route = useRoute()
|
|
|
|
const loading = ref(true)
|
|
const device = ref(null)
|
|
|
|
const showCheckoutModal = ref(false)
|
|
const showCheckinModal = ref(false)
|
|
const checkoutForm = ref({ sso: '', reason: '' })
|
|
const checkinForm = ref({ waswiped: false, notes: '' })
|
|
|
|
onMounted(async () => {
|
|
await loadDevice()
|
|
})
|
|
|
|
async function loadDevice() {
|
|
loading.value = true
|
|
try {
|
|
const response = await usbApi.get(route.params.id)
|
|
device.value = response.data.data
|
|
} catch (error) {
|
|
console.error('Error loading USB device:', error)
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
function openCheckoutModal() {
|
|
checkoutForm.value = { sso: '', reason: '' }
|
|
showCheckoutModal.value = true
|
|
}
|
|
|
|
function openCheckinModal() {
|
|
checkinForm.value = { waswiped: false, notes: '' }
|
|
showCheckinModal.value = true
|
|
}
|
|
|
|
function closeModals() {
|
|
showCheckoutModal.value = false
|
|
showCheckinModal.value = false
|
|
}
|
|
|
|
async function doCheckout() {
|
|
try {
|
|
// The SSO the operator enters is the badge; API resolves the name.
|
|
await usbApi.checkout(device.value.device_id, {
|
|
badge: checkoutForm.value.sso,
|
|
reason: checkoutForm.value.reason
|
|
})
|
|
closeModals()
|
|
await loadDevice()
|
|
} catch (error) {
|
|
console.error('Checkout error:', error)
|
|
toast.error(apiError(error, 'Checkout failed'))
|
|
}
|
|
}
|
|
|
|
async function doCheckin() {
|
|
try {
|
|
// Check the current holder back in; sanitized mirrors the wiped checkbox.
|
|
await usbApi.checkin(device.value.device_id, {
|
|
badge: device.value.current_holder,
|
|
sanitized: checkinForm.value.waswiped,
|
|
notes: checkinForm.value.notes
|
|
})
|
|
closeModals()
|
|
await loadDevice()
|
|
} catch (error) {
|
|
console.error('Checkin error:', error)
|
|
toast.error(apiError(error, 'Check in failed'))
|
|
}
|
|
}
|
|
|
|
function formatDate(dateStr) {
|
|
if (!dateStr) return '-'
|
|
return new Date(dateStr).toLocaleString()
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.action-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.btn-lg {
|
|
padding: 0.75rem 1.5rem;
|
|
font-size: 1.125rem;
|
|
}
|
|
|
|
.empty-state {
|
|
text-align: center;
|
|
color: var(--text-light);
|
|
padding: 2rem;
|
|
}
|
|
|
|
.checkbox-label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.checkbox-label input[type="checkbox"] {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.mono {
|
|
font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
|
|
}
|
|
</style>
|