929ee6557a
- Add base app structure, including Bootstrap setup and Alpine.js integration. - Implement authentication flow with session handling. - Integrate stock management and label creation functionalities. - Include responsive styling and theme using CSS variables and custom components. - Add API clients for Tryton-based backend. - Set up kitchen and dashboard navigation workflows. - Configure service worker for PWA support.
21 lines
435 B
JavaScript
21 lines
435 B
JavaScript
export function fieldError(errors, field) {
|
|
return errors[field] || '';
|
|
}
|
|
|
|
export function normalizeValidationError(error) {
|
|
if (error?.details && typeof error.details === 'object') {
|
|
return error.details;
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
export function debounce(callback, wait = 300) {
|
|
let timeoutId;
|
|
|
|
return (...args) => {
|
|
window.clearTimeout(timeoutId);
|
|
timeoutId = window.setTimeout(() => callback(...args), wait);
|
|
};
|
|
}
|