Feat v0.6.12 css isolation (#47)
All checks were successful
CI/CD / detect-changes (push) Successful in 4s
CI/CD / test-frontend (push) Successful in 6s
CI/CD / test-go-pg (push) Successful in 2m44s
CI/CD / test-sqlite (push) Successful in 2m47s
CI/CD / build-and-deploy (push) Successful in 1m46s

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #47.
This commit is contained in:
2026-04-01 11:58:39 +00:00
committed by xcaliber
parent 786bc92768
commit 221ae94f4f
33 changed files with 1385 additions and 1074 deletions

View File

@@ -9,7 +9,7 @@
/* ── Layout ─────────────────────────────── */
.chat-app {
.ext-chat-app {
display: flex;
flex-direction: column;
height: 100%;
@@ -18,20 +18,20 @@
color: var(--text);
}
.chat-loading {
.ext-chat-loading {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.chat-body {
.ext-chat-body {
display: flex;
flex: 1;
min-height: 0;
}
.chat-main {
.ext-chat-main {
display: flex;
flex-direction: column;
flex: 1;
@@ -40,7 +40,7 @@
/* ── Topbar extras ──────────────────────── */
.chat-topbar__thread-title {
.ext-chat-topbar__thread-title {
font-weight: 600;
font-size: 14px;
margin-right: 8px;
@@ -49,7 +49,7 @@
/* ── Sidebar ────────────────────────────── */
.chat-sidebar {
.ext-chat-sidebar {
width: 280px;
min-width: 280px;
border-right: 1px solid var(--border);
@@ -58,7 +58,7 @@
background: var(--bg-secondary);
}
.chat-sidebar__header {
.ext-chat-sidebar__header {
display: flex;
align-items: center;
justify-content: space-between;
@@ -66,46 +66,46 @@
border-bottom: 1px solid var(--border);
}
.chat-sidebar__title {
.ext-chat-sidebar__title {
font-weight: 600;
font-size: 14px;
}
.chat-sidebar__list {
.ext-chat-sidebar__list {
flex: 1;
overflow-y: auto;
}
.chat-sidebar__empty {
.ext-chat-sidebar__empty {
padding: 24px 16px;
text-align: center;
color: var(--text-3);
font-size: 13px;
}
.chat-sidebar__item {
.ext-chat-sidebar__item {
padding: 10px 16px;
cursor: pointer;
border-bottom: 1px solid var(--border-light);
transition: background 0.1s;
}
.chat-sidebar__item:hover {
.ext-chat-sidebar__item:hover {
background: var(--bg-hover);
}
.chat-sidebar__item--active {
.ext-chat-sidebar__item--active {
background: var(--accent-dim);
}
.chat-sidebar__item-top {
.ext-chat-sidebar__item-top {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 2px;
}
.chat-sidebar__item-title {
.ext-chat-sidebar__item-title {
font-weight: 600;
font-size: 13px;
white-space: nowrap;
@@ -115,19 +115,19 @@
margin-right: 8px;
}
.chat-sidebar__item-time {
.ext-chat-sidebar__item-time {
font-size: 11px;
color: var(--text-3);
white-space: nowrap;
}
.chat-sidebar__item-bottom {
.ext-chat-sidebar__item-bottom {
display: flex;
align-items: center;
gap: 6px;
}
.chat-sidebar__item-preview {
.ext-chat-sidebar__item-preview {
font-size: 12px;
color: var(--text-2);
white-space: nowrap;
@@ -136,7 +136,7 @@
flex: 1;
}
.chat-sidebar__badge {
.ext-chat-sidebar__badge {
background: var(--accent);
color: var(--text-on-color);
font-size: 11px;
@@ -153,13 +153,13 @@
/* ── Sidebar Search ────────────────────── */
.chat-sidebar__search {
.ext-chat-sidebar__search {
position: relative;
padding: 8px 16px;
border-bottom: 1px solid var(--border-light);
}
.chat-sidebar__search-input {
.ext-chat-sidebar__search-input {
width: 100%;
border: 1px solid var(--border);
border-radius: 6px;
@@ -171,12 +171,12 @@
box-sizing: border-box;
}
.chat-sidebar__search-input:focus {
.ext-chat-sidebar__search-input:focus {
outline: none;
border-color: var(--accent);
}
.chat-sidebar__search-clear {
.ext-chat-sidebar__search-clear {
position: absolute;
right: 22px;
top: 50%;
@@ -190,16 +190,16 @@
line-height: 1;
}
.chat-sidebar__search-clear:hover {
.ext-chat-sidebar__search-clear:hover {
color: var(--text);
}
.chat-sidebar__search-results {
.ext-chat-sidebar__search-results {
flex: 1;
overflow-y: auto;
}
.chat-sidebar__search-section {
.ext-chat-sidebar__search-section {
padding: 8px 16px 4px;
font-size: 11px;
font-weight: 600;
@@ -208,13 +208,13 @@
color: var(--text-3);
}
.chat-sidebar__search-loading {
.ext-chat-sidebar__search-loading {
display: flex;
justify-content: center;
padding: 16px;
}
.chat-sidebar__item--search-msg .chat-sidebar__item-preview {
.ext-chat-sidebar__item--search-msg .ext-chat-sidebar__item-preview {
font-size: 13px;
white-space: normal;
display: -webkit-box;
@@ -225,20 +225,20 @@
/* ── Message Thread ─────────────────────── */
.chat-thread {
.ext-chat-thread {
flex: 1;
display: flex;
flex-direction: column;
min-height: 0;
}
.chat-thread--empty {
.ext-chat-thread--empty {
align-items: center;
justify-content: center;
color: var(--text-3);
}
.chat-thread__messages {
.ext-chat-thread__messages {
flex: 1;
overflow-y: auto;
padding: 16px;
@@ -247,19 +247,19 @@
gap: 4px;
}
.chat-thread__loading {
.ext-chat-thread__loading {
display: flex;
justify-content: center;
padding: 24px;
}
.chat-thread__loading-more {
.ext-chat-thread__loading-more {
display: flex;
justify-content: center;
padding: 8px;
}
.chat-thread__load-more {
.ext-chat-thread__load-more {
align-self: center;
background: none;
border: 1px solid var(--border);
@@ -271,11 +271,11 @@
margin-bottom: 8px;
}
.chat-thread__load-more:hover {
.ext-chat-thread__load-more:hover {
background: var(--bg-hover);
}
.chat-thread__typing {
.ext-chat-thread__typing {
padding: 4px 16px 8px;
font-size: 12px;
color: var(--text-3);
@@ -284,7 +284,7 @@
/* ── Message Bubble ─────────────────────── */
.chat-msg {
.ext-chat-msg {
display: flex;
align-items: flex-start;
gap: 8px;
@@ -292,44 +292,44 @@
position: relative;
}
.chat-msg--own {
.ext-chat-msg--own {
flex-direction: row-reverse;
}
.chat-msg--system {
.ext-chat-msg--system {
justify-content: center;
padding: 2px 0;
}
.chat-msg--system span {
.ext-chat-msg--system span {
font-size: 12px;
color: var(--text-3);
font-style: italic;
}
.chat-msg--deleted {
.ext-chat-msg--deleted {
justify-content: center;
padding: 2px 0;
}
.chat-msg--deleted em {
.ext-chat-msg--deleted em {
font-size: 12px;
color: var(--text-3);
}
.chat-msg__body {
.ext-chat-msg__body {
max-width: 65%;
background: var(--bg-raised);
border-radius: 12px;
padding: 8px 12px;
}
.chat-msg--own .chat-msg__body {
.ext-chat-msg--own .ext-chat-msg__body {
background: var(--accent);
color: var(--text-on-color);
}
.chat-msg__name {
.ext-chat-msg__name {
font-size: 11px;
font-weight: 600;
color: var(--text-2);
@@ -337,42 +337,42 @@
margin-bottom: 2px;
}
.chat-msg__content {
.ext-chat-msg__content {
font-size: 14px;
line-height: 1.4;
white-space: pre-wrap;
word-break: break-word;
}
.chat-msg__meta {
.ext-chat-msg__meta {
display: flex;
gap: 6px;
align-items: center;
margin-top: 2px;
}
.chat-msg__time {
.ext-chat-msg__time {
font-size: 10px;
color: var(--text-3);
}
.chat-msg--own .chat-msg__time {
.ext-chat-msg--own .ext-chat-msg__time {
color: rgba(255, 255, 255, 0.7);
}
.chat-msg__edited {
.ext-chat-msg__edited {
font-size: 10px;
color: var(--text-3);
font-style: italic;
}
.chat-msg--own .chat-msg__edited {
.ext-chat-msg--own .ext-chat-msg__edited {
color: rgba(255, 255, 255, 0.7);
}
/* ── Message Actions ────────────────────── */
.chat-msg__actions {
.ext-chat-msg__actions {
display: flex;
gap: 2px;
position: absolute;
@@ -385,12 +385,12 @@
padding: 2px;
}
.chat-msg--own .chat-msg__actions {
.ext-chat-msg--own .ext-chat-msg__actions {
right: auto;
left: 0;
}
.chat-msg__action {
.ext-chat-msg__action {
background: none;
border: none;
padding: 4px 6px;
@@ -401,24 +401,24 @@
color: var(--text-2);
}
.chat-msg__action:hover {
.ext-chat-msg__action:hover {
background: var(--bg-hover);
}
.chat-msg__action--danger:hover {
.ext-chat-msg__action--danger:hover {
background: var(--danger-bg);
color: var(--danger);
}
/* ── Message Edit ───────────────────────── */
.chat-msg__edit {
.ext-chat-msg__edit {
display: flex;
flex-direction: column;
gap: 6px;
}
.chat-msg__edit-input {
.ext-chat-msg__edit-input {
width: 100%;
min-width: 200px;
border: 1px solid var(--border);
@@ -431,7 +431,7 @@
color: var(--text);
}
.chat-msg__edit-actions {
.ext-chat-msg__edit-actions {
display: flex;
gap: 6px;
justify-content: flex-end;
@@ -439,7 +439,7 @@
/* ── Compose Bar ────────────────────────── */
.chat-compose {
.ext-chat-compose {
display: flex;
align-items: flex-end;
gap: 8px;
@@ -448,7 +448,7 @@
background: var(--bg);
}
.chat-compose__input {
.ext-chat-compose__input {
flex: 1;
border: 1px solid var(--border);
border-radius: 8px;
@@ -462,7 +462,7 @@
color: var(--text);
}
.chat-compose__input:focus {
.ext-chat-compose__input:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 2px var(--accent-dim);
@@ -470,7 +470,7 @@
/* ── Participant Sidebar ────────────────── */
.chat-participants {
.ext-chat-participants {
width: 240px;
min-width: 240px;
border-left: 1px solid var(--border);
@@ -479,7 +479,7 @@
background: var(--bg-secondary);
}
.chat-participants__header {
.ext-chat-participants__header {
display: flex;
align-items: center;
justify-content: space-between;
@@ -489,20 +489,20 @@
font-size: 13px;
}
.chat-participants__list {
.ext-chat-participants__list {
flex: 1;
overflow-y: auto;
padding: 8px 0;
}
.chat-participants__item {
.ext-chat-participants__item {
display: flex;
align-items: center;
gap: 8px;
padding: 6px 16px;
}
.chat-participants__name {
.ext-chat-participants__name {
flex: 1;
font-size: 13px;
white-space: nowrap;
@@ -510,14 +510,14 @@
text-overflow: ellipsis;
}
.chat-participants__badge {
.ext-chat-participants__badge {
font-size: 10px;
color: var(--accent);
font-weight: 600;
margin-left: 4px;
}
.chat-participants__status {
.ext-chat-participants__status {
width: 8px;
height: 8px;
border-radius: 50%;
@@ -525,11 +525,11 @@
flex-shrink: 0;
}
.chat-participants__status--online {
.ext-chat-participants__status--online {
background: var(--success);
}
.chat-participants__remove {
.ext-chat-participants__remove {
background: none;
border: none;
color: var(--text-3);
@@ -539,25 +539,25 @@
line-height: 1;
}
.chat-participants__remove:hover {
.ext-chat-participants__remove:hover {
color: var(--danger);
}
/* ── New Conversation Dialog ────────────── */
.chat-new {
.ext-chat-new {
display: flex;
flex-direction: column;
gap: 12px;
min-width: 320px;
}
.chat-new__type {
.ext-chat-new__type {
display: flex;
gap: 16px;
}
.chat-new__type label {
.ext-chat-new__type label {
display: flex;
align-items: center;
gap: 6px;
@@ -565,7 +565,7 @@
cursor: pointer;
}
.chat-new__title {
.ext-chat-new__title {
border: 1px solid var(--border);
border-radius: 6px;
padding: 8px 10px;
@@ -575,13 +575,13 @@
color: var(--text);
}
.chat-new__selected {
.ext-chat-new__selected {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.chat-new__chip {
.ext-chat-new__chip {
display: inline-flex;
align-items: center;
gap: 4px;
@@ -593,7 +593,7 @@
border-radius: 12px;
}
.chat-new__chip button {
.ext-chat-new__chip button {
background: none;
border: none;
color: inherit;
@@ -607,10 +607,10 @@
/* Allow the autocomplete dropdown to overflow the dialog body.
Applies to both New Conversation and Add Participant dialogs. */
.sw-dialog__body:has(.sw-user-picker) {
[data-ext="chat"] .sw-dialog__body:has(.sw-user-picker) {
overflow: visible;
}
.sw-dialog:has(.sw-user-picker) {
[data-ext="chat"] .sw-dialog:has(.sw-user-picker) {
overflow: visible;
}

View File

@@ -123,60 +123,60 @@
var sMsgs = showSearch ? (searchResults.messages || []) : [];
return html`
<div class="chat-sidebar">
<div class="chat-sidebar__header">
<span class="chat-sidebar__title">Conversations</span>
<div class="ext-chat-sidebar">
<div class="ext-chat-sidebar__header">
<span class="ext-chat-sidebar__title">Conversations</span>
<${Button} size="sm" onClick=${onNew}>New<//>
</div>
<div class="chat-sidebar__search">
<input class="chat-sidebar__search-input"
<div class="ext-chat-sidebar__search">
<input class="ext-chat-sidebar__search-input"
type="text"
value=${searchQuery}
placeholder="Search\u2026"
onInput=${handleSearchInput} />
${searchQuery && html`
<button class="chat-sidebar__search-clear" onClick=${clearSearch}>\u00d7</button>`}
<button class="ext-chat-sidebar__search-clear" onClick=${clearSearch}>\u00d7</button>`}
</div>
${showSearch ? html`
<div class="chat-sidebar__search-results">
${searching && html`<div class="chat-sidebar__search-loading"><${Spinner} size="sm" /></div>`}
<div class="ext-chat-sidebar__search-results">
${searching && html`<div class="ext-chat-sidebar__search-loading"><${Spinner} size="sm" /></div>`}
${!searching && sConvs.length === 0 && sMsgs.length === 0 && html`
<div class="chat-sidebar__empty">No results</div>`}
<div class="ext-chat-sidebar__empty">No results</div>`}
${sConvs.length > 0 && html`
<div class="chat-sidebar__search-section">Conversations</div>
<div class="ext-chat-sidebar__search-section">Conversations</div>
${sConvs.map(c => html`
<div key=${c.id} class="chat-sidebar__item" onClick=${() => selectFromSearch(c.id)}>
<div class="chat-sidebar__item-top">
<span class="chat-sidebar__item-title">${c.title || 'Untitled'}</span>
<span class="chat-sidebar__item-time">${timeAgo(c.updated_at || c.created_at)}</span>
<div key=${c.id} class="ext-chat-sidebar__item" onClick=${() => selectFromSearch(c.id)}>
<div class="ext-chat-sidebar__item-top">
<span class="ext-chat-sidebar__item-title">${c.title || 'Untitled'}</span>
<span class="ext-chat-sidebar__item-time">${timeAgo(c.updated_at || c.created_at)}</span>
</div>
</div>`)}`}
${sMsgs.length > 0 && html`
<div class="chat-sidebar__search-section">Messages</div>
<div class="ext-chat-sidebar__search-section">Messages</div>
${sMsgs.map(m => html`
<div key=${m.id} class="chat-sidebar__item chat-sidebar__item--search-msg" onClick=${() => selectFromSearch(m.conversation_id)}>
<div class="chat-sidebar__item-top">
<span class="chat-sidebar__item-preview">${truncate(m.content, 80)}</span>
<div key=${m.id} class="ext-chat-sidebar__item ext-chat-sidebar__item--search-msg" onClick=${() => selectFromSearch(m.conversation_id)}>
<div class="ext-chat-sidebar__item-top">
<span class="ext-chat-sidebar__item-preview">${truncate(m.content, 80)}</span>
</div>
<div class="chat-sidebar__item-bottom">
<span class="chat-sidebar__item-time">${timeAgo(m.created_at)}</span>
<div class="ext-chat-sidebar__item-bottom">
<span class="ext-chat-sidebar__item-time">${timeAgo(m.created_at)}</span>
</div>
</div>`)}`}
</div>
` : html`
<div class="chat-sidebar__list">
<div class="ext-chat-sidebar__list">
${conversations.length === 0 && html`
<div class="chat-sidebar__empty">No conversations yet</div>`}
<div class="ext-chat-sidebar__empty">No conversations yet</div>`}
${conversations.map(c => html`
<div key=${c.id}
class=${'chat-sidebar__item' + (selected === c.id ? ' chat-sidebar__item--active' : '')}
class=${'ext-chat-sidebar__item' + (selected === c.id ? ' ext-chat-sidebar__item--active' : '')}
onClick=${() => onSelect(c.id)}>
<div class="chat-sidebar__item-top">
<span class="chat-sidebar__item-title">${c.title || 'Untitled'}</span>
<span class="chat-sidebar__item-time">${timeAgo(c.updated_at || c.created_at)}</span>
<div class="ext-chat-sidebar__item-top">
<span class="ext-chat-sidebar__item-title">${c.title || 'Untitled'}</span>
<span class="ext-chat-sidebar__item-time">${timeAgo(c.updated_at || c.created_at)}</span>
</div>
<div class="chat-sidebar__item-bottom">
<span class="chat-sidebar__item-preview">
<div class="ext-chat-sidebar__item-bottom">
<span class="ext-chat-sidebar__item-preview">
${c.last_message
? truncate(c.last_message.content_type === 'system'
? '\u2022 ' + c.last_message.content
@@ -184,7 +184,7 @@
: 'No messages yet'}
</span>
${(unread[c.id] || 0) > 0 && html`
<span class="chat-sidebar__badge">${unread[c.id]}</span>`}
<span class="ext-chat-sidebar__badge">${unread[c.id]}</span>`}
</div>
</div>`)}
</div>
@@ -204,14 +204,14 @@
if (msg._deleted) {
return html`
<div class="chat-msg chat-msg--deleted">
<div class="ext-chat-msg ext-chat-msg--deleted">
<em>This message was deleted</em>
</div>`;
}
if (msg.content_type === 'system') {
return html`
<div class="chat-msg chat-msg--system">
<div class="ext-chat-msg ext-chat-msg--system">
<span>${msg.content}</span>
</div>`;
}
@@ -239,37 +239,37 @@
}
return html`
<div class=${'chat-msg' + (isOwn ? ' chat-msg--own' : '')}
<div class=${'ext-chat-msg' + (isOwn ? ' ext-chat-msg--own' : '')}
onMouseEnter=${() => setHover(true)}
onMouseLeave=${() => setHover(false)}>
${!isOwn && html`
<${Avatar} name=${msg._display_name || msg.participant_id} size="sm" />`}
<div class="chat-msg__body">
${!isOwn && html`<span class="chat-msg__name">${msg._display_name || msg.participant_id}</span>`}
<div class="ext-chat-msg__body">
${!isOwn && html`<span class="ext-chat-msg__name">${msg._display_name || msg.participant_id}</span>`}
${editing ? html`
<div class="chat-msg__edit">
<textarea class="chat-msg__edit-input"
<div class="ext-chat-msg__edit">
<textarea class="ext-chat-msg__edit-input"
value=${editText}
onInput=${e => setEditText(e.target.value)}
onKeyDown=${onEditKeyDown}
rows="2" />
<div class="chat-msg__edit-actions">
<div class="ext-chat-msg__edit-actions">
<${Button} size="sm" variant="secondary" onClick=${cancelEdit}>Cancel<//>
<${Button} size="sm" onClick=${saveEdit}>Save<//>
</div>
</div>
` : msg.content_type === 'markdown' && sw?.markdown?.ready ? html`
<div class="chat-msg__content" dangerouslySetInnerHTML=${{ __html: sw.markdown.renderSync(msg.content, { sanitize: true }) }} />` : html`
<div class="chat-msg__content">${msg.content}</div>`}
<div class="chat-msg__meta">
<span class="chat-msg__time">${timeAgo(msg.created_at)}</span>
${msg.edited_at && html`<span class="chat-msg__edited">(edited)</span>`}
<div class="ext-chat-msg__content" dangerouslySetInnerHTML=${{ __html: sw.markdown.renderSync(msg.content, { sanitize: true }) }} />` : html`
<div class="ext-chat-msg__content">${msg.content}</div>`}
<div class="ext-chat-msg__meta">
<span class="ext-chat-msg__time">${timeAgo(msg.created_at)}</span>
${msg.edited_at && html`<span class="ext-chat-msg__edited">(edited)</span>`}
</div>
</div>
${hover && isOwn && !editing && html`
<div class="chat-msg__actions">
<button class="chat-msg__action" onClick=${startEdit} title="Edit">&#9998;</button>
<button class="chat-msg__action chat-msg__action--danger" onClick=${() => onDelete(msg.id)} title="Delete">&#128465;</button>
<div class="ext-chat-msg__actions">
<button class="ext-chat-msg__action" onClick=${startEdit} title="Edit">&#9998;</button>
<button class="ext-chat-msg__action ext-chat-msg__action--danger" onClick=${() => onDelete(msg.id)} title="Delete">&#128465;</button>
</div>`}
</div>`;
}
@@ -442,18 +442,18 @@
if (!conversationId) {
return html`
<div class="chat-thread chat-thread--empty">
<div class="ext-chat-thread chat-thread--empty">
<p>Select a conversation or start a new one</p>
</div>`;
}
return html`
<div class="chat-thread">
<div class="chat-thread__messages" ref=${listRef}>
${loading && messages.length === 0 && html`<div class="chat-thread__loading"><${Spinner} /></div>`}
${loading && messages.length > 0 && html`<div class="chat-thread__loading-more"><${Spinner} size="sm" /></div>`}
<div class="ext-chat-thread">
<div class="ext-chat-thread__messages" ref=${listRef}>
${loading && messages.length === 0 && html`<div class="ext-chat-thread__loading"><${Spinner} /></div>`}
${loading && messages.length > 0 && html`<div class="ext-chat-thread__loading-more"><${Spinner} size="sm" /></div>`}
${hasMore && !loading && html`
<button class="chat-thread__load-more" onClick=${loadMore}>
<button class="ext-chat-thread__load-more" onClick=${loadMore}>
Load older messages
</button>`}
${messages.map(m => html`
@@ -466,7 +466,7 @@
/>`)}
<div ref=${bottomRef} />
</div>
${typingText && html`<div class="chat-thread__typing">${typingText}</div>`}
${typingText && html`<div class="ext-chat-thread__typing">${typingText}</div>`}
</div>`;
}
@@ -533,8 +533,8 @@
if (!conversationId) return null;
return html`
<div class="chat-compose">
<textarea class="chat-compose__input"
<div class="ext-chat-compose">
<textarea class="ext-chat-compose__input"
ref=${textareaRef}
value=${text}
placeholder="Type a message\u2026"
@@ -580,22 +580,22 @@
}
return html`
<div class="chat-participants">
<div class="chat-participants__header">
<div class="ext-chat-participants">
<div class="ext-chat-participants__header">
<span>Participants (${(participants || []).length})</span>
${isAdmin && html`<${Button} size="sm" onClick=${() => setAddOpen(true)}>Add<//>` }
</div>
<div class="chat-participants__list">
<div class="ext-chat-participants__list">
${(participants || []).map(p => html`
<div key=${p.participant_id} class="chat-participants__item">
<div key=${p.participant_id} class="ext-chat-participants__item">
<${Avatar} name=${p.display_name || p.participant_id} size="sm" />
<span class="chat-participants__name">
<span class="ext-chat-participants__name">
${p.display_name || p.participant_id}
${p.role === 'admin' && html`<span class="chat-participants__badge">admin</span>`}
${p.role === 'admin' && html`<span class="ext-chat-participants__badge">admin</span>`}
</span>
<span class=${'chat-participants__status' + (presence[p.participant_id] ? ' chat-participants__status--online' : '')} />
<span class=${'chat-participants__status' + (presence[p.participant_id] ? ' ext-chat-participants__status--online' : '')} />
${isAdmin && p.participant_id !== currentUserId() && html`
<button class="chat-participants__remove" onClick=${() => removeUser(p.participant_id)} title="Remove">\u00d7</button>`}
<button class="ext-chat-participants__remove" onClick=${() => removeUser(p.participant_id)} title="Remove">\u00d7</button>`}
</div>`)}
</div>
@@ -671,8 +671,8 @@
return html`
<${Dialog} open=${open} title="New Conversation" onClose=${() => { reset(); onClose(); }} actions=${actions}>
<div class="chat-new">
<div class="chat-new__type">
<div class="ext-chat-new">
<div class="ext-chat-new__type">
<label>
<input type="radio" name="convType" value="group"
checked=${type === 'group'} onChange=${() => { setType('group'); setSelected([]); }} />
@@ -685,14 +685,14 @@
</label>
</div>
${type === 'group' && html`
<input class="chat-new__title" type="text" value=${title}
<input class="ext-chat-new__title" type="text" value=${title}
placeholder="Conversation title (optional)"
onInput=${e => setTitle(e.target.value)} />`}
<${UserPicker} onSelect=${addUser} placeholder=${type === 'direct' ? 'Search for a user\u2026' : 'Add participants\u2026'} />
${selected.length > 0 && html`
<div class="chat-new__selected">
<div class="ext-chat-new__selected">
${selected.map(u => html`
<span key=${u.id} class="chat-new__chip">
<span key=${u.id} class="ext-chat-new__chip">
${u.display_name || u.username}
<button onClick=${() => removeSelected(u.id)}>\u00d7</button>
</span>`)}
@@ -807,27 +807,27 @@
var threadTitle = selectedConv ? (selectedConv.title || 'Direct Message') : '';
if (loading) {
return html`<div class="chat-loading"><${Spinner} /></div>`;
return html`<div class="ext-chat-loading"><${Spinner} /></div>`;
}
return html`
<div class="chat-app">
<div class="ext-chat-app">
<${Topbar} title="Chat">
${selectedId && html`
<span class="chat-topbar__thread-title">${threadTitle}</span>
<span class="ext-chat-topbar__thread-title">${threadTitle}</span>
<${Button} size="sm" variant="secondary"
onClick=${() => setShowParticipants(!showParticipants)}>
${showParticipants ? 'Hide' : 'People'}
<//>`}
<//>
<div class="chat-body">
<div class="ext-chat-body">
<${ConversationList}
selected=${selectedId}
onSelect=${selectConversation}
onNew=${() => setShowNew(true)}
conversations=${conversations}
unread=${unread} />
<div class="chat-main">
<div class="ext-chat-main">
<${MessageThread}
conversationId=${selectedId}
participants=${participants} />