Some checks failed
Consolidate User.role (2-value: admin/store) + User.is_super_admin (boolean) into a single 4-value UserRole enum: super_admin, platform_admin, merchant_owner, store_member. Drop stale StoreUser.user_type column. Fix role="user" bug in merchant creation. Key changes: - Expand UserRole enum from 2 to 4 values with computed properties (is_admin, is_super_admin, is_platform_admin, is_merchant_owner, is_store_user) - Add Alembic migration (tenancy_003) for data migration + column drops - Remove is_super_admin from JWT token payload - Update all auth dependencies, services, routes, templates, JS, and tests - Update all RBAC documentation 66 files changed, 1219 unit tests passing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
193 lines
7.3 KiB
JavaScript
193 lines
7.3 KiB
JavaScript
// noqa: js-006 - async init pattern is safe, loadData has try/catch
|
|
// static/admin/js/admin-user-detail.js
|
|
|
|
// Create custom logger for admin user detail
|
|
const adminUserDetailLog = window.LogConfig.createLogger('ADMIN-USER-DETAIL');
|
|
|
|
function adminUserDetailPage() {
|
|
return {
|
|
// Inherit base layout functionality from init-alpine.js
|
|
...data(),
|
|
|
|
// Admin user detail page specific state
|
|
currentPage: 'admin-users',
|
|
adminUser: null,
|
|
loading: false,
|
|
saving: false,
|
|
error: null,
|
|
userId: null,
|
|
currentUserId: null,
|
|
showToggleStatusModal: false,
|
|
showDeleteModal: false,
|
|
showDeleteFinalModal: false,
|
|
|
|
// Initialize
|
|
async init() {
|
|
// Load i18n translations
|
|
await I18n.loadModule('tenancy');
|
|
|
|
adminUserDetailLog.info('=== ADMIN USER DETAIL PAGE INITIALIZING ===');
|
|
|
|
// Prevent multiple initializations
|
|
if (window._adminUserDetailInitialized) {
|
|
adminUserDetailLog.warn('Admin user detail page already initialized, skipping...');
|
|
return;
|
|
}
|
|
window._adminUserDetailInitialized = true;
|
|
|
|
// Get current user ID
|
|
this.currentUserId = this.adminProfile?.id || null;
|
|
|
|
// Get user ID from URL
|
|
const path = window.location.pathname;
|
|
const match = path.match(/\/admin\/admin-users\/(\d+)$/);
|
|
|
|
if (match) {
|
|
this.userId = match[1];
|
|
adminUserDetailLog.info('Viewing admin user:', this.userId);
|
|
await this.loadAdminUser();
|
|
} else {
|
|
adminUserDetailLog.error('No user ID in URL');
|
|
this.error = 'Invalid admin user URL';
|
|
Utils.showToast(I18n.t('tenancy.messages.invalid_admin_user_url'), 'error');
|
|
}
|
|
|
|
adminUserDetailLog.info('=== ADMIN USER DETAIL PAGE INITIALIZATION COMPLETE ===');
|
|
},
|
|
|
|
// Load admin user data
|
|
async loadAdminUser() {
|
|
adminUserDetailLog.info('Loading admin user details...');
|
|
this.loading = true;
|
|
this.error = null;
|
|
|
|
try {
|
|
const url = `/admin/admin-users/${this.userId}`;
|
|
window.LogConfig.logApiCall('GET', url, null, 'request');
|
|
|
|
const startTime = performance.now();
|
|
const response = await apiClient.get(url);
|
|
const duration = performance.now() - startTime;
|
|
|
|
window.LogConfig.logApiCall('GET', url, response, 'response');
|
|
window.LogConfig.logPerformance('Load Admin User Details', duration);
|
|
|
|
// Transform API response to expected format
|
|
this.adminUser = {
|
|
...response,
|
|
platforms: (response.platform_assignments || []).map(pa => ({
|
|
id: pa.platform_id,
|
|
code: pa.platform_code,
|
|
name: pa.platform_name
|
|
})),
|
|
full_name: [response.first_name, response.last_name].filter(Boolean).join(' ') || null
|
|
};
|
|
|
|
adminUserDetailLog.info(`Admin user loaded in ${duration}ms`, {
|
|
id: this.adminUser.id,
|
|
username: this.adminUser.username,
|
|
role: this.adminUser.role,
|
|
is_active: this.adminUser.is_active
|
|
});
|
|
adminUserDetailLog.debug('Full admin user data:', this.adminUser);
|
|
|
|
} catch (error) {
|
|
window.LogConfig.logError(error, 'Load Admin User Details');
|
|
this.error = error.message || 'Failed to load admin user details';
|
|
Utils.showToast(I18n.t('tenancy.messages.failed_to_load_admin_user_details'), 'error');
|
|
} finally {
|
|
this.loading = false;
|
|
}
|
|
},
|
|
|
|
// Format date
|
|
formatDate(dateString) {
|
|
if (!dateString) {
|
|
return '-';
|
|
}
|
|
return Utils.formatDate(dateString);
|
|
},
|
|
|
|
// Toggle admin user status
|
|
async toggleStatus() {
|
|
const action = this.adminUser.is_active ? 'deactivate' : 'activate';
|
|
adminUserDetailLog.info(`Toggle status: ${action}`);
|
|
|
|
// Prevent self-deactivation
|
|
if (this.adminUser.id === this.currentUserId) {
|
|
Utils.showToast(I18n.t('tenancy.messages.you_cannot_deactivate_your_own_account'), 'error');
|
|
return;
|
|
}
|
|
|
|
this.saving = true;
|
|
try {
|
|
const url = `/admin/admin-users/${this.userId}/status`;
|
|
window.LogConfig.logApiCall('PUT', url, null, 'request');
|
|
|
|
const response = await apiClient.put(url);
|
|
|
|
window.LogConfig.logApiCall('PUT', url, response, 'response');
|
|
|
|
this.adminUser.is_active = response.is_active;
|
|
Utils.showToast(`Admin user ${action}d successfully`, 'success');
|
|
adminUserDetailLog.info(`Admin user ${action}d successfully`);
|
|
|
|
} catch (error) {
|
|
window.LogConfig.logError(error, `Toggle Status (${action})`);
|
|
Utils.showToast(error.message || `Failed to ${action} admin user`, 'error');
|
|
} finally {
|
|
this.saving = false;
|
|
}
|
|
},
|
|
|
|
// Intermediate step for double-confirm delete
|
|
confirmDeleteStep() {
|
|
adminUserDetailLog.info('First delete confirmation accepted, showing final confirmation');
|
|
this.showDeleteFinalModal = true;
|
|
},
|
|
|
|
// Delete admin user
|
|
async deleteAdminUser() {
|
|
adminUserDetailLog.info('Delete admin user requested:', this.userId);
|
|
|
|
// Prevent self-deletion
|
|
if (this.adminUser.id === this.currentUserId) {
|
|
Utils.showToast(I18n.t('tenancy.messages.you_cannot_delete_your_own_account'), 'error');
|
|
return;
|
|
}
|
|
|
|
this.saving = true;
|
|
try {
|
|
const url = `/admin/admin-users/${this.userId}`;
|
|
window.LogConfig.logApiCall('DELETE', url, null, 'request');
|
|
|
|
await apiClient.delete(url);
|
|
|
|
window.LogConfig.logApiCall('DELETE', url, null, 'response');
|
|
|
|
Utils.showToast(I18n.t('tenancy.messages.admin_user_deleted_successfully'), 'success');
|
|
adminUserDetailLog.info('Admin user deleted successfully');
|
|
|
|
// Redirect to admin users list
|
|
setTimeout(() => window.location.href = '/admin/admin-users', 1500);
|
|
|
|
} catch (error) {
|
|
window.LogConfig.logError(error, 'Delete Admin User');
|
|
Utils.showToast(error.message || 'Failed to delete admin user', 'error');
|
|
} finally {
|
|
this.saving = false;
|
|
}
|
|
},
|
|
|
|
// Refresh admin user data
|
|
async refresh() {
|
|
adminUserDetailLog.info('=== ADMIN USER REFRESH TRIGGERED ===');
|
|
await this.loadAdminUser();
|
|
Utils.showToast(I18n.t('tenancy.messages.admin_user_details_refreshed'), 'success');
|
|
adminUserDetailLog.info('=== ADMIN USER REFRESH COMPLETE ===');
|
|
}
|
|
};
|
|
}
|
|
|
|
adminUserDetailLog.info('Admin user detail module loaded');
|