/** * resources/js/term-tooltip.js * WikiPāli 术语 tooltip(桌面 Popover)+ 抽屉(移动端 Offcanvas) * * 依赖:Bootstrap 5(bootstrap.Popover / bootstrap.Offcanvas) * 已由 Tabler 全局引入,无需重复 import */ (function () { "use strict"; // ── 缓存层 ──────────────────────────────────────────────────────── const cache = {}; async function fetchTerm(id) { if (cache[id]) return cache[id]; const res = await fetch(`/api/v2/terms/${id}`); if (!res.ok) throw new Error(`fetchTerm ${id} failed: ${res.status}`); const json = await res.json(); cache[id] = json.data; return json.data; } // ── 设备判断 ────────────────────────────────────────────────────── const isMobile = () => window.innerWidth < 768; // ── Popover 内容模板 ────────────────────────────────────────────── function buildPopoverContent(data) { const meaning = (data.meaning || "").trim(); const summary = (data.summary || "").trim(); const showSummary = summary && summary !== meaning; return `