5 Commits

Author SHA1 Message Date
9a87888f5a v1.6.0
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-12-18 08:16:46 +00:00
d61c3b6643 feat(conversation-selector): add conversation status badges to conversation selector and include status in sample data 2025-12-18 08:16:46 +00:00
c8554418de update 2025-12-17 11:50:04 +00:00
c1a8a57729 v1.5.0
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-12-17 11:41:47 +00:00
053d0c8e8f feat(combox): Introduce singleton SioCombox attached to document.body with open/close/toggle API and animated show/hide; integrate SioFab to use the singleton and update styles/positioning 2025-12-17 11:41:47 +00:00
7 changed files with 179 additions and 117 deletions

View File

@@ -1,5 +1,23 @@
# Changelog # Changelog
## 2025-12-18 - 1.6.0 - feat(conversation-selector)
add conversation status badges to conversation selector and include status in sample data
- Introduce TConversationStatus type and add optional status property to IConversation
- Render status badges in sio-conversation-selector with CSS classes and a getBadgeLabel helper
- Update sample conversations in sio-combox.ts to include statuses: 'new', 'needs-action', 'waiting', 'resolved'
## 2025-12-17 - 1.5.0 - feat(combox)
Introduce singleton SioCombox attached to document.body with open/close/toggle API and animated show/hide; integrate SioFab to use the singleton and update styles/positioning
- Add SioCombox.createOnBody() and SioCombox.getInstance() singletons
- Add isOpen state, open(), close(), toggle(), getIsOpen() and emit opened/closed/close events
- Move combox out of the FAB shadow DOM — attach to body and position fixed bottom-right with z-index and enter/exit transitions
- Update mobile layout to full-screen sizing and adjust transform origin for phablet
- Update SioFab to create the singleton on firstUpdated(), listen for close events, and toggle the singleton instead of rendering it inside the FAB
- Remove previous in-FAB combox container markup/CSS and hasShownOnce logic
- Minor visual/UX improvements: scale/opacity transitions, pointer-events control, and positioning variables for consistent behavior
## 2025-12-17 - 1.4.1 - fix(ui) ## 2025-12-17 - 1.4.1 - fix(ui)
handle on-screen keyboard visibility to adjust layout and prevent inputs from being obscured handle on-screen keyboard visibility to adjust layout and prevent inputs from being obscured

View File

@@ -1,6 +1,6 @@
{ {
"name": "@social.io/catalog", "name": "@social.io/catalog",
"version": "1.4.1", "version": "1.6.0",
"private": false, "private": false,
"description": "catalog for social.io", "description": "catalog for social.io",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@social.io/catalog', name: '@social.io/catalog',
version: '1.4.1', version: '1.6.0',
description: 'catalog for social.io' description: 'catalog for social.io'
} }

View File

@@ -36,6 +36,27 @@ declare global {
export class SioCombox extends DeesElement { export class SioCombox extends DeesElement {
public static demo = () => html` <sio-combox></sio-combox> `; public static demo = () => html` <sio-combox></sio-combox> `;
// Singleton instance
private static instance: SioCombox | null = null;
/**
* Creates and appends a singleton combox to document.body
*/
public static createOnBody(): SioCombox {
if (!SioCombox.instance) {
SioCombox.instance = new SioCombox();
document.body.appendChild(SioCombox.instance);
}
return SioCombox.instance;
}
/**
* Gets the singleton instance if it exists
*/
public static getInstance(): SioCombox | null {
return SioCombox.instance;
}
@property({ type: Object }) @property({ type: Object })
public accessor referenceObject: HTMLElement; public accessor referenceObject: HTMLElement;
@@ -45,6 +66,9 @@ export class SioCombox extends DeesElement {
@state() @state()
private accessor isKeyboardVisible: boolean = false; private accessor isKeyboardVisible: boolean = false;
@state()
private accessor isOpen: boolean = false;
private keyboardBlurTimeout?: number; private keyboardBlurTimeout?: number;
@state() @state()
@@ -55,24 +79,28 @@ export class SioCombox extends DeesElement {
lastMessage: 'Thanks for your help with the login issue!', lastMessage: 'Thanks for your help with the login issue!',
time: '2 min ago', time: '2 min ago',
unread: true, unread: true,
status: 'new',
}, },
{ {
id: '2', id: '2',
title: 'Billing Question', title: 'Billing Question',
lastMessage: 'I need help understanding my invoice', lastMessage: 'I need help understanding my invoice',
time: '1 hour ago', time: '1 hour ago',
status: 'needs-action',
}, },
{ {
id: '3', id: '3',
title: 'Feature Request', title: 'Feature Request',
lastMessage: 'That would be great! Looking forward to it', lastMessage: 'That would be great! Looking forward to it',
time: 'Yesterday', time: 'Yesterday',
status: 'waiting',
}, },
{ {
id: '4', id: '4',
title: 'General Inquiry', title: 'General Inquiry',
lastMessage: 'Thank you for the information', lastMessage: 'Thank you for the information',
time: '2 days ago', time: '2 days ago',
status: 'resolved',
} }
]; ];
@@ -174,6 +202,48 @@ export class SioCombox extends DeesElement {
this.removeAttribute('keyboard-visible'); this.removeAttribute('keyboard-visible');
} }
} }
if (changedProperties.has('isOpen')) {
if (this.isOpen) {
this.classList.add('open');
this.dispatchEvent(new CustomEvent('opened', { bubbles: true, composed: true }));
} else {
this.classList.remove('open');
this.dispatchEvent(new CustomEvent('closed', { bubbles: true, composed: true }));
}
}
}
/**
* Opens the combox
*/
public open() {
this.isOpen = true;
}
/**
* Closes the combox
*/
public close() {
this.isOpen = false;
this.dispatchEvent(new CustomEvent('close', { bubbles: true, composed: true }));
}
/**
* Toggles the combox open/closed state
*/
public toggle() {
if (this.isOpen) {
this.close();
} else {
this.open();
}
}
/**
* Returns whether the combox is currently open
*/
public getIsOpen(): boolean {
return this.isOpen;
} }
public static styles = [ public static styles = [
@@ -181,6 +251,9 @@ export class SioCombox extends DeesElement {
css` css`
:host { :host {
display: block; display: block;
position: fixed;
bottom: 100px;
right: 20px;
height: 600px; height: 600px;
width: 800px; width: 800px;
background: ${bdTheme('background')}; background: ${bdTheme('background')};
@@ -189,24 +262,21 @@ export class SioCombox extends DeesElement {
box-shadow: ${unsafeCSS(shadows.xl)}; box-shadow: ${unsafeCSS(shadows.xl)};
overflow: hidden; overflow: hidden;
font-family: ${unsafeCSS(fontFamilies.sans)}; font-family: ${unsafeCSS(fontFamilies.sans)};
position: relative;
transform-origin: bottom right; transform-origin: bottom right;
} z-index: 10001;
:host(.animate-in) { /* Hidden by default */
animation: scaleIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes scaleIn {
from {
opacity: 0; opacity: 0;
transform: scale(0.9) translateY(10px); pointer-events: none;
transform: scale(0.95) translateY(10px);
transition: opacity 200ms ease, transform 200ms ease;
} }
to {
:host(.open) {
opacity: 1; opacity: 1;
pointer-events: all;
transform: scale(1) translateY(0); transform: scale(1) translateY(0);
} }
}
:host::before { :host::before {
content: ''; content: '';
@@ -243,9 +313,19 @@ export class SioCombox extends DeesElement {
// Mobile responsive layout - full screen with sliding mechanics // Mobile responsive layout - full screen with sliding mechanics
cssManager.cssForPhablet(css` cssManager.cssForPhablet(css`
:host { :host {
width: 100%; top: 0;
height: 100%; left: 0;
right: 0;
bottom: 0;
width: 100vw;
height: 100vh;
height: 100dvh;
border-radius: 0; border-radius: 0;
transform-origin: center center;
}
:host(.open) {
transform: scale(1) translateY(0);
} }
:host::before { :host::before {

View File

@@ -16,6 +16,8 @@ import { spacing, radius, shadows, transitions } from './00tokens.js';
import { fontFamilies, typography } from './00fonts.js'; import { fontFamilies, typography } from './00fonts.js';
// Types // Types
export type TConversationStatus = 'new' | 'waiting' | 'needs-action' | 'resolved';
export interface IConversation { export interface IConversation {
id: string; id: string;
title: string; title: string;
@@ -23,6 +25,7 @@ export interface IConversation {
time: string; time: string;
unread?: boolean; unread?: boolean;
avatar?: string; avatar?: string;
status?: TConversationStatus;
} }
declare global { declare global {
@@ -232,6 +235,38 @@ export class SioConversationSelector extends DeesElement {
} }
} }
.badge {
display: inline-flex;
align-items: center;
padding: 2px ${unsafeCSS(spacing["2"])};
font-size: 0.625rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.025em;
border-radius: ${unsafeCSS(radius.full)};
white-space: nowrap;
}
.badge.new {
background: ${bdTheme('primary')}20;
color: ${bdTheme('primary')};
}
.badge.waiting {
background: ${bdTheme('muted')};
color: ${bdTheme('mutedForeground')};
}
.badge.needs-action {
background: hsl(38 92% 50% / 0.15);
color: hsl(38 92% 40%);
}
.badge.resolved {
background: ${bdTheme('success')}20;
color: ${bdTheme('success')};
}
.empty-state { .empty-state {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@@ -331,6 +366,7 @@ export class SioConversationSelector extends DeesElement {
<span class="conversation-title"> <span class="conversation-title">
${conv.title} ${conv.title}
${conv.unread ? html`<span class="unread-dot"></span>` : ''} ${conv.unread ? html`<span class="unread-dot"></span>` : ''}
${conv.status ? html`<span class="badge ${conv.status}">${this.getBadgeLabel(conv.status)}</span>` : ''}
</span> </span>
<span class="conversation-time">${conv.time}</span> <span class="conversation-time">${conv.time}</span>
</div> </div>
@@ -389,4 +425,14 @@ export class SioConversationSelector extends DeesElement {
composed: true composed: true
})); }));
} }
private getBadgeLabel(status: TConversationStatus): string {
const labels: Record<TConversationStatus, string> = {
'new': 'New',
'waiting': 'Waiting',
'needs-action': 'Action',
'resolved': 'Resolved',
};
return labels[status];
}
} }

View File

@@ -160,27 +160,6 @@ export class SioDropdownMenu extends DeesElement {
background: ${bdTheme('border')}; background: ${bdTheme('border')};
margin: ${unsafeCSS(spacing["1"])} 0; margin: ${unsafeCSS(spacing["1"])} 0;
} }
/* Mobile adjustments */
@media (max-width: 600px) {
.dropdown {
position: fixed;
top: auto !important;
left: ${unsafeCSS(spacing["4"])} !important;
right: ${unsafeCSS(spacing["4"])};
bottom: ${unsafeCSS(spacing["4"])};
width: auto;
transform-origin: bottom center;
}
.dropdown.open {
transform: translateY(0) scale(1);
}
.dropdown:not(.open) {
transform: translateY(10px) scale(0.95);
}
}
`, `,
]; ];

View File

@@ -32,9 +32,6 @@ export class SioFab extends DeesElement {
@property({ type: Boolean }) @property({ type: Boolean })
public accessor showCombox = false; public accessor showCombox = false;
@state()
private accessor hasShownOnce = false;
@state() @state()
private accessor shouldPulse = false; private accessor shouldPulse = false;
@@ -62,7 +59,6 @@ export class SioFab extends DeesElement {
--fab-gradient-hover-end: #c026d3; --fab-gradient-hover-end: #c026d3;
--fab-shadow-color: rgba(139, 92, 246, 0.25); --fab-shadow-color: rgba(139, 92, 246, 0.25);
--fab-size: 60px; --fab-size: 60px;
--fab-combox-offset: calc(var(--fab-size) + ${unsafeCSS(spacing["4"])});
} }
#mainbox { #mainbox {
@@ -201,63 +197,13 @@ export class SioFab extends DeesElement {
#mainbox .icon.close sio-icon { #mainbox .icon.close sio-icon {
transform: scale(1); transform: scale(1);
} }
#comboxContainer {
position: absolute;
bottom: 0;
right: 0;
pointer-events: none;
}
#comboxContainer sio-combox {
position: absolute;
bottom: var(--fab-combox-offset);
right: 0;
transition: ${unsafeCSS(transitions.all)};
will-change: transform;
transform: translateY(${unsafeCSS(spacing["5"])});
opacity: 0;
pointer-events: none;
}
#comboxContainer.show {
pointer-events: all;
}
#comboxContainer.show sio-combox {
transform: translateY(0px);
opacity: 1;
pointer-events: all;
}
`, `,
// Mobile responsive styles - smaller FAB and full-screen combox // Mobile responsive styles - smaller FAB
cssManager.cssForPhablet(css` cssManager.cssForPhablet(css`
:host { :host {
--fab-size: 48px; --fab-size: 48px;
bottom: 16px; bottom: 16px;
right: 16px; right: 16px;
will-change: auto;
}
#comboxContainer {
position: fixed;
top: 0;
left: 0;
bottom: auto;
right: auto;
width: 100vw;
height: 100vh;
height: 100dvh;
}
#comboxContainer sio-combox {
bottom: 0;
right: 0;
transform: none;
}
#comboxContainer.show sio-combox {
transform: none;
} }
`), `),
]; ];
@@ -276,11 +222,6 @@ export class SioFab extends DeesElement {
<sio-icon icon="x" size="20"></sio-icon> <sio-icon icon="x" size="20"></sio-icon>
</div> </div>
</div> </div>
<div id="comboxContainer" class="${this.showCombox ? 'show' : ''}">
${this.showCombox || this.hasShownOnce ? html`
<sio-combox @close=${() => this.showCombox = false}></sio-combox>
` : ''}
</div>
`; `;
} }
@@ -288,12 +229,12 @@ export class SioFab extends DeesElement {
* toggles the combox * toggles the combox
*/ */
public async toggleCombox() { public async toggleCombox() {
console.log('toggle combox'); const combox = SioCombox.getInstance();
const wasOpen = this.showCombox; if (combox) {
this.showCombox = !this.showCombox; const wasOpen = combox.getIsOpen();
if (this.showCombox) { combox.toggle();
this.hasShownOnce = true; this.showCombox = combox.getIsOpen();
if (!wasOpen) { if (this.showCombox && !wasOpen) {
this.shouldPulse = true; this.shouldPulse = true;
} }
} }
@@ -303,6 +244,14 @@ export class SioFab extends DeesElement {
super.firstUpdated(args); super.firstUpdated(args);
const domtools = await this.domtoolsPromise; const domtools = await this.domtoolsPromise;
// Create the singleton combox on body
const combox = SioCombox.createOnBody();
// Listen for close events
combox.addEventListener('close', () => {
this.showCombox = false;
});
// Set up keyboard shortcut // Set up keyboard shortcut
domtools.keyboard domtools.keyboard
.on([domtools.keyboard.keyEnum.Ctrl, domtools.keyboard.keyEnum.S]) .on([domtools.keyboard.keyEnum.Ctrl, domtools.keyboard.keyEnum.S])
@@ -322,15 +271,5 @@ export class SioFab extends DeesElement {
this.classList.remove('combox-open'); this.classList.remove('combox-open');
} }
} }
// Set reference object when combox is rendered
if ((changedProperties.has('showCombox') || changedProperties.has('hasShownOnce')) &&
(this.showCombox || this.hasShownOnce)) {
const sioCombox: SioCombox = this.shadowRoot.querySelector('sio-combox');
const mainBox: HTMLElement = this.shadowRoot.querySelector('#mainbox');
if (sioCombox && mainBox && !sioCombox.referenceObject) {
sioCombox.referenceObject = mainBox;
}
}
} }
} }