// @ts-check /** * UserVignette — reusable user avatar component, two display modes. * * Mode 1 — avatar + name (default): * A coloured circle with initials (or photo) alongside an async-resolved * display name. Used in the owner column, ShareModal rows / chips / items. * * Mode 2 — avatar only ({ showName: false }): * The circle alone, no name span. Used in the user-menu toolbar button * and the dropdown header where the name is rendered separately. * * Usage: * import { createUserVignette } from './userVignette.js'; * // with name * cell.replaceChildren(createUserVignette(userId, 'sm')); * // avatar only * btn.replaceChildren(createUserVignette(userId, 'menu', { showName: false })); */ import { systemUsers } from '../model/systemUsers.js'; // ── Helpers ──────────────────────────────────────────────────────────────────── /** * Get initials for an avatar (1-2 characters). * @param {string} name * @returns {string} */ export function _initials(name) { const parts = name.trim().split(/\s+/); if (parts.length >= 2) return (parts[0][0] + parts[parts.length - 1][0]).toUpperCase(); return name.slice(0, 2).toUpperCase(); } /** * Deterministic color index 0-4 derived from a userId string. * Same userId always maps to the same color across all components. * @param {string} userId * @returns {number} */ export function _colorIndex(userId) { let hash = 0; for (let i = 0; i < userId.length; i++) { hash = (hash * 31 + userId.charCodeAt(i)) | 0; } return Math.abs(hash) % 5; } /** * Render a photo inside an avatar element, falling back to initials on error. * @param {HTMLElement} avatar The `.user-vignette__avatar` element. * @param {string} photoUrl Non-empty photo URL or data URI. * @param {string} name Display name for the alt attribute / fallback. */ function _applyPhoto(avatar, photoUrl, name) { const img = document.createElement('img'); img.alt = name; img.src = photoUrl; img.onerror = () => { // Photo failed to load — fall back to initials avatar.replaceChildren(); avatar.textContent = _initials(name); }; avatar.replaceChildren(img); } // ── Component ────────────────────────────────────────────────────────────────── /** * Available sizes. Each maps to a `.user-vignette--{size}` CSS modifier: * xs → 20 px (chip avatar, small inline contexts) * sm → 24 px (default; ShareModal suggestions, compact rows) * list → 36 px (owner column in list view) * md → 32 px (ShareModal member rows) * lg → 40 px (profile page, larger lists) * menu → 38 px (user-menu toolbar button) * xl → 48 px (user-menu dropdown header) * * @typedef {'xs'|'sm'|'list'|'md'|'lg'|'menu'|'xl'} VignetteSize */ /** * @typedef {Object} VignetteOptions * @property {boolean} [showName=true] * When false, only the avatar circle is rendered — no name span. * Use this when the name is displayed separately (e.g. the user-menu header). * @property {boolean} [showEmail=false] * When true (and showName is true), the primary email address is shown below * the name in a lighter style. Name and email are wrapped in a * `.user-vignette__info` column. Has no effect when showName is false. * @property {boolean} [showOrigin=true] * When true (the default), an `is_external` badge overlays the * bottom-right of the avatar for external users only — internal * users render unchanged. Set false to suppress the badge in * contexts where the distinction would be noise (e.g. the * logged-in-user menu, where the caller is implicitly internal). */ /** * Create a user vignette element. Returns immediately with a placeholder; * the display name, email, and photo resolve asynchronously via `systemUsers`. * * @param {string} userId UUID of the user * @param {VignetteSize} [size='sm'] * @param {VignetteOptions} [options] * @returns {HTMLElement} */ export function createUserVignette(userId, size = 'sm', { showName = true, showEmail = false, showOrigin = true } = {}) { const colorIdx = _colorIndex(userId); const wrapper = /** @type {HTMLElement} */ (document.createElement('span')); wrapper.className = `user-vignette user-vignette--${size}`; const avatar = document.createElement('span'); avatar.className = `user-vignette__avatar uv-color-${colorIdx}`; // Temporary placeholder: first two chars of UUID avatar.textContent = userId.slice(0, 2).toUpperCase(); wrapper.appendChild(avatar); // Origin badge (external-only — internal users render unchanged). // Created hidden; revealed once `getIsExternal` resolves to true. // FontAwesome glyph classes are added alongside the component // class so the icon renders as a building-with-x glyph. /** @type {HTMLElement | null} */ const originEl = showOrigin ? document.createElement('i') : null; if (originEl) { originEl.className = 'user-vignette__origin user-vignette__origin--external hidden fa-solid fa-building-circle-xmark'; originEl.setAttribute('aria-hidden', 'true'); avatar.appendChild(originEl); } /** @type {HTMLElement | null} */ const nameEl = showName ? document.createElement('span') : null; /** @type {HTMLElement | null} */ const emailEl = showName && showEmail ? document.createElement('span') : null; if (nameEl) { nameEl.className = 'user-vignette__name'; nameEl.textContent = `${userId.slice(0, 8)}…`; if (emailEl) { // Wrap name + email in a column so they stack vertically. emailEl.className = 'user-vignette__email'; const info = document.createElement('span'); info.className = 'user-vignette__info'; info.appendChild(nameEl); info.appendChild(emailEl); wrapper.appendChild(info); } else { wrapper.appendChild(nameEl); } } // Resolve name, photo, email, and (when requested) is_external // asynchronously. All four go through the systemUsers cache so a // single fetch back-fills every facet. Promise.all([ systemUsers.getDisplayName(userId), systemUsers.getPhoto(userId), emailEl ? systemUsers.getEmail(userId) : Promise.resolve(null), originEl ? systemUsers.getIsExternal(userId) : Promise.resolve(false) ]).then(([name, photo, email, isExternal]) => { if (nameEl) nameEl.textContent = name; if (emailEl) emailEl.textContent = email ?? ''; if (photo) { _applyPhoto(avatar, photo, name); } else { avatar.textContent = _initials(name); } // Both branches above replace the avatar's children, wiping the // pre-attached badge node. Re-attach AFTER the avatar's content // is final so the badge sits on top. if (originEl) { avatar.appendChild(originEl); if (isExternal) { originEl.classList.remove('hidden'); originEl.title = 'External user'; } } }); return wrapper; }