fix: resolve JS-006 and JS-007 architecture violations

- Add loading: false to 5 components for JS-007 compliance
- Add try/catch to async init() functions for JS-006 compliance
- Remove noqa comments from company-edit, vendor-edit, user-edit

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-31 21:46:22 +01:00
parent 1743b2bddf
commit 7aef110cac
5 changed files with 59 additions and 42 deletions

View File

@@ -1,4 +1,3 @@
// noqa: js-006 - async init pattern is safe, loadData has try/catch
// static/admin/js/user-edit.js
// Create custom logger for user edit
@@ -11,6 +10,7 @@ function adminUserEdit() {
// User edit page specific state
currentPage: 'user-edit',
loading: false,
user: null,
formData: {},
errors: {},
@@ -29,21 +29,26 @@ function adminUserEdit() {
}
window._userEditInitialized = true;
// Get user ID from URL
const path = window.location.pathname;
const match = path.match(/\/admin\/users\/(\d+)\/edit/);
try {
// Get user ID from URL
const path = window.location.pathname;
const match = path.match(/\/admin\/users\/(\d+)\/edit/);
if (match) {
this.userId = parseInt(match[1], 10);
userEditLog.info('Editing user:', this.userId);
await this.loadUser();
} else {
userEditLog.error('No user ID in URL');
Utils.showToast('Invalid user URL', 'error');
setTimeout(() => window.location.href = '/admin/users', 2000);
if (match) {
this.userId = parseInt(match[1], 10);
userEditLog.info('Editing user:', this.userId);
await this.loadUser();
} else {
userEditLog.error('No user ID in URL');
Utils.showToast('Invalid user URL', 'error');
setTimeout(() => window.location.href = '/admin/users', 2000);
}
userEditLog.info('=== USER EDIT PAGE INITIALIZATION COMPLETE ===');
} catch (error) {
window.LogConfig.logError(error, 'User Edit Init');
Utils.showToast('Failed to initialize page', 'error');
}
userEditLog.info('=== USER EDIT PAGE INITIALIZATION COMPLETE ===');
},
// Load user data