5aa3d595ad
Tre cose che prima non erano di nessuno diventano regole della ricetta, decise da chi la scrive e fatte valere dal server. Punto 8 — tracciabilita' obbligatoria. Lotto e seriale si dichiarano obbligatori sulla ricetta. L'operatore li inserisce alla selezione, dove il pulsante non si attiva finche' mancano, e la stessa regola vale sulla lista task, raggiungibile anche per link diretto, e sul barcode: uno sbarramento che dura solo finche' qualcuno prende in mano il lettore non e' uno sbarramento. La produzione non si apre e la misura non si salva senza cio' che la ricetta pretende, perche' un valore senza il suo lotto non e' riconducibile a niente, e accorgersene dopo significa accorgersene tardi. Punto 9 — inserimento manuale. Una ricetta puo' vietare i valori digitati, ed e' il valore predefinito: il calibro e' lo strumento, digitare e' cio' che va concesso. Dove e' vietato il tastierino non viene disegnato (non nascosto con i CSS: il markup nascosto e' markup che si puo' rimostrare) e restano correzione e conferma, perche' una lettura sbagliata va cancellata. Il controllo vero e' sul server: una regola che vive solo nel frontend e' un consiglio. Migliorato al passaggio il riconoscimento del calibro. Contava solo la raffica di cifre, cosi' una lettura corta come "9.5" — tre battute — finiva registrata come digitata a mano; ora conta anche l'Invio che il wedge manda dentro la stessa raffica. Senza questa correzione il divieto avrebbe respinto misure legittime. Punto 11 — formattazione delle descrizioni. A capo e grassetto sopravvivono: chi scrive le ricette incolla dal PDF della scheda tecnica e il testo arrivava appiattito, da risistemare a mano ogni volta. Nessun HTML viene accettato o salvato — il testo viene escapato e gli unici tag nel risultato sono quelli prodotti dal renderer. La sanificazione e' questa: non c'e' niente da sanificare perche' non si accetta niente. Le stesse due regole in Jinja e in JS, cosi' una descrizione si legge uguale ovunque. E la descrizione ora si vede anche in esecuzione: era scritta per l'operatore e la vedeva solo chi la scriveva. Migrazione 009: tre colonne sulla ricetta. Le due di tracciabilita' partono false, che e' il comportamento di oggi; l'inserimento manuale parte *vero* sulle ricette gia' esistenti — il default della colonna e' falso, quindi le ricette nuove sono solo-calibro, ma spegnerlo d'ufficio su quelle in uso fermerebbe una linea alla misura successiva. Chi possiede la ricetta lo decide dall'editor. Test: +26 (291). Coprono il rifiuto sul server per lotto, seriale e valore digitato, il calibro sempre ammesso, le regole che sopravvivono alla nuova versione, il tastierino assente in pagina, l'Avvia sbarrato, e il renderer delle descrizioni compreso il caso in cui si prova a farci passare un tag. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
268 lines
7.7 KiB
JavaScript
268 lines
7.7 KiB
JavaScript
/**
|
|
* Numpad Component - Alpine.js component for touch-friendly numeric input
|
|
* Used for measurement data entry in task_execute.html
|
|
*/
|
|
|
|
function numpad(options) {
|
|
var opts = options || {};
|
|
|
|
return {
|
|
// State
|
|
value: '', // String representation of the current value
|
|
negative: false, // Whether the value is negative
|
|
hasDecimal: false, // Whether a decimal point has been entered
|
|
unit: 'mm', // Unit of measurement (can be set externally)
|
|
maxIntDigits: 6, // Maximum integer digits
|
|
maxDecDigits: 6, // Maximum decimal digits
|
|
|
|
/* Whether a value may be typed at all, as the recipe declares it. When false
|
|
the keypad shows no digits and a value that looks typed is refused here as
|
|
well as by the server: the caliper is the instrument. Defaults to allowed,
|
|
so a caller that says nothing gets the behaviour that came before. */
|
|
allowManual: opts.allowManual !== false,
|
|
|
|
// HID burst detection (USB caliper vs manual typing)
|
|
_lastKeyTime: 0, // Timestamp of last keystroke
|
|
_burstCount: 0, // Consecutive fast keystrokes
|
|
_enterWasFast: false, // Enter arrived in the same burst as the digits
|
|
|
|
/**
|
|
* Get the display value with sign
|
|
*/
|
|
get displayValue() {
|
|
if (!this.value) return '';
|
|
return (this.negative ? '-' : '') + this.value;
|
|
},
|
|
|
|
/**
|
|
* Get the numeric value as a number
|
|
*/
|
|
get numericValue() {
|
|
if (!this.value) return null;
|
|
const v = parseFloat(this.value);
|
|
return this.negative ? -v : v;
|
|
},
|
|
|
|
/**
|
|
* Check if a valid value has been entered
|
|
*/
|
|
get hasValue() {
|
|
return this.value.length > 0 && this.value !== '.';
|
|
},
|
|
|
|
/**
|
|
* Add a digit to the current value
|
|
* @param {string} d - The digit to add (0-9)
|
|
*/
|
|
addDigit(d) {
|
|
// Validate: don't exceed max digits
|
|
const parts = this.value.split('.');
|
|
|
|
if (this.hasDecimal) {
|
|
// Check decimal part length
|
|
if (parts[1] && parts[1].length >= this.maxDecDigits) return;
|
|
} else {
|
|
// Check integer part length
|
|
if (parts[0] && parts[0].length >= this.maxIntDigits) return;
|
|
}
|
|
|
|
// Prevent leading zeros (except "0.")
|
|
if (this.value === '0' && d !== '.') {
|
|
this.value = d;
|
|
return;
|
|
}
|
|
|
|
this.value += d;
|
|
},
|
|
|
|
/**
|
|
* Add a decimal point to the current value
|
|
*/
|
|
addDecimal() {
|
|
// Don't add decimal if one already exists
|
|
if (this.hasDecimal) return;
|
|
|
|
// If value is empty, start with "0."
|
|
if (!this.value) this.value = '0';
|
|
|
|
this.value += '.';
|
|
this.hasDecimal = true;
|
|
},
|
|
|
|
/**
|
|
* Toggle the sign of the current value
|
|
*/
|
|
toggleSign() {
|
|
if (!this.value) return;
|
|
this.negative = !this.negative;
|
|
},
|
|
|
|
/**
|
|
* Remove the last character from the current value
|
|
*/
|
|
backspace() {
|
|
if (!this.value) return;
|
|
|
|
const removed = this.value.charAt(this.value.length - 1);
|
|
|
|
// If removing decimal point, update flag
|
|
if (removed === '.') this.hasDecimal = false;
|
|
|
|
this.value = this.value.slice(0, -1);
|
|
},
|
|
|
|
/**
|
|
* Clear all entered data
|
|
*/
|
|
clearAll() {
|
|
this.value = '';
|
|
this.negative = false;
|
|
this.hasDecimal = false;
|
|
this._enterWasFast = false;
|
|
},
|
|
|
|
/**
|
|
* How the value in the display got there.
|
|
*
|
|
* A wedge caliper sends its digits and the Enter that follows them as one
|
|
* burst; a person is slower on both. The Enter is the stronger of the two
|
|
* signals: a short reading like "9.5" is only three keystrokes, too few to
|
|
* judge by count alone, and used to be filed as typed by hand.
|
|
*/
|
|
_classifyInput() {
|
|
if (this._enterWasFast) return 'usb_caliper';
|
|
return this._burstCount >= 3 ? 'usb_caliper' : 'manual';
|
|
},
|
|
|
|
/**
|
|
* Confirm the current value and dispatch event
|
|
*/
|
|
confirm() {
|
|
if (!this.hasValue) return;
|
|
|
|
const val = this.numericValue;
|
|
const inputMethod = this._classifyInput();
|
|
|
|
// The recipe forbids typing: say so and keep the value on screen rather than
|
|
// clearing it, so the operator sees what was refused. The server refuses the
|
|
// same request anyway - this is only the earlier, kinder of the two answers.
|
|
if (inputMethod === 'manual' && !this.allowManual) {
|
|
this.$dispatch('numpad-rejected', { reason: 'manual_not_allowed', value: val });
|
|
this._enterWasFast = false;
|
|
this._burstCount = 0;
|
|
this._lastKeyTime = 0;
|
|
return;
|
|
}
|
|
|
|
// Dispatch custom event for parent component to handle
|
|
this.$dispatch('numpad-confirm', { value: val, inputMethod: inputMethod });
|
|
|
|
// Reset after confirmation
|
|
this.clearAll();
|
|
this._burstCount = 0;
|
|
this._lastKeyTime = 0;
|
|
},
|
|
|
|
/**
|
|
* Set a value programmatically (e.g., from USB caliper)
|
|
* @param {number} val - The numeric value to set
|
|
*/
|
|
setValue(val) {
|
|
this.clearAll();
|
|
|
|
// Handle negative values
|
|
if (val < 0) {
|
|
this.negative = true;
|
|
val = Math.abs(val);
|
|
}
|
|
|
|
this.value = val.toString();
|
|
|
|
// Update decimal flag if value contains decimal point
|
|
if (this.value.includes('.')) this.hasDecimal = true;
|
|
},
|
|
|
|
/**
|
|
* Set the unit of measurement
|
|
* @param {string} newUnit - The unit to set (e.g., 'mm', 'cm', 'in')
|
|
*/
|
|
setUnit(newUnit) {
|
|
this.unit = newUnit;
|
|
},
|
|
|
|
/**
|
|
* Handle keyboard input for physical keyboard support
|
|
* @param {KeyboardEvent} e - The keyboard event
|
|
*/
|
|
handleKeydown(e) {
|
|
// Ignore keystrokes aimed at an editable field (e.g. the supervisor
|
|
// login modal). The numpad has no text inputs of its own, so this
|
|
// window-level capture is only meant for the USB caliper / keyboard
|
|
// wedge when no field is focused. Without this guard the numpad would
|
|
// swallow digits and Backspace inside those inputs.
|
|
const t = e.target;
|
|
if (t && (t.tagName === 'INPUT' || t.tagName === 'TEXTAREA' ||
|
|
t.tagName === 'SELECT' || t.isContentEditable)) {
|
|
return;
|
|
}
|
|
|
|
// Number keys
|
|
if (e.key >= '0' && e.key <= '9') {
|
|
e.preventDefault();
|
|
this._trackBurst();
|
|
this.addDigit(e.key);
|
|
}
|
|
// Decimal point (both . and ,)
|
|
else if (e.key === '.' || e.key === ',') {
|
|
e.preventDefault();
|
|
this._trackBurst();
|
|
this.addDecimal();
|
|
}
|
|
// Backspace
|
|
else if (e.key === 'Backspace') {
|
|
e.preventDefault();
|
|
this.backspace();
|
|
}
|
|
// Escape - clear all
|
|
else if (e.key === 'Escape') {
|
|
e.preventDefault();
|
|
this.clearAll();
|
|
}
|
|
// Enter - confirm
|
|
else if (e.key === 'Enter') {
|
|
e.preventDefault();
|
|
// Measured before confirming: an Enter that lands within the burst is the
|
|
// caliper closing its own transmission, not a person reaching for a key.
|
|
const gap = this._lastKeyTime > 0
|
|
? performance.now() - this._lastKeyTime
|
|
: Infinity;
|
|
this._enterWasFast = gap < 80;
|
|
this.confirm();
|
|
}
|
|
// Minus sign - toggle sign
|
|
else if (e.key === '-') {
|
|
e.preventDefault();
|
|
this.toggleSign();
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Track keystroke timing for HID burst detection.
|
|
* USB calipers send digits in rapid succession (<80ms apart).
|
|
* Human typing is much slower (>100ms between keys).
|
|
*/
|
|
_trackBurst() {
|
|
const now = performance.now();
|
|
const gap = now - this._lastKeyTime;
|
|
|
|
if (this._lastKeyTime > 0 && gap < 80) {
|
|
this._burstCount++;
|
|
} else {
|
|
this._burstCount = 1;
|
|
}
|
|
|
|
this._lastKeyTime = now;
|
|
}
|
|
};
|
|
}
|