Compare commits

...

19 Commits
v3.4.0 ... main

Author SHA1 Message Date
a778ad6855 v3.7.1
Some checks failed
Default (tags) / security (push) Failing after 13s
Default (tags) / test (push) Failing after 15s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 17:07:41 +00:00
24a1f064ba fix(sidebar): increase scrolled sidebar header box-shadow intensity and size to improve visual separation 2026-01-04 17:07:41 +00:00
203a53a45d v3.7.0
Some checks failed
Default (tags) / security (push) Failing after 13s
Default (tags) / test (push) Failing after 12s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 17:02:15 +00:00
349d4ba320 feat(wcc-sidebar): add header shadow and scrolled state for sidebar menu to show elevation when content is scrolled 2026-01-04 17:02:15 +00:00
399ef3d508 v3.6.2
Some checks failed
Default (tags) / security (push) Failing after 14s
Default (tags) / test (push) Failing after 15s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 16:59:18 +00:00
e0f176b221 v3.6.1
Some checks failed
Default (tags) / security (push) Failing after 14s
Default (tags) / test (push) Failing after 14s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 16:51:52 +00:00
e625fe9ba6 fix(wcc-sidebar): sort sidebar items alphabetically and unify grouped and ungrouped items for consistent ordering 2026-01-04 16:51:52 +00:00
fe62278d74 v3.6.0
Some checks failed
Default (tags) / security (push) Failing after 14s
Default (tags) / test (push) Failing after 15s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 16:41:24 +00:00
3ee8afcdae feat(sidebar): restructure sidebar layout, add search clear button, and improve scrolling behavior 2026-01-04 16:41:24 +00:00
ab517b6ba8 v3.5.3
Some checks failed
Default (tags) / security (push) Failing after 16s
Default (tags) / test (push) Failing after 11s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 15:59:51 +00:00
2e4cbd911c fix(deps): bump dependency versions: @design.estate/dees-domtools to ^2.3.7, @design.estate/dees-element to ^2.1.5, lit to ^3.3.2; update devDependencies @api.global/typedserver to ^8.1.0 and @git.zone/tstest to ^3.1.4 2026-01-04 15:59:51 +00:00
6e14ebde03 v3.5.2
Some checks failed
Default (tags) / security (push) Failing after 16s
Default (tags) / test (push) Failing after 11s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 11:43:54 +00:00
28d1227d30 fix(elements): delay hiding sidebar and properties panels during native-mode transition and use transparent rgba border for frame to avoid layout jumps 2026-01-04 11:43:54 +00:00
8c60d3bea3 v3.5.1
Some checks failed
Default (tags) / security (push) Failing after 14s
Default (tags) / test (push) Failing after 15s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 11:31:02 +00:00
9ed614994f fix(sidebar): disable frame CSS transition while user is resizing the sidebar to prevent janky animations 2026-01-04 11:31:02 +00:00
61b79aa4dc update 2026-01-04 11:29:19 +00:00
1134cba575 update 2026-01-04 10:57:45 +00:00
29c0df489e v3.5.0
Some checks failed
Default (tags) / security (push) Failing after 13s
Default (tags) / test (push) Failing after 15s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 10:48:03 +00:00
53df62a9fd feat(wcctools): add context menu and pinning support, persist pinned state in URL, and add grouped demo test elements 2026-01-04 10:48:03 +00:00
17 changed files with 2002 additions and 223 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -1,5 +1,76 @@
# Changelog
## 2026-01-04 - 3.7.1 - fix(sidebar)
increase scrolled sidebar header box-shadow intensity and size to improve visual separation
- Changed .sidebar-header.scrolled box-shadow from `0 4px 12px -2px rgba(0, 0, 0, 0.4)` to `0 8px 24px -2px rgba(0, 0, 0, 1)`
- File modified: ts_web/elements/wcc-sidebar.ts — stronger, larger, and fully opaque shadow for better contrast when scrolled
## 2026-01-04 - 3.7.0 - feat(wcc-sidebar)
add header shadow and scrolled state for sidebar menu to show elevation when content is scrolled
- Introduce isMenuScrolled state to track whether the menu has been scrolled
- Add handleMenuScroll handler and bind it to the menu scroll event
- Apply a 'scrolled' class to .sidebar-header to add box-shadow and border-bottom color with transitions
- Update template to conditionally add scrolled class and attach scroll listener
## 2026-01-04 - 3.6.2 - fix(wcc-sidebar)
use sidebar's internal .menu element for scroll management and expose scrollableContainer getter
- Add public scrollableContainer getter to wcc-sidebar that returns the .menu element for external scroll control
- Update wcc-dashboard to query wcc-sidebar as WccSidebar and attach scroll listeners to sidebar.scrollableContainer instead of the host element
- Restore sidebar scroll position by setting scrollTop on the scrollableContainer when applying saved positions
- TypeScript casting added to avoid nullable/implicit any issues when querying the sidebar element
## 2026-01-04 - 3.6.1 - fix(wcc-sidebar)
sort sidebar items alphabetically and unify grouped and ungrouped items for consistent ordering
- Unifies ungrouped elements and groups into a single render list using a RenderItem type with a sortKey.
- Sorts all top-level items alphabetically by element name (case-insensitive via toLowerCase) so sidebar order is deterministic.
- Groups are ordered by the first element's name; individual items inside a group preserve their original order.
- Replaces previous separate rendering paths with a single sorted render pass that returns TemplateResult array.
## 2026-01-04 - 3.6.0 - feat(sidebar)
restructure sidebar layout, add search clear button, and improve scrolling behavior
- Change sidebar root to a flex column layout and add a .sidebar-header to separate header content from the scrollable menu
- Move pinned section into the header and make .menu flex: 1 with min-height: 0 so the menu becomes the scrollable area
- Replace overflow-y on the root with overflow:hidden to avoid double scrolling and constrain scrolling to .menu
- Add a clear button for the search input (.search-clear) with positioning, hover styles, and a clearSearch() method to reset the query and emit searchChanged
- Adjust search input padding and make .search-container position: relative to correctly position the clear button
## 2026-01-04 - 3.5.3 - fix(deps)
bump dependency versions: @design.estate/dees-domtools to ^2.3.7, @design.estate/dees-element to ^2.1.5, lit to ^3.3.2; update devDependencies @api.global/typedserver to ^8.1.0 and @git.zone/tstest to ^3.1.4
- Updated runtime dependencies: @design.estate/dees-domtools ^2.3.7, @design.estate/dees-element ^2.1.5, lit ^3.3.2.
- Updated devDependencies: @api.global/typedserver ^8.1.0 (major bump), @git.zone/tstest ^3.1.4.
- @api.global/typedserver major bump affects development tooling only (devDependency), not runtime API.
- Current package version is 3.5.2; recommend a patch release to 3.5.3.
## 2026-01-04 - 3.5.2 - fix(elements)
delay hiding sidebar and properties panels during native-mode transition and use transparent rgba border for frame to avoid layout jumps
- Add isHidden state to wcc-sidebar and wcc-properties and switch display bindings to use isHidden instead of directly using isNative
- Introduce a 300ms delayed hide when entering native mode so UI hides after frame animation completes; show immediately when exiting native mode
- Replace hardcoded hex border values in wcc-frame with rgba and set native border to a transparent 0px to prevent abrupt visual jumps
## 2026-01-04 - 3.5.1 - fix(sidebar)
disable frame CSS transition while user is resizing the sidebar to prevent janky animations
- Added isResizing boolean property to wcc-frame to toggle transitions during resize
- Set frame.isResizing = true at resize start and false on mouseup to re-enable transitions
- Updated CSS to skip transition while isResizing is true
- Files changed: ts_web/elements/wcc-frame.ts, ts_web/elements/wcc-sidebar.ts
## 2026-01-04 - 3.5.0 - feat(wcctools)
add context menu and pinning support, persist pinned state in URL, and add grouped demo test elements
- Add wcc-contextmenu custom element with a static show() API, proper positioning, visibility transitions, outside-click and Escape handling, and menu item actions.
- Introduce pinnedItems (Set<string>) on wcc-dashboard and wcc-sidebar; pass pinnedItems to the sidebar, handle pinnedChanged events, and persist pinned item keys in the URL query param 'pinned'. Changes include defensive updates to avoid unnecessary update loops.
- Enhance wcc-sidebar to render pinned state: new styles for pinned items and pinned sections, contextmenu integration for element items, adjusted layout (grid-template-columns) and improved element/demo rendering logic.
- Add grouped demo test components and exports to demo the demoGroup feature: test-button-primary, test-button-secondary, test-button-danger, test-input-text, and test-input-checkbox.
- Misc: adjust dashboard URL state serialization/deserialization to include pinned items and ensure scroll/search state handling remains stable.
## 2025-12-30 - 3.4.0 - feat(sidebar)
add searchable sidebar with URL-backed query state and highlighted matches

View File

@@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-wcctools",
"version": "3.4.0",
"version": "3.7.1",
"private": false,
"description": "A set of web component tools for creating element catalogues, enabling the structured development and documentation of custom elements and pages.",
"exports": {
@@ -17,17 +17,17 @@
"author": "Lossless GmbH",
"license": "UNLICENSED",
"dependencies": {
"@design.estate/dees-domtools": "^2.3.6",
"@design.estate/dees-element": "^2.1.3",
"@design.estate/dees-domtools": "^2.3.7",
"@design.estate/dees-element": "^2.1.5",
"@push.rocks/smartdelay": "^3.0.5",
"lit": "^3.3.1"
"lit": "^3.3.2"
},
"devDependencies": {
"@api.global/typedserver": "^7.11.1",
"@api.global/typedserver": "^8.1.0",
"@git.zone/tsbuild": "^4.0.2",
"@git.zone/tsbundle": "^2.6.3",
"@git.zone/tsrun": "^2.0.1",
"@git.zone/tstest": "^3.1.3",
"@git.zone/tstest": "^3.1.4",
"@git.zone/tswatch": "^2.3.13",
"@push.rocks/projectinfo": "^5.0.2",
"@types/node": "^25.0.3"

959
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,3 +4,10 @@ export * from './test-complextypes.js';
export * from './test-withwrapper.js';
export * from './test-edgecases.js';
export * from './test-nested.js';
// Grouped elements to demo the demoGroup feature
export * from './test-button-primary.js';
export * from './test-button-secondary.js';
export * from './test-button-danger.js';
export * from './test-input-text.js';
export * from './test-input-checkbox.js';

View File

@@ -0,0 +1,45 @@
import {
DeesElement,
customElement,
html,
property,
css,
} from '@design.estate/dees-element';
@customElement('test-button-danger')
export class TestButtonDanger extends DeesElement {
// Same group as other buttons
public static demoGroup = 'Buttons';
public static demo = () => html`
<test-button-danger>Delete</test-button-danger>
`;
@property({ type: String })
accessor label: string = 'Delete';
public static styles = [
css`
:host {
display: inline-block;
}
button {
background: #ef4444;
color: white;
border: none;
padding: 10px 20px;
border-radius: 6px;
font-size: 14px;
cursor: pointer;
transition: background 0.2s;
}
button:hover {
background: #dc2626;
}
`,
];
public render() {
return html`<button><slot>${this.label}</slot></button>`;
}
}

View File

@@ -0,0 +1,45 @@
import {
DeesElement,
customElement,
html,
property,
css,
} from '@design.estate/dees-element';
@customElement('test-button-primary')
export class TestButtonPrimary extends DeesElement {
// This groups the element with other "Buttons" in the sidebar
public static demoGroup = 'Buttons';
public static demo = () => html`
<test-button-primary>Click Me</test-button-primary>
`;
@property({ type: String })
accessor label: string = 'Button';
public static styles = [
css`
:host {
display: inline-block;
}
button {
background: #3b82f6;
color: white;
border: none;
padding: 10px 20px;
border-radius: 6px;
font-size: 14px;
cursor: pointer;
transition: background 0.2s;
}
button:hover {
background: #2563eb;
}
`,
];
public render() {
return html`<button><slot>${this.label}</slot></button>`;
}
}

View File

@@ -0,0 +1,45 @@
import {
DeesElement,
customElement,
html,
property,
css,
} from '@design.estate/dees-element';
@customElement('test-button-secondary')
export class TestButtonSecondary extends DeesElement {
// Same group as test-button-primary - they'll appear together
public static demoGroup = 'Buttons';
public static demo = () => html`
<test-button-secondary>Secondary Action</test-button-secondary>
`;
@property({ type: String })
accessor label: string = 'Button';
public static styles = [
css`
:host {
display: inline-block;
}
button {
background: transparent;
color: #3b82f6;
border: 1px solid #3b82f6;
padding: 10px 20px;
border-radius: 6px;
font-size: 14px;
cursor: pointer;
transition: all 0.2s;
}
button:hover {
background: rgba(59, 130, 246, 0.1);
}
`,
];
public render() {
return html`<button><slot>${this.label}</slot></button>`;
}
}

View File

@@ -0,0 +1,68 @@
import {
DeesElement,
customElement,
html,
property,
css,
} from '@design.estate/dees-element';
@customElement('test-input-checkbox')
export class TestInputCheckbox extends DeesElement {
// Same group as test-input-text
public static demoGroup = 'Inputs';
public static demo = () => html`
<test-input-checkbox label="Accept terms and conditions"></test-input-checkbox>
`;
@property({ type: String })
accessor label: string = 'Checkbox';
@property({ type: Boolean })
accessor checked: boolean = false;
public static styles = [
css`
:host {
display: inline-flex;
align-items: center;
gap: 8px;
cursor: pointer;
}
.checkbox {
width: 18px;
height: 18px;
border: 1px solid #333;
border-radius: 4px;
background: #1a1a1a;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.checkbox.checked {
background: #3b82f6;
border-color: #3b82f6;
}
.checkbox.checked::after {
content: '✓';
color: white;
font-size: 12px;
}
.label {
color: #e5e5e5;
font-size: 14px;
}
`,
];
public render() {
return html`
<div
class="checkbox ${this.checked ? 'checked' : ''}"
@click=${() => this.checked = !this.checked}
></div>
<span class="label">${this.label}</span>
`;
}
}

View File

@@ -0,0 +1,59 @@
import {
DeesElement,
customElement,
html,
property,
css,
} from '@design.estate/dees-element';
@customElement('test-input-text')
export class TestInputText extends DeesElement {
// Different group - "Inputs"
public static demoGroup = 'Inputs';
public static demo = () => html`
<test-input-text placeholder="Enter text..."></test-input-text>
`;
@property({ type: String })
accessor placeholder: string = '';
@property({ type: String })
accessor value: string = '';
public static styles = [
css`
:host {
display: inline-block;
}
input {
background: #1a1a1a;
color: #e5e5e5;
border: 1px solid #333;
padding: 10px 14px;
border-radius: 6px;
font-size: 14px;
outline: none;
transition: border-color 0.2s;
min-width: 200px;
}
input:focus {
border-color: #3b82f6;
}
input::placeholder {
color: #666;
}
`,
];
public render() {
return html`
<input
type="text"
.placeholder=${this.placeholder}
.value=${this.value}
@input=${(e: Event) => this.value = (e.target as HTMLInputElement).value}
/>
`;
}
}

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-wcctools',
version: '3.4.0',
version: '3.7.1',
description: 'A set of web component tools for creating element catalogues, enabling the structured development and documentation of custom elements and pages.'
}

View File

@@ -0,0 +1,211 @@
import { DeesElement, property, html, customElement, type TemplateResult, state, css, cssManager } from '@design.estate/dees-element';
export interface IContextMenuItem {
name: string;
iconName?: string;
action: () => void | Promise<void>;
disabled?: boolean;
}
@customElement('wcc-contextmenu')
export class WccContextmenu extends DeesElement {
// Static method to show context menu at position
public static async show(
event: MouseEvent,
menuItems: IContextMenuItem[]
): Promise<void> {
event.preventDefault();
event.stopPropagation();
// Remove any existing context menu
const existing = document.querySelector('wcc-contextmenu');
if (existing) {
existing.remove();
}
const menu = new WccContextmenu();
menu.menuItems = menuItems;
menu.x = event.clientX;
menu.y = event.clientY;
document.body.appendChild(menu);
// Wait for render then adjust position if needed
await menu.updateComplete;
menu.adjustPosition();
}
@property({ type: Array })
accessor menuItems: IContextMenuItem[] = [];
@property({ type: Number })
accessor x: number = 0;
@property({ type: Number })
accessor y: number = 0;
@state()
accessor visible: boolean = false;
private boundHandleOutsideClick = this.handleOutsideClick.bind(this);
private boundHandleKeydown = this.handleKeydown.bind(this);
public static styles = [
css`
:host {
position: fixed;
z-index: 10000;
opacity: 0;
transform: scale(0.95) translateY(-5px);
transition: opacity 0.15s ease, transform 0.15s ease;
pointer-events: none;
}
:host(.visible) {
opacity: 1;
transform: scale(1) translateY(0);
pointer-events: auto;
}
.menu {
min-width: 160px;
background: #0f0f0f;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 6px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
padding: 4px 0;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
font-size: 12px;
}
.menu-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
color: #ccc;
cursor: pointer;
transition: background 0.1s ease;
user-select: none;
}
.menu-item:hover {
background: rgba(59, 130, 246, 0.15);
color: #fff;
}
.menu-item.disabled {
opacity: 0.4;
cursor: not-allowed;
pointer-events: none;
}
.menu-item .icon {
font-family: 'Material Symbols Outlined';
font-size: 16px;
font-weight: normal;
font-style: normal;
line-height: 1;
letter-spacing: normal;
text-transform: none;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
opacity: 0.7;
}
.menu-item:hover .icon {
opacity: 1;
}
.menu-item .label {
flex: 1;
}
`
];
public render(): TemplateResult {
return html`
<div class="menu">
${this.menuItems.map(item => html`
<div
class="menu-item ${item.disabled ? 'disabled' : ''}"
@click=${() => this.handleItemClick(item)}
>
${item.iconName ? html`<span class="icon">${item.iconName}</span>` : null}
<span class="label">${item.name}</span>
</div>
`)}
</div>
`;
}
async connectedCallback() {
await super.connectedCallback();
// Delay adding listeners to avoid immediate close
requestAnimationFrame(() => {
document.addEventListener('click', this.boundHandleOutsideClick);
document.addEventListener('contextmenu', this.boundHandleOutsideClick);
document.addEventListener('keydown', this.boundHandleKeydown);
this.classList.add('visible');
});
}
async disconnectedCallback() {
await super.disconnectedCallback();
document.removeEventListener('click', this.boundHandleOutsideClick);
document.removeEventListener('contextmenu', this.boundHandleOutsideClick);
document.removeEventListener('keydown', this.boundHandleKeydown);
}
private adjustPosition() {
const rect = this.getBoundingClientRect();
const windowWidth = window.innerWidth;
const windowHeight = window.innerHeight;
let x = this.x;
let y = this.y;
// Adjust if menu goes off right edge
if (x + rect.width > windowWidth - 10) {
x = windowWidth - rect.width - 10;
}
// Adjust if menu goes off bottom edge
if (y + rect.height > windowHeight - 10) {
y = windowHeight - rect.height - 10;
}
// Ensure not off left or top
if (x < 10) x = 10;
if (y < 10) y = 10;
this.style.left = `${x}px`;
this.style.top = `${y}px`;
}
private handleOutsideClick(e: Event) {
const path = e.composedPath();
if (!path.includes(this)) {
this.close();
}
}
private handleKeydown(e: KeyboardEvent) {
if (e.key === 'Escape') {
this.close();
}
}
private async handleItemClick(item: IContextMenuItem) {
if (item.disabled) return;
await item.action();
this.close();
}
private close() {
this.classList.remove('visible');
setTimeout(() => this.remove(), 150);
}
}

View File

@@ -12,6 +12,7 @@ import './wcc-properties.js';
import { type TTheme } from './wcc-properties.js';
import { breakpoints } from '@design.estate/dees-domtools';
import { WccFrame } from './wcc-frame.js';
import { WccSidebar } from './wcc-sidebar.js';
/**
* Get filtered and sorted items from a section
@@ -62,6 +63,14 @@ export class WccDashboard extends DeesElement {
@property()
accessor searchQuery: string = '';
// Pinned items as Set of "sectionName::itemName"
@property({ attribute: false })
accessor pinnedItems: Set<string> = new Set();
// Sidebar width (resizable)
@property({ type: Number })
accessor sidebarWidth: number = 200;
// Derived from selectedViewport - no need for separate property
public get isNative(): boolean {
return this.selectedViewport === 'native';
@@ -122,6 +131,8 @@ export class WccDashboard extends DeesElement {
.dashboardRef=${this}
.selectedItem=${this.selectedItem}
.searchQuery=${this.searchQuery}
.pinnedItems=${this.pinnedItems}
.sidebarWidth=${this.sidebarWidth}
.isNative=${this.isNative}
@selectedType=${(eventArg) => {
this.selectedType = eventArg.detail;
@@ -136,6 +147,19 @@ export class WccDashboard extends DeesElement {
this.searchQuery = eventArg.detail;
this.updateUrlWithScrollState();
}}
@pinnedChanged=${(eventArg: CustomEvent) => {
this.pinnedItems = eventArg.detail;
this.updateUrlWithScrollState();
}}
@widthChanged=${async (eventArg: CustomEvent) => {
this.sidebarWidth = eventArg.detail;
this.updateUrlWithScrollState();
const frame = await this.wccFrame;
if (frame) {
frame.sidebarWidth = eventArg.detail;
frame.requestUpdate();
}
}}
></wcc-sidebar>
<wcc-properties
.dashboardRef=${this}
@@ -144,6 +168,7 @@ export class WccDashboard extends DeesElement {
.selectedViewport=${this.selectedViewport}
.selectedTheme=${this.selectedTheme}
.isNative=${this.isNative}
.sidebarWidth=${this.sidebarWidth}
@selectedViewport=${(eventArg) => {
this.selectedViewport = eventArg.detail;
this.scheduleUpdate();
@@ -162,7 +187,7 @@ export class WccDashboard extends DeesElement {
this.toggleNative();
}}
></wcc-properties>
<wcc-frame id="wccFrame" viewport=${this.selectedViewport} .isNative=${this.isNative}>
<wcc-frame id="wccFrame" viewport=${this.selectedViewport} .isNative=${this.isNative} .sidebarWidth=${this.sidebarWidth}>
</wcc-frame>
`;
}
@@ -237,6 +262,8 @@ export class WccDashboard extends DeesElement {
const search = routeInfo.queryParams.search;
const frameScrollY = routeInfo.queryParams.frameScrollY;
const sidebarScrollY = routeInfo.queryParams.sidebarScrollY;
const pinned = routeInfo.queryParams.pinned;
const sidebarWidth = routeInfo.queryParams.sidebarWidth;
if (search) {
this.searchQuery = search;
@@ -249,13 +276,36 @@ export class WccDashboard extends DeesElement {
if (sidebarScrollY) {
this.sidebarScrollY = parseInt(sidebarScrollY);
}
if (pinned) {
const newPinned = new Set(pinned.split(',').filter(Boolean));
// Only update if actually different to avoid update loops
if (this.pinnedItems.size !== newPinned.size ||
![...newPinned].every(k => this.pinnedItems.has(k))) {
this.pinnedItems = newPinned;
}
} else if (this.pinnedItems.size > 0) {
this.pinnedItems = new Set();
}
if (sidebarWidth) {
this.sidebarWidth = parseInt(sidebarWidth, 10);
}
// Apply scroll positions after a short delay to ensure DOM is ready
setTimeout(() => {
// Apply scroll positions and update frame after a short delay to ensure DOM is ready
setTimeout(async () => {
this.applyScrollPositions();
// Ensure frame gets the sidebarWidth
const frame = await this.wccFrame;
if (frame) {
frame.sidebarWidth = this.sidebarWidth;
frame.requestUpdate();
}
}, 100);
} else {
this.searchQuery = '';
// Only clear if not already empty to avoid update loops
if (this.pinnedItems.size > 0) {
this.pinnedItems = new Set();
}
}
const domtoolsInstance = await plugins.deesDomtools.elementBasic.setup();
@@ -301,6 +351,8 @@ export class WccDashboard extends DeesElement {
const search = routeInfo.queryParams.search;
const frameScrollY = routeInfo.queryParams.frameScrollY;
const sidebarScrollY = routeInfo.queryParams.sidebarScrollY;
const pinned = routeInfo.queryParams.pinned;
const sidebarWidth = routeInfo.queryParams.sidebarWidth;
if (search) {
this.searchQuery = search;
@@ -313,6 +365,19 @@ export class WccDashboard extends DeesElement {
if (sidebarScrollY) {
this.sidebarScrollY = parseInt(sidebarScrollY);
}
if (pinned) {
const newPinned = new Set(pinned.split(',').filter(Boolean));
// Only update if actually different to avoid update loops
if (this.pinnedItems.size !== newPinned.size ||
![...newPinned].every(k => this.pinnedItems.has(k))) {
this.pinnedItems = newPinned;
}
} else if (this.pinnedItems.size > 0) {
this.pinnedItems = new Set();
}
if (sidebarWidth) {
this.sidebarWidth = parseInt(sidebarWidth, 10);
}
// Apply scroll positions after a short delay to ensure DOM is ready
setTimeout(() => {
@@ -320,6 +385,10 @@ export class WccDashboard extends DeesElement {
}, 100);
} else {
this.searchQuery = '';
// Only clear if not already empty to avoid update loops
if (this.pinnedItems.size > 0) {
this.pinnedItems = new Set();
}
}
const domtoolsInstance = await plugins.deesDomtools.elementBasic.setup();
@@ -402,6 +471,12 @@ export class WccDashboard extends DeesElement {
if (this.sidebarScrollY > 0) {
queryParams.set('sidebarScrollY', this.sidebarScrollY.toString());
}
if (this.pinnedItems.size > 0) {
queryParams.set('pinned', Array.from(this.pinnedItems).join(','));
}
if (this.sidebarWidth !== 200) {
queryParams.set('sidebarWidth', this.sidebarWidth.toString());
}
const queryString = queryParams.toString();
const fullUrl = queryString ? `${baseUrl}?${queryString}` : baseUrl;
@@ -417,10 +492,10 @@ export class WccDashboard extends DeesElement {
if (this.scrollListenersAttached) {
return;
}
const wccFrame = await this.wccFrame;
const wccSidebar = this.shadowRoot.querySelector('wcc-sidebar');
const wccSidebar = this.shadowRoot.querySelector('wcc-sidebar') as WccSidebar | null;
if (wccFrame) {
// The frame element itself is the scrollable container
wccFrame.addEventListener('scroll', () => {
@@ -431,11 +506,14 @@ export class WccDashboard extends DeesElement {
}
if (wccSidebar) {
// The sidebar element itself is the scrollable container
wccSidebar.addEventListener('scroll', () => {
this.sidebarScrollY = wccSidebar.scrollTop;
this.debouncedScrollUpdate();
});
// Use the sidebar's scrollable container (.menu element)
const scrollContainer = wccSidebar.scrollableContainer;
if (scrollContainer) {
scrollContainer.addEventListener('scroll', () => {
this.sidebarScrollY = scrollContainer.scrollTop;
this.debouncedScrollUpdate();
});
}
}
}
@@ -462,6 +540,12 @@ export class WccDashboard extends DeesElement {
if (this.sidebarScrollY > 0) {
queryParams.set('sidebarScrollY', this.sidebarScrollY.toString());
}
if (this.pinnedItems.size > 0) {
queryParams.set('pinned', Array.from(this.pinnedItems).join(','));
}
if (this.sidebarWidth !== 200) {
queryParams.set('sidebarWidth', this.sidebarWidth.toString());
}
const queryString = queryParams.toString();
const fullUrl = queryString ? `${baseUrl}?${queryString}` : baseUrl;
@@ -475,18 +559,21 @@ export class WccDashboard extends DeesElement {
if (this.scrollPositionsApplied) {
return;
}
const wccFrame = await this.wccFrame;
const wccSidebar = this.shadowRoot.querySelector('wcc-sidebar');
const wccSidebar = this.shadowRoot.querySelector('wcc-sidebar') as WccSidebar | null;
if (wccFrame && this.frameScrollY > 0) {
// The frame element itself is the scrollable container
wccFrame.scrollTop = this.frameScrollY;
}
if (wccSidebar && this.sidebarScrollY > 0) {
// The sidebar element itself is the scrollable container
wccSidebar.scrollTop = this.sidebarScrollY;
// Use the sidebar's scrollable container (.menu element)
const scrollContainer = wccSidebar.scrollableContainer;
if (scrollContainer) {
scrollContainer.scrollTop = this.sidebarScrollY;
}
}
this.scrollPositionsApplied = true;

View File

@@ -19,13 +19,18 @@ export class WccFrame extends DeesElement {
@property({ type: Boolean })
accessor isNative: boolean = false;
@property({ type: Number })
accessor sidebarWidth: number = 200;
@property({ type: Boolean })
accessor isResizing: boolean = false;
public static styles = [
css`
:host {
border: 10px solid #ffaeaf;
border: 10px solid rgba(255, 174, 175, 1);
position: absolute;
background: ${cssManager.bdTheme('#333', '#000')};
left: 200px;
right: 0px;
top: 0px;
overflow-y: auto;
@@ -47,17 +52,17 @@ export class WccFrame extends DeesElement {
<style>
:host {
${this.isNative ? `
border: none !important;
border: 0px solid rgba(255, 174, 175, 0) !important;
left: 0px !important;
right: 0px !important;
top: 0px !important;
bottom: 0px !important;
` : `
bottom: ${this.advancedEditorOpen ? '400px' : '100px'};
border: 10px solid #ffaeaf;
left: 200px;
border: 10px solid rgba(255, 174, 175, 1);
left: ${this.sidebarWidth}px;
`}
transition: all 0.3s ease;
transition: ${this.isResizing ? 'none' : 'all 0.3s ease'};
${this.isNative ? 'padding: 0px;' : (() => {
switch (this.viewport) {
case 'desktop':
@@ -67,19 +72,19 @@ export class WccFrame extends DeesElement {
case 'tablet':
return `
padding: 0px ${
(document.body.clientWidth - 200 - domtools.breakpoints.tablet) / 2
(document.body.clientWidth - this.sidebarWidth - domtools.breakpoints.tablet) / 2
}px;
`;
case 'phablet':
return `
padding: 0px ${
(document.body.clientWidth - 200 - domtools.breakpoints.phablet) / 2
(document.body.clientWidth - this.sidebarWidth - domtools.breakpoints.phablet) / 2
}px;
`;
case 'phone':
return `
padding: 0px ${
(document.body.clientWidth - 200 - domtools.breakpoints.phone) / 2
(document.body.clientWidth - this.sidebarWidth - domtools.breakpoints.phone) / 2
}px;
`;
}

View File

@@ -37,6 +37,9 @@ export class WccProperties extends DeesElement {
@property()
accessor isNative: boolean = false;
@property({ type: Number })
accessor sidebarWidth: number = 200;
@state()
accessor propertyContent: TemplateResult[] = [];
@@ -60,6 +63,10 @@ export class WccProperties extends DeesElement {
@state()
accessor recordingDuration: number = 0;
// Delayed hide for native mode transition
@state()
accessor isHidden: boolean = false;
public editorHeight: number = 300;
public render(): TemplateResult {
@@ -89,14 +96,14 @@ export class WccProperties extends DeesElement {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
box-sizing: border-box;
position: absolute;
left: 200px;
left: ${this.sidebarWidth}px;
height: ${this.editingProperties.length > 0 ? 100 + this.editorHeight : 100}px;
bottom: 0px;
right: 0px;
overflow: hidden;
background: var(--background);
color: var(--foreground);
display: ${this.isNative ? 'none' : 'block'};
display: ${this.isHidden ? 'none' : 'block'};
}
.grid {
display: grid;
@@ -928,6 +935,19 @@ export class WccProperties extends DeesElement {
protected updated(changedProperties: Map<string, unknown>) {
super.updated(changedProperties);
// Handle delayed hide for native mode transition
if (changedProperties.has('isNative')) {
if (this.isNative) {
// Delay hiding until frame animation completes
setTimeout(() => {
this.isHidden = true;
}, 300);
} else {
// Show immediately when exiting native mode
this.isHidden = false;
}
}
// Only recreate properties when selectedItem changes
if (changedProperties.has('selectedItem')) {
this.createProperties().catch(error => {

View File

@@ -4,6 +4,7 @@ import { WccDashboard, getSectionItems } from './wcc-dashboard.js';
import type { TTemplateFactory } from './wcctools.helpers.js';
import { getDemoCount, hasMultipleDemos } from './wcctools.helpers.js';
import type { IWccSection, TElementType } from '../wcctools.interfaces.js';
import { WccContextmenu } from './wcc-contextmenu.js';
@customElement('wcc-sidebar')
export class WccSidebar extends DeesElement {
@@ -31,8 +32,35 @@ export class WccSidebar extends DeesElement {
@property()
accessor searchQuery: string = '';
// Pinned items as Set of "sectionName::itemName"
@property({ attribute: false })
accessor pinnedItems: Set<string> = new Set();
// Sidebar width (resizable)
@property({ type: Number })
accessor sidebarWidth: number = 200;
// Track if currently resizing
@state()
accessor isResizing: boolean = false;
// Delayed hide for native mode transition
@state()
accessor isHidden: boolean = false;
// Track if menu is scrolled for header shadow
@state()
accessor isMenuScrolled: boolean = false;
private sectionsInitialized = false;
/**
* Returns the scrollable container element (.menu) for external scroll management
*/
public get scrollableContainer(): HTMLElement | null {
return this.shadowRoot?.querySelector('.menu') as HTMLElement | null;
}
public render(): TemplateResult {
return html`
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" rel="stylesheet" />
@@ -54,23 +82,40 @@ export class WccSidebar extends DeesElement {
--ring: #3b82f6;
--radius: 4px;
display: ${this.isNative ? 'none' : 'block'};
display: ${this.isHidden ? 'none' : 'flex'};
flex-direction: column;
border-right: 1px solid rgba(255, 255, 255, 0.08);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
font-size: 14px;
box-sizing: border-box;
position: absolute;
left: 0px;
width: 200px;
width: ${this.sidebarWidth}px;
top: 0px;
bottom: 0px;
overflow-y: auto;
overflow-x: hidden;
overflow: hidden;
background: var(--background);
color: var(--foreground);
}
.sidebar-header {
flex-shrink: 0;
transition: box-shadow 0.2s ease, border-color 0.2s ease;
border-bottom: 1px solid transparent;
position: relative;
z-index: 1;
}
.sidebar-header.scrolled {
box-shadow: 0 8px 24px -2px rgba(0, 0, 0, 1);
border-bottom-color: var(--border);
}
.menu {
flex: 1;
min-height: 0;
overflow-y: auto;
overflow-x: hidden;
padding: 0.5rem 0;
}
@@ -159,7 +204,11 @@ export class WccSidebar extends DeesElement {
}
.selectOption.folder {
grid-template-columns: 16px 20px 1fr;
grid-template-columns: 16px 1fr;
}
.selectOption.folder .text {
margin-left: 4px;
}
.selectOption .expand-icon {
@@ -260,6 +309,7 @@ export class WccSidebar extends DeesElement {
.search-container {
padding: 0.5rem;
border-bottom: 1px solid var(--border);
position: relative;
}
.search-input {
@@ -268,7 +318,7 @@ export class WccSidebar extends DeesElement {
background: var(--input);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 0.5rem 0.75rem;
padding: 0.5rem 1.75rem 0.5rem 0.75rem;
color: var(--foreground);
font-size: 0.75rem;
font-family: inherit;
@@ -284,23 +334,146 @@ export class WccSidebar extends DeesElement {
color: var(--muted-foreground);
}
.search-clear {
position: absolute;
right: 0.75rem;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
padding: 0.25rem;
cursor: pointer;
color: var(--muted-foreground);
display: flex;
align-items: center;
justify-content: center;
border-radius: 2px;
transition: color 0.15s ease, background 0.15s ease;
}
.search-clear:hover {
color: var(--foreground);
background: rgba(255, 255, 255, 0.1);
}
.search-clear .material-symbols-outlined {
font-size: 14px;
opacity: 1;
}
.highlight {
background: rgba(59, 130, 246, 0.3);
border-radius: 2px;
}
/* Pinned item highlight in original section */
.selectOption.pinned {
background: rgba(245, 158, 11, 0.08);
}
.selectOption.pinned:hover {
background: rgba(245, 158, 11, 0.12);
}
.selectOption.pinned.selected {
background: rgba(245, 158, 11, 0.18);
}
/* Pinned section styling */
.section-header.pinned-section {
background: rgba(245, 158, 11, 0.08);
color: #f59e0b;
}
.section-header.pinned-section:hover {
background: rgba(245, 158, 11, 0.12);
}
.section-header.pinned-section .section-icon {
opacity: 0.8;
}
/* Section tag pill for pinned items */
.section-tag {
font-size: 0.5rem;
color: #888;
margin-left: auto;
text-transform: uppercase;
letter-spacing: 0.02em;
background: rgba(255, 255, 255, 0.06);
padding: 0.15rem 0.4rem;
border-radius: 9999px;
white-space: nowrap;
}
/* Group container */
.item-group {
margin: 0.375rem 0.375rem;
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 6px;
padding: 0.25rem 0;
background: rgba(255, 255, 255, 0.01);
}
.item-group-legend {
font-size: 0.55rem;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #555;
padding: 0.125rem 0.625rem 0.25rem;
display: block;
}
.item-group .selectOption {
margin-left: 0.25rem;
margin-right: 0.25rem;
}
/* Resize handle */
.resize-handle {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 4px;
cursor: col-resize;
background: transparent;
transition: background 0.15s ease;
z-index: 10;
}
.resize-handle:hover {
background: rgba(59, 130, 246, 0.3);
}
.resize-handle.active {
background: var(--primary);
}
</style>
<div class="search-container">
<input
type="text"
class="search-input"
placeholder="Search..."
.value=${this.searchQuery}
@input=${this.handleSearchInput}
/>
<div class="sidebar-header ${this.isMenuScrolled ? 'scrolled' : ''}">
<div class="search-container">
<input
type="text"
class="search-input"
placeholder="Search..."
.value=${this.searchQuery}
@input=${this.handleSearchInput}
/>
${this.searchQuery ? html`
<button class="search-clear" @click=${this.clearSearch}>
<i class="material-symbols-outlined">close</i>
</button>
` : null}
</div>
${this.renderPinnedSection()}
</div>
<div class="menu">
<div class="menu" @scroll=${this.handleMenuScroll}>
${this.renderSections()}
</div>
<div
class="resize-handle ${this.isResizing ? 'active' : ''}"
@mousedown=${this.startResize}
></div>
`;
}
@@ -308,7 +481,7 @@ export class WccSidebar extends DeesElement {
* Initialize collapsed sections from section config
*/
private initCollapsedSections() {
if (this.sectionsInitialized) return;
if (this.sectionsInitialized || !this.dashboardRef?.sections) return;
const collapsed = new Set<string>();
for (const section of this.dashboardRef.sections) {
@@ -320,13 +493,114 @@ export class WccSidebar extends DeesElement {
this.sectionsInitialized = true;
}
// ============ Pinning helpers ============
private getPinKey(sectionName: string, itemName: string): string {
return `${sectionName}::${itemName}`;
}
private isPinned(sectionName: string, itemName: string): boolean {
return this.pinnedItems.has(this.getPinKey(sectionName, itemName));
}
private togglePin(sectionName: string, itemName: string) {
const key = this.getPinKey(sectionName, itemName);
const newPinned = new Set(this.pinnedItems);
if (newPinned.has(key)) {
newPinned.delete(key);
} else {
newPinned.add(key);
}
this.pinnedItems = newPinned;
this.dispatchEvent(new CustomEvent('pinnedChanged', { detail: newPinned }));
}
private showContextMenu(e: MouseEvent, sectionName: string, itemName: string) {
const isPinned = this.isPinned(sectionName, itemName);
WccContextmenu.show(e, [
{
name: isPinned ? 'Unpin' : 'Pin',
iconName: isPinned ? 'push_pin' : 'push_pin',
action: () => this.togglePin(sectionName, itemName),
},
]);
}
/**
* Render the PINNED section (only if there are pinned items)
*/
private renderPinnedSection() {
if (!this.dashboardRef?.sections || this.pinnedItems.size === 0) {
return null;
}
const isCollapsed = this.collapsedSections.has('__pinned__');
// Collect pinned items with their original section info
// Pinned items are NOT filtered by search - they always remain visible
const pinnedEntries: Array<{ sectionName: string; itemName: string; item: any; section: IWccSection }> = [];
for (const key of this.pinnedItems) {
const [sectionName, itemName] = key.split('::');
const section = this.dashboardRef.sections.find(s => s.name === sectionName);
if (section) {
const entries = getSectionItems(section);
const found = entries.find(([name]) => name === itemName);
if (found) {
pinnedEntries.push({ sectionName, itemName, item: found[1], section });
}
}
}
if (pinnedEntries.length === 0) {
return null;
}
return html`
<div
class="section-header pinned-section ${isCollapsed ? 'collapsed' : ''}"
@click=${() => this.toggleSectionCollapsed('__pinned__')}
>
<i class="material-symbols-outlined expand-icon">expand_more</i>
<i class="material-symbols-outlined section-icon">push_pin</i>
<span>Pinned</span>
</div>
<div class="section-content ${isCollapsed ? 'collapsed' : ''}">
${pinnedEntries.map(({ sectionName, itemName, item, section }) => {
const isSelected = this.selectedItem === item;
const type = section.type === 'elements' ? 'element' : 'page';
const icon = section.type === 'elements' ? 'featured_video' : 'insert_drive_file';
return html`
<div
class="selectOption ${isSelected ? 'selected' : ''}"
@click=${async () => {
await plugins.deesDomtools.DomTools.setupDomTools();
this.selectItem(type, itemName, item, 0, section);
}}
@contextmenu=${(e: MouseEvent) => this.showContextMenu(e, sectionName, itemName)}
>
<i class="material-symbols-outlined">${icon}</i>
<div class="text">${this.highlightMatch(itemName)}</div>
<span class="section-tag">${sectionName}</span>
</div>
`;
})}
</div>
`;
}
/**
* Render all sections
*/
private renderSections() {
if (!this.dashboardRef?.sections) {
return null;
}
this.initCollapsedSections();
return this.dashboardRef.sections.map((section, index) => {
return this.dashboardRef.sections.map((section) => {
// Check if section has any matching items
const entries = getSectionItems(section);
const filteredEntries = entries.filter(([name]) => this.matchesSearch(name));
@@ -365,13 +639,15 @@ export class WccSidebar extends DeesElement {
if (section.type === 'pages') {
return filteredEntries.map(([pageName, item]) => {
const isPinned = this.isPinned(section.name, pageName);
return html`
<div
class="selectOption ${this.selectedItem === item ? 'selected' : ''}"
class="selectOption ${this.selectedItem === item ? 'selected' : ''} ${isPinned ? 'pinned' : ''}"
@click=${async () => {
await plugins.deesDomtools.DomTools.setupDomTools();
this.selectItem('page', pageName, item, 0, section);
}}
@contextmenu=${(e: MouseEvent) => this.showContextMenu(e, section.name, pageName)}
>
<i class="material-symbols-outlined">insert_drive_file</i>
<div class="text">${this.highlightMatch(pageName)}</div>
@@ -379,58 +655,51 @@ export class WccSidebar extends DeesElement {
`;
});
} else {
// type === 'elements'
return filteredEntries.map(([elementName, item]) => {
const anonItem = item as any;
const demoCount = anonItem.demo ? getDemoCount(anonItem.demo) : 0;
const isMultiDemo = anonItem.demo && hasMultipleDemos(anonItem.demo);
const isExpanded = this.expandedElements.has(elementName);
const isSelected = this.selectedItem === item;
// type === 'elements' - group by demoGroup
const groupedItems = new Map<string | null, Array<[string, any]>>();
if (isMultiDemo) {
// Multi-demo element - render as expandable folder
return html`
<div
class="selectOption folder ${isExpanded ? 'expanded' : ''} ${isSelected ? 'selected' : ''}"
@click=${() => this.toggleExpanded(elementName)}
>
<i class="material-symbols-outlined expand-icon">chevron_right</i>
<i class="material-symbols-outlined">folder</i>
<div class="text">${this.highlightMatch(elementName)}</div>
</div>
${isExpanded ? html`
<div class="demo-children">
${Array.from({ length: demoCount }, (_, i) => {
const demoIndex = i;
const isThisDemoSelected = isSelected && this.dashboardRef.selectedDemoIndex === demoIndex;
return html`
<div
class="demo-child ${isThisDemoSelected ? 'selected' : ''}"
@click=${async () => {
await plugins.deesDomtools.DomTools.setupDomTools();
this.selectItem('element', elementName, item, demoIndex, section);
}}
>
<i class="material-symbols-outlined">play_circle</i>
<div class="text">demo${demoIndex + 1}</div>
</div>
`;
})}
</div>
` : null}
`;
for (const entry of filteredEntries) {
const [, item] = entry;
const group = (item as any).demoGroup || null;
if (!groupedItems.has(group)) {
groupedItems.set(group, []);
}
groupedItems.get(group)!.push(entry);
}
// Build a unified list of render items (ungrouped elements and groups)
// Each item has a sortKey (element name or first element name of group)
type RenderItem =
| { type: 'element'; entry: [string, any]; sortKey: string }
| { type: 'group'; groupName: string; items: Array<[string, any]>; sortKey: string };
const renderItems: RenderItem[] = [];
// Add ungrouped items
const ungrouped = groupedItems.get(null) || [];
for (const entry of ungrouped) {
renderItems.push({ type: 'element', entry, sortKey: entry[0].toLowerCase() });
}
// Add groups (sorted by their first element's name)
for (const [groupName, items] of groupedItems) {
if (groupName === null) continue;
const firstElementName = items[0]?.[0] || '';
renderItems.push({ type: 'group', groupName, items, sortKey: firstElementName.toLowerCase() });
}
// Sort all items alphabetically by sortKey
renderItems.sort((a, b) => a.sortKey.localeCompare(b.sortKey));
// Render in sorted order
return renderItems.map((item) => {
if (item.type === 'element') {
return this.renderElementItem(item.entry, section);
} else {
// Single demo element
return html`
<div
class="selectOption ${isSelected ? 'selected' : ''}"
@click=${async () => {
await plugins.deesDomtools.DomTools.setupDomTools();
this.selectItem('element', elementName, item, 0, section);
}}
>
<i class="material-symbols-outlined">featured_video</i>
<div class="text">${this.highlightMatch(elementName)}</div>
<div class="item-group">
<span class="item-group-legend">${item.groupName}</span>
${item.items.map((entry) => this.renderElementItem(entry, section))}
</div>
`;
}
@@ -438,6 +707,68 @@ export class WccSidebar extends DeesElement {
}
}
/**
* Render a single element item (used by renderSectionItems)
*/
private renderElementItem(entry: [string, any], section: IWccSection): TemplateResult {
const [elementName, item] = entry;
const anonItem = item as any;
const demoCount = anonItem.demo ? getDemoCount(anonItem.demo) : 0;
const isMultiDemo = anonItem.demo && hasMultipleDemos(anonItem.demo);
const isExpanded = this.expandedElements.has(elementName);
const isSelected = this.selectedItem === item;
const isPinned = this.isPinned(section.name, elementName);
if (isMultiDemo) {
// Multi-demo element - render as expandable folder
return html`
<div
class="selectOption folder ${isExpanded ? 'expanded' : ''} ${isSelected ? 'selected' : ''} ${isPinned ? 'pinned' : ''}"
@click=${() => this.toggleExpanded(elementName)}
@contextmenu=${(e: MouseEvent) => this.showContextMenu(e, section.name, elementName)}
>
<i class="material-symbols-outlined expand-icon">chevron_right</i>
<div class="text">${this.highlightMatch(elementName)}</div>
</div>
${isExpanded ? html`
<div class="demo-children">
${Array.from({ length: demoCount }, (_, i) => {
const demoIndex = i;
const isThisDemoSelected = isSelected && this.dashboardRef.selectedDemoIndex === demoIndex;
return html`
<div
class="demo-child ${isThisDemoSelected ? 'selected' : ''}"
@click=${async () => {
await plugins.deesDomtools.DomTools.setupDomTools();
this.selectItem('element', elementName, item, demoIndex, section);
}}
>
<i class="material-symbols-outlined">play_circle</i>
<div class="text">demo${demoIndex + 1}</div>
</div>
`;
})}
</div>
` : null}
`;
} else {
// Single demo element
return html`
<div
class="selectOption ${isSelected ? 'selected' : ''} ${isPinned ? 'pinned' : ''}"
@click=${async () => {
await plugins.deesDomtools.DomTools.setupDomTools();
this.selectItem('element', elementName, item, 0, section);
}}
@contextmenu=${(e: MouseEvent) => this.showContextMenu(e, section.name, elementName)}
>
<i class="material-symbols-outlined">featured_video</i>
<div class="text">${this.highlightMatch(elementName)}</div>
</div>
`;
}
}
private toggleSectionCollapsed(sectionName: string) {
const newSet = new Set(this.collapsedSections);
if (newSet.has(sectionName)) {
@@ -464,6 +795,16 @@ export class WccSidebar extends DeesElement {
this.dispatchEvent(new CustomEvent('searchChanged', { detail: this.searchQuery }));
}
private clearSearch() {
this.searchQuery = '';
this.dispatchEvent(new CustomEvent('searchChanged', { detail: this.searchQuery }));
}
private handleMenuScroll(e: Event) {
const target = e.target as HTMLElement;
this.isMenuScrolled = target.scrollTop > 0;
}
private matchesSearch(name: string): boolean {
if (!this.searchQuery) return true;
return name.toLowerCase().includes(this.searchQuery.toLowerCase());
@@ -484,8 +825,21 @@ export class WccSidebar extends DeesElement {
protected updated(changedProperties: Map<string, unknown>) {
super.updated(changedProperties);
// Handle delayed hide for native mode transition
if (changedProperties.has('isNative')) {
if (this.isNative) {
// Delay hiding until frame animation completes
setTimeout(() => {
this.isHidden = true;
}, 300);
} else {
// Show immediately when exiting native mode
this.isHidden = false;
}
}
// Auto-expand folder when a multi-demo element is selected
if (changedProperties.has('selectedItem') && this.selectedItem) {
if (changedProperties.has('selectedItem') && this.selectedItem && this.dashboardRef?.sections) {
// Find the element in any section
for (const section of this.dashboardRef.sections) {
if (section.type !== 'elements') continue;
@@ -508,6 +862,51 @@ export class WccSidebar extends DeesElement {
}
}
// ============ Resize functionality ============
private startResize = (e: MouseEvent) => {
e.preventDefault();
this.isResizing = true;
const startX = e.clientX;
const startWidth = this.sidebarWidth;
// Cache references once at start
const frame = this.dashboardRef?.shadowRoot?.querySelector('wcc-frame') as any;
const properties = this.dashboardRef?.shadowRoot?.querySelector('wcc-properties') as any;
// Disable frame transition during resize
if (frame) {
frame.isResizing = true;
}
const onMouseMove = (e: MouseEvent) => {
const newWidth = Math.min(400, Math.max(150, startWidth + (e.clientX - startX)));
this.sidebarWidth = newWidth;
// Update frame and properties directly
if (frame) {
frame.sidebarWidth = newWidth;
}
if (properties) {
properties.sidebarWidth = newWidth;
}
};
const onMouseUp = () => {
this.isResizing = false;
document.removeEventListener('mousemove', onMouseMove);
document.removeEventListener('mouseup', onMouseUp);
// Re-enable frame transition
if (frame) {
frame.isResizing = false;
}
// Dispatch event on release for URL persistence
this.dispatchEvent(new CustomEvent('widthChanged', { detail: this.sidebarWidth }));
};
document.addEventListener('mousemove', onMouseMove);
document.addEventListener('mouseup', onMouseUp);
};
public selectItem(
typeArg: TElementType,
itemNameArg: string,