Spaces:
Runtime error
Runtime error
File size: 10,515 Bytes
afc0068 b25b478 afc0068 7db38a6 afc0068 7db38a6 afc0068 f0004a7 afc0068 f0004a7 afc0068 b25b478 324a397 b25b478 324a397 afc0068 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | /**
* UI Manager Module
* Handles user interface updates, messages, and tree list display
*/
export class UIManager {
constructor(authManager) {
this.authManager = authManager;
}
initialize() {
this.displayUserInfo();
this.loadSelectedLocation();
this.setupDemoUserUI();
}
displayUserInfo() {
if (!this.authManager.currentUser) return;
const userNameEl = document.getElementById('userName');
const userRoleEl = document.getElementById('userRole');
const userAvatarEl = document.getElementById('userAvatar');
if (userNameEl) {
userNameEl.textContent = this.authManager.currentUser.full_name;
}
if (userRoleEl) {
userRoleEl.textContent = this.authManager.currentUser.role;
}
if (userAvatarEl) {
userAvatarEl.textContent = this.authManager.currentUser.full_name.charAt(0).toUpperCase();
}
}
loadSelectedLocation() {
const selectedLocation = localStorage.getItem('selectedLocation');
if (selectedLocation) {
try {
const location = JSON.parse(selectedLocation);
const latElement = document.getElementById('latitude');
const lngElement = document.getElementById('longitude');
if (latElement && lngElement) {
latElement.value = location.lat.toFixed(6);
lngElement.value = location.lng.toFixed(6);
// Clear the stored location
localStorage.removeItem('selectedLocation');
this.showMessage('Location loaded from map!', 'success');
}
} catch (error) {
console.error('Error loading selected location:', error);
}
}
}
showMessage(message, type) {
const messageDiv = document.getElementById('message');
if (!messageDiv) return;
messageDiv.className = `message ${type === 'error' ? 'error' : 'success'}`;
messageDiv.textContent = message;
// Auto-hide after 5 seconds
setTimeout(() => {
messageDiv.textContent = '';
messageDiv.className = '';
}, 5000);
}
renderTreeList(trees) {
const treeList = document.getElementById('treeList');
if (!treeList) return;
if (trees.length === 0) {
treeList.innerHTML = '<div class="loading">No trees recorded yet</div>';
return;
}
// Compute display numbers for Ishita's trees created today
const now = new Date();
const y = now.getFullYear(), m = now.getMonth(), d = now.getDate();
const isToday = (ts) => { try { const t=new Date(ts); return t.getFullYear()===y && t.getMonth()===m && t.getDate()===d; } catch(_) { return false; } };
const ishitaToday = trees.filter(t => (t.created_by||'').toLowerCase()==='ishita' && isToday(t.created_at));
// Sort by created_at ascending to assign small to early ones
ishitaToday.sort((a,b) => new Date(a.created_at) - new Date(b.created_at));
const ishitaIndex = new Map();
ishitaToday.forEach((t, idx) => ishitaIndex.set(t.id, idx+1));
treeList.innerHTML = trees.map(tree => {
const canEdit = this.authManager.canEditTree(tree.created_by);
const canDelete = this.authManager.canDeleteTree(tree.created_by);
return `
<div class="tree-item" data-tree-id="${tree.id}">
<div class="tree-header">
<div class="tree-id">Tree #${tree.id}${ishitaIndex.has(tree.id) ? ` (Ishita No. ${ishitaIndex.get(tree.id)})` : ''}</div>
<div class="tree-actions">
${canEdit ? `<button class="btn-icon edit-tree" data-tree-id="${tree.id}" title="Edit Tree">Edit</button>` : ''}
${canDelete ? `<button class="btn-icon delete-tree" data-tree-id="${tree.id}" title="Delete Tree">Delete</button>` : ''}
</div>
</div>
<div class="tree-info">
${tree.scientific_name || tree.common_name || tree.local_name || 'Unnamed'}
${tree.location_name ? `<br><strong>Location:</strong> ${this.escapeHtml(tree.location_name)}` : ''}
<br>${tree.latitude.toFixed(4)}, ${tree.longitude.toFixed(4)}
${tree.tree_code ? `<br>Code: ${tree.tree_code}` : ''}
<br>${new Date(tree.created_at).toLocaleDateString()}
<br>By: ${tree.created_by || 'Unknown'}
</div>
</div>
`;
}).join('');
}
escapeHtml(text) {
if (typeof text !== 'string') return text;
return text
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"')
.replace(/'/g, ''');
}
showLoadingState(containerId, message = 'Loading...') {
const container = document.getElementById(containerId);
if (!container) return;
container.innerHTML = `
<div class="loading">
<div class="spinner"></div>
${message}
</div>
`;
}
showErrorState(containerId, message = 'Error loading content') {
const container = document.getElementById(containerId);
if (!container) return;
container.innerHTML = `<div class="loading">${message}</div>`;
}
updateLocationButtonState(isGetting) {
const locationBtn = document.getElementById('getLocation');
if (!locationBtn) return;
locationBtn.textContent = isGetting ? 'Getting...' : 'Get GPS Location';
locationBtn.disabled = isGetting;
}
highlightAutoFilledField(fieldId) {
const input = document.getElementById(fieldId);
if (input && !input.value.trim()) {
input.style.backgroundColor = '#f0f9ff';
setTimeout(() => {
input.style.backgroundColor = '';
}, 2000);
}
}
createFileInput(accept, capture = false) {
const input = document.createElement('input');
input.type = 'file';
input.accept = accept;
if (capture) {
input.capture = 'environment';
}
return input;
}
confirmDeletion(treeId) {
return confirm(`Are you sure you want to delete Tree #${treeId}? This action cannot be undone.`);
}
scrollToTop() {
window.scrollTo({ top: 0, behavior: 'smooth' });
}
focusFirstError() {
const firstError = document.querySelector('.form-input.error, .message.error');
if (firstError) {
firstError.scrollIntoView({ behavior: 'smooth', block: 'center' });
if (firstError.focus) {
firstError.focus();
}
}
}
addFieldError(fieldId, message) {
const field = document.getElementById(fieldId);
if (!field) return;
field.classList.add('error');
// Remove existing error message
const existingError = field.parentNode.querySelector('.field-error');
if (existingError) {
existingError.remove();
}
// Add error message
const errorEl = document.createElement('div');
errorEl.className = 'field-error';
errorEl.textContent = message;
field.parentNode.appendChild(errorEl);
}
clearFieldErrors() {
document.querySelectorAll('.form-input.error').forEach(field => {
field.classList.remove('error');
});
document.querySelectorAll('.field-error').forEach(error => {
error.remove();
});
}
showUploadProgress(filename, progress) {
// This could be expanded for actual progress tracking
console.log(`Uploading ${filename}: ${progress}%`);
}
setupDemoUserUI() {
if (!this.authManager.isDemoUser()) {
return; // Not a demo user, no changes needed
}
// Add demo notice at the top of the form
this.addDemoNotice();
// Disable submit button and update its appearance
this.disableSubmitButtonForDemo();
// Show welcome button for demo users
this.showWelcomeButton();
}
addDemoNotice() {
const formCard = document.querySelector('.tt-card .tt-card-content');
if (!formCard) return;
const demoNotice = document.createElement('div');
demoNotice.className = 'demo-notice';
demoNotice.innerHTML = `
<div class="demo-notice-icon">i</div>
<div>
<strong>Demo Mode</strong> - You're exploring TreeTrack!
Feel free to test all features and fill out the form.
<em>Note: Data won't be permanently saved in this demo environment.</em>
</div>
`;
// Insert before the form
const form = document.getElementById('treeForm');
if (form) {
formCard.insertBefore(demoNotice, form);
}
}
disableSubmitButtonForDemo() {
const submitBtn = document.querySelector('button[type="submit"]');
if (!submitBtn) return;
// Update button text and styling
submitBtn.textContent = 'Try TreeTrack - Demo Mode';
submitBtn.classList.add('tt-btn-demo-disabled');
submitBtn.disabled = true;
// Add tooltip on hover
submitBtn.title = 'This is a demo environment - data won\'t be permanently saved';
// Override the form submission to show demo message
submitBtn.setAttribute('data-demo-disabled', 'true');
}
isDemoButtonDisabled() {
const submitBtn = document.querySelector('button[type="submit"]');
return submitBtn && submitBtn.getAttribute('data-demo-disabled') === 'true';
}
showWelcomeButton() {
const welcomeBtn = document.getElementById('welcomeBtn');
if (welcomeBtn) {
welcomeBtn.style.display = 'inline-flex';
}
}
}
|