386 lines
12 KiB
TypeScript
386 lines
12 KiB
TypeScript
/**
|
|
* <rstack-app-switcher> — Dropdown to switch between rSpace modules.
|
|
*
|
|
* Attributes:
|
|
* current — the active module ID (highlighted)
|
|
*
|
|
* Methods:
|
|
* setModules(list) — provide the list of available modules
|
|
*/
|
|
|
|
export interface AppSwitcherModule {
|
|
id: string;
|
|
name: string;
|
|
icon: string;
|
|
description: string;
|
|
standaloneDomain?: string;
|
|
}
|
|
|
|
// Pastel badge abbreviations & colors for each module
|
|
const MODULE_BADGES: Record<string, { badge: string; color: string }> = {
|
|
// Creating
|
|
canvas: { badge: "rS", color: "#5eead4" }, // teal-300
|
|
notes: { badge: "rN", color: "#fcd34d" }, // amber-300
|
|
pubs: { badge: "rP", color: "#fda4af" }, // rose-300
|
|
swag: { badge: "rSw", color: "#fda4af" }, // rose-300
|
|
splat: { badge: "r3", color: "#d8b4fe" }, // purple-300
|
|
// Planning
|
|
cal: { badge: "rC", color: "#7dd3fc" }, // sky-300
|
|
trips: { badge: "rT", color: "#6ee7b7" }, // emerald-300
|
|
maps: { badge: "rM", color: "#86efac" }, // green-300
|
|
// Communicating
|
|
chats: { badge: "rCh", color: "#6ee7b7" }, // emerald-200
|
|
inbox: { badge: "rI", color: "#a5b4fc" }, // indigo-300
|
|
mail: { badge: "rMa", color: "#93c5fd" }, // blue-200
|
|
forum: { badge: "rFo", color: "#fcd34d" }, // amber-200
|
|
// Deciding
|
|
choices: { badge: "rCo", color: "#f0abfc" }, // fuchsia-300
|
|
vote: { badge: "rV", color: "#c4b5fd" }, // violet-300
|
|
// Funding & Commerce
|
|
funds: { badge: "rF", color: "#bef264" }, // lime-300
|
|
wallet: { badge: "rW", color: "#fde047" }, // yellow-300
|
|
cart: { badge: "rCt", color: "#fdba74" }, // orange-300
|
|
auctions: { badge: "rA", color: "#fca5a5" }, // red-300
|
|
providers: { badge: "rPr", color: "#fdba74" }, // orange-300
|
|
// Social & Media
|
|
photos: { badge: "rPh", color: "#f9a8d4" }, // pink-200
|
|
tube: { badge: "rTu", color: "#f9a8d4" }, // pink-300
|
|
network: { badge: "rNe", color: "#93c5fd" }, // blue-300
|
|
socials: { badge: "rSo", color: "#7dd3fc" }, // sky-200
|
|
files: { badge: "rFi", color: "#67e8f9" }, // cyan-300
|
|
data: { badge: "rD", color: "#d8b4fe" }, // purple-300
|
|
books: { badge: "rB", color: "#fda4af" }, // rose-300
|
|
// Work & Productivity
|
|
work: { badge: "rWo", color: "#cbd5e1" }, // slate-300
|
|
// Identity & Infrastructure
|
|
ids: { badge: "rId", color: "#6ee7b7" }, // emerald-300
|
|
stack: { badge: "r*", color: "" }, // gradient (handled separately)
|
|
};
|
|
|
|
// Category definitions for the rApp dropdown (display-only grouping)
|
|
const MODULE_CATEGORIES: Record<string, string> = {
|
|
canvas: "Creating",
|
|
notes: "Creating",
|
|
pubs: "Creating",
|
|
swag: "Creating",
|
|
splat: "Creating",
|
|
cal: "Planning",
|
|
trips: "Planning",
|
|
maps: "Planning",
|
|
chats: "Communicating",
|
|
inbox: "Communicating",
|
|
mail: "Communicating",
|
|
forum: "Communicating",
|
|
choices: "Deciding",
|
|
vote: "Deciding",
|
|
funds: "Funding & Commerce",
|
|
wallet: "Funding & Commerce",
|
|
cart: "Funding & Commerce",
|
|
auctions: "Funding & Commerce",
|
|
providers: "Funding & Commerce",
|
|
photos: "Social & Media",
|
|
tube: "Social & Media",
|
|
network: "Social & Media",
|
|
socials: "Social & Media",
|
|
files: "Social & Media",
|
|
data: "Social & Media",
|
|
books: "Social & Media",
|
|
work: "Work & Productivity",
|
|
ids: "Identity & Infrastructure",
|
|
stack: "Identity & Infrastructure",
|
|
};
|
|
|
|
const CATEGORY_ORDER = [
|
|
"Creating",
|
|
"Planning",
|
|
"Communicating",
|
|
"Deciding",
|
|
"Funding & Commerce",
|
|
"Social & Media",
|
|
"Work & Productivity",
|
|
"Identity & Infrastructure",
|
|
];
|
|
|
|
export class RStackAppSwitcher extends HTMLElement {
|
|
#shadow: ShadowRoot;
|
|
#modules: AppSwitcherModule[] = [];
|
|
|
|
constructor() {
|
|
super();
|
|
this.#shadow = this.attachShadow({ mode: "open" });
|
|
}
|
|
|
|
static get observedAttributes() {
|
|
return ["current"];
|
|
}
|
|
|
|
get current(): string {
|
|
return this.getAttribute("current") || "";
|
|
}
|
|
|
|
connectedCallback() {
|
|
this.#render();
|
|
}
|
|
|
|
attributeChangedCallback() {
|
|
this.#render();
|
|
}
|
|
|
|
setModules(modules: AppSwitcherModule[]) {
|
|
this.#modules = modules;
|
|
this.#render();
|
|
}
|
|
|
|
#renderGroupedModules(current: string): string {
|
|
// Group modules by category
|
|
const groups = new Map<string, AppSwitcherModule[]>();
|
|
const uncategorized: AppSwitcherModule[] = [];
|
|
|
|
for (const m of this.#modules) {
|
|
const cat = MODULE_CATEGORIES[m.id];
|
|
if (cat) {
|
|
if (!groups.has(cat)) groups.set(cat, []);
|
|
groups.get(cat)!.push(m);
|
|
} else {
|
|
uncategorized.push(m);
|
|
}
|
|
}
|
|
|
|
// rStack header
|
|
let html = `
|
|
<div class="rstack-header">
|
|
<span class="rstack-badge">r*</span>
|
|
<div class="rstack-info">
|
|
<span class="rstack-title">rStack</span>
|
|
<span class="rstack-subtitle">Self-hosted community app suite</span>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
for (const cat of CATEGORY_ORDER) {
|
|
const items = groups.get(cat);
|
|
if (!items || items.length === 0) continue;
|
|
html += `<div class="category-header">${cat}</div>`;
|
|
html += items.map((m) => this.#renderItem(m, current)).join("");
|
|
}
|
|
if (uncategorized.length > 0) {
|
|
html += `<div class="category-header">Other</div>`;
|
|
html += uncategorized.map((m) => this.#renderItem(m, current)).join("");
|
|
}
|
|
|
|
// Footer
|
|
html += `
|
|
<div class="rstack-footer">
|
|
<a href="https://rstack.online" target="_blank" rel="noopener">rstack.online — self-hosted, community-run</a>
|
|
</div>
|
|
`;
|
|
|
|
return html;
|
|
}
|
|
|
|
#renderItem(m: AppSwitcherModule, current: string): string {
|
|
const badgeInfo = MODULE_BADGES[m.id];
|
|
const badgeHtml = badgeInfo
|
|
? `<span class="item-badge" style="background:${badgeInfo.color}">${badgeInfo.badge}</span>`
|
|
: `<span class="item-icon">${m.icon}</span>`;
|
|
|
|
return `
|
|
<div class="item-row ${m.id === current ? "active" : ""}">
|
|
<a class="item"
|
|
href="/${this.#getSpaceSlug()}/${m.id}"
|
|
data-id="${m.id}">
|
|
${badgeHtml}
|
|
<div class="item-text">
|
|
<span class="item-name-row">
|
|
<span class="item-name">${m.name}</span>
|
|
<span class="item-emoji">${m.icon}</span>
|
|
</span>
|
|
<span class="item-desc">${m.description}</span>
|
|
</div>
|
|
</a>
|
|
${m.standaloneDomain ? `<a class="item-ext" href="https://${m.standaloneDomain}" target="_blank" rel="noopener" title="${m.standaloneDomain}">↗</a>` : ""}
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
#render() {
|
|
const current = this.current;
|
|
const currentMod = this.#modules.find((m) => m.id === current);
|
|
const badgeInfo = currentMod ? MODULE_BADGES[currentMod.id] : null;
|
|
|
|
const triggerContent = badgeInfo
|
|
? `<span class="trigger-badge" style="background:${badgeInfo.color}">${badgeInfo.badge}</span> ${currentMod!.name}`
|
|
: currentMod
|
|
? `${currentMod.icon} ${currentMod.name}`
|
|
: `<span class="trigger-badge rstack-gradient">r*</span> rStack`;
|
|
|
|
this.#shadow.innerHTML = `
|
|
<style>${STYLES}</style>
|
|
<div class="switcher">
|
|
<button class="trigger" id="trigger">${triggerContent} <span class="caret">▾</span></button>
|
|
<div class="menu" id="menu">
|
|
${this.#renderGroupedModules(current)}
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
const trigger = this.#shadow.getElementById("trigger")!;
|
|
const menu = this.#shadow.getElementById("menu")!;
|
|
|
|
trigger.addEventListener("click", (e) => {
|
|
e.stopPropagation();
|
|
menu.classList.toggle("open");
|
|
});
|
|
|
|
// Prevent external links from closing the menu prematurely
|
|
this.#shadow.querySelectorAll(".item-ext").forEach((el) => {
|
|
el.addEventListener("click", (e) => e.stopPropagation());
|
|
});
|
|
|
|
document.addEventListener("click", () => menu.classList.remove("open"));
|
|
}
|
|
|
|
#getSpaceSlug(): string {
|
|
// Read from the space switcher or URL
|
|
const spaceSwitcher = document.querySelector("rstack-space-switcher");
|
|
if (spaceSwitcher) return spaceSwitcher.getAttribute("current") || "personal";
|
|
// Fallback: parse from URL (/:space/:module)
|
|
const parts = window.location.pathname.split("/").filter(Boolean);
|
|
return parts[0] || "personal";
|
|
}
|
|
|
|
static define(tag = "rstack-app-switcher") {
|
|
if (!customElements.get(tag)) customElements.define(tag, RStackAppSwitcher);
|
|
}
|
|
}
|
|
|
|
const STYLES = `
|
|
:host { display: contents; }
|
|
|
|
.switcher { position: relative; }
|
|
|
|
.trigger {
|
|
display: flex; align-items: center; gap: 6px;
|
|
padding: 6px 14px; border-radius: 8px; border: none;
|
|
font-size: 0.9rem; font-weight: 600; cursor: pointer;
|
|
transition: background 0.15s;
|
|
background: rgba(255,255,255,0.08); color: inherit;
|
|
}
|
|
:host-context([data-theme="light"]) .trigger {
|
|
background: rgba(0,0,0,0.05); color: #0f172a;
|
|
}
|
|
:host-context([data-theme="dark"]) .trigger {
|
|
background: rgba(255,255,255,0.08); color: #e2e8f0;
|
|
}
|
|
.trigger:hover { background: rgba(255,255,255,0.12); }
|
|
:host-context([data-theme="light"]) .trigger:hover { background: rgba(0,0,0,0.08); }
|
|
|
|
.trigger-badge {
|
|
display: inline-flex; align-items: center; justify-content: center;
|
|
width: 22px; height: 22px; border-radius: 5px;
|
|
font-size: 0.6rem; font-weight: 900; color: #0f172a;
|
|
line-height: 1; flex-shrink: 0;
|
|
}
|
|
.trigger-badge.rstack-gradient {
|
|
background: linear-gradient(135deg, #67e8f9, #c4b5fd, #fda4af);
|
|
}
|
|
|
|
.caret { font-size: 0.7em; opacity: 0.6; }
|
|
|
|
.menu {
|
|
position: absolute; top: 100%; left: 0; margin-top: 6px;
|
|
min-width: 300px; border-radius: 12px; overflow: hidden;
|
|
overflow-y: auto; max-height: 70vh;
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.25); display: none; z-index: 200;
|
|
}
|
|
.menu.open { display: block; }
|
|
:host-context([data-theme="light"]) .menu {
|
|
background: white; border: 1px solid rgba(0,0,0,0.1);
|
|
}
|
|
:host-context([data-theme="dark"]) .menu {
|
|
background: #1e293b; border: 1px solid rgba(255,255,255,0.1);
|
|
}
|
|
|
|
/* rStack header */
|
|
.rstack-header {
|
|
display: flex; align-items: center; gap: 10px;
|
|
padding: 12px 14px; border-bottom: 1px solid rgba(128,128,128,0.15);
|
|
}
|
|
.rstack-badge {
|
|
display: flex; align-items: center; justify-content: center;
|
|
width: 28px; height: 28px; border-radius: 8px;
|
|
background: linear-gradient(135deg, #67e8f9, #c4b5fd, #fda4af);
|
|
font-size: 0.7rem; font-weight: 900; color: #0f172a; line-height: 1;
|
|
flex-shrink: 0;
|
|
}
|
|
.rstack-info { display: flex; flex-direction: column; }
|
|
.rstack-title { font-size: 0.875rem; font-weight: 700; }
|
|
.rstack-subtitle { font-size: 0.65rem; opacity: 0.5; }
|
|
:host-context([data-theme="light"]) .rstack-title { color: #0f172a; }
|
|
:host-context([data-theme="dark"]) .rstack-title { color: white; }
|
|
|
|
/* Footer */
|
|
.rstack-footer {
|
|
padding: 10px 14px; text-align: center;
|
|
border-top: 1px solid rgba(128,128,128,0.15);
|
|
}
|
|
.rstack-footer a {
|
|
font-size: 0.7rem; opacity: 0.4; text-decoration: none; color: inherit;
|
|
transition: opacity 0.15s;
|
|
}
|
|
.rstack-footer a:hover { opacity: 0.8; }
|
|
:host-context([data-theme="light"]) .rstack-footer a:hover { color: #06b6d4; }
|
|
:host-context([data-theme="dark"]) .rstack-footer a:hover { color: #22d3ee; }
|
|
|
|
.item-row {
|
|
display: flex; align-items: center;
|
|
transition: background 0.12s;
|
|
}
|
|
:host-context([data-theme="light"]) .item-row { color: #374151; }
|
|
:host-context([data-theme="light"]) .item-row:hover { background: #f1f5f9; }
|
|
:host-context([data-theme="light"]) .item-row.active { background: #e0f2fe; }
|
|
:host-context([data-theme="dark"]) .item-row { color: #e2e8f0; }
|
|
:host-context([data-theme="dark"]) .item-row:hover { background: rgba(255,255,255,0.05); }
|
|
:host-context([data-theme="dark"]) .item-row.active { background: rgba(6,182,212,0.1); }
|
|
|
|
.item {
|
|
display: flex; align-items: center; gap: 10px;
|
|
padding: 8px 14px; text-decoration: none;
|
|
cursor: pointer; flex: 1; min-width: 0; color: inherit;
|
|
}
|
|
|
|
.item-ext {
|
|
display: flex; align-items: center; justify-content: center;
|
|
width: 32px; height: 100%; flex-shrink: 0;
|
|
font-size: 0.8rem; text-decoration: none; opacity: 0;
|
|
transition: opacity 0.15s;
|
|
}
|
|
.item-row:hover .item-ext { opacity: 0.5; }
|
|
.item-ext:hover { opacity: 1 !important; }
|
|
:host-context([data-theme="light"]) .item-ext { color: #06b6d4; }
|
|
:host-context([data-theme="dark"]) .item-ext { color: #22d3ee; }
|
|
|
|
.item-badge {
|
|
display: flex; align-items: center; justify-content: center;
|
|
width: 28px; height: 28px; border-radius: 6px;
|
|
font-size: 0.6rem; font-weight: 900; color: #0f172a;
|
|
line-height: 1; flex-shrink: 0;
|
|
}
|
|
.item-icon { font-size: 1.3rem; width: 28px; text-align: center; flex-shrink: 0; }
|
|
.item-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
|
|
.item-name-row { display: flex; align-items: center; gap: 6px; }
|
|
.item-name { font-size: 0.875rem; font-weight: 600; }
|
|
.item-emoji { font-size: 0.875rem; flex-shrink: 0; }
|
|
.item-desc { font-size: 0.7rem; opacity: 0.5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
|
|
.category-header {
|
|
padding: 8px 14px 4px; font-size: 0.6rem; font-weight: 700;
|
|
text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.5;
|
|
user-select: none;
|
|
}
|
|
.category-header:not(:first-child) {
|
|
border-top: 1px solid rgba(128,128,128,0.15);
|
|
margin-top: 4px; padding-top: 10px;
|
|
}
|
|
`;
|