惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
博客园_首页
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
博客园 - 叶小钗
S
SegmentFault 最新的问题
雷峰网
雷峰网
H
Help Net Security
宝玉的分享
宝玉的分享
A
About on SuperTechFans
IT之家
IT之家
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(control-ui): make chat divider accessible · openclaw/...
BunsDev · 2026-04-29 · via Recent Commits to openclaw:main

@@ -0,0 +1,187 @@

1+

/* @vitest-environment jsdom */

2+3+

import { html, nothing, render } from "lit";

4+

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

5+

import { type ResizableDivider } from "./resizable-divider.ts";

6+

import "./resizable-divider.ts";

7+8+

let container: HTMLDivElement;

9+

const originalPointerEvent = globalThis.PointerEvent;

10+11+

class TestPointerEvent extends MouseEvent {

12+

readonly pointerId: number;

13+

readonly pointerType: string;

14+

readonly isPrimary: boolean;

15+16+

constructor(type: string, init: PointerEventInit = {}) {

17+

super(type, init);

18+

this.pointerId = init.pointerId ?? 1;

19+

this.pointerType = init.pointerType ?? "mouse";

20+

this.isPrimary = init.isPrimary ?? true;

21+

}

22+

}

23+24+

function nextFrame() {

25+

return new Promise<void>((resolve) => {

26+

requestAnimationFrame(() => resolve());

27+

});

28+

}

29+30+

async function renderDivider() {

31+

render(

32+

html`

33+

<div id="split-root">

34+

<resizable-divider

35+

.splitRatio=${0.6}

36+

.minRatio=${0.4}

37+

.maxRatio=${0.7}

38+

.label=${"Resize sidebar"}

39+

></resizable-divider>

40+

</div>

41+

`,

42+

container,

43+

);

44+45+

const root = container.querySelector<HTMLDivElement>("#split-root");

46+

const divider = container.querySelector<ResizableDivider>("resizable-divider");

47+

expect(root).not.toBeNull();

48+

expect(divider).not.toBeNull();

49+50+

root!.getBoundingClientRect = vi.fn(() => ({

51+

bottom: 0,

52+

height: 0,

53+

left: 0,

54+

right: 400,

55+

top: 0,

56+

width: 400,

57+

x: 0,

58+

y: 0,

59+

toJSON: () => ({}),

60+

}));

61+62+

await divider!.updateComplete;

63+

await nextFrame();

64+

return divider!;

65+

}

66+67+

function dispatchPointer(target: EventTarget, type: string, clientX: number) {

68+

target.dispatchEvent(

69+

new PointerEvent(type, {

70+

bubbles: true,

71+

button: 0,

72+

cancelable: true,

73+

clientX,

74+

pointerId: 7,

75+

pointerType: "touch",

76+

}),

77+

);

78+

}

79+80+

describe("resizable-divider", () => {

81+

beforeEach(() => {

82+

if (!globalThis.PointerEvent) {

83+

Object.defineProperty(globalThis, "PointerEvent", {

84+

configurable: true,

85+

value: TestPointerEvent as typeof PointerEvent,

86+

});

87+

}

88+

container = document.createElement("div");

89+

document.body.append(container);

90+

});

91+92+

afterEach(() => {

93+

render(nothing, container);

94+

container.remove();

95+

if (originalPointerEvent) {

96+

Object.defineProperty(globalThis, "PointerEvent", {

97+

configurable: true,

98+

value: originalPointerEvent,

99+

});

100+

} else {

101+

delete (globalThis as Partial<typeof globalThis>).PointerEvent;

102+

}

103+

vi.restoreAllMocks();

104+

});

105+106+

it("exposes separator semantics and current split value on the host", async () => {

107+

const divider = await renderDivider();

108+109+

expect(divider.getAttribute("role")).toBe("separator");

110+

expect(divider.getAttribute("tabindex")).toBe("0");

111+

expect(divider.getAttribute("aria-label")).toBe("Resize sidebar");

112+

expect(divider.getAttribute("aria-orientation")).toBe("vertical");

113+

expect(divider.getAttribute("aria-valuemin")).toBe("40");

114+

expect(divider.getAttribute("aria-valuemax")).toBe("70");

115+

expect(divider.getAttribute("aria-valuenow")).toBe("60");

116+117+

divider.splitRatio = 0.65;

118+

await divider.updateComplete;

119+120+

expect(divider.getAttribute("aria-valuenow")).toBe("65");

121+

});

122+123+

it("resizes with keyboard arrows, Home, and End", async () => {

124+

const divider = await renderDivider();

125+

const resized = vi.fn();

126+

divider.addEventListener("resize", resized);

127+128+

const arrowLeft = new KeyboardEvent("keydown", {

129+

key: "ArrowLeft",

130+

bubbles: true,

131+

cancelable: true,

132+

});

133+

divider.dispatchEvent(arrowLeft);

134+

expect(arrowLeft.defaultPrevented).toBe(true);

135+

expect(resized).toHaveBeenLastCalledWith(

136+

expect.objectContaining({ detail: { splitRatio: 0.58 } }),

137+

);

138+139+

const arrowRight = new KeyboardEvent("keydown", {

140+

key: "ArrowRight",

141+

shiftKey: true,

142+

bubbles: true,

143+

cancelable: true,

144+

});

145+

divider.dispatchEvent(arrowRight);

146+

expect(arrowRight.defaultPrevented).toBe(true);

147+

expect(resized).toHaveBeenLastCalledWith(

148+

expect.objectContaining({ detail: { splitRatio: 0.65 } }),

149+

);

150+151+

divider.dispatchEvent(new KeyboardEvent("keydown", { key: "Home", bubbles: true }));

152+

expect(resized).toHaveBeenLastCalledWith(

153+

expect.objectContaining({ detail: { splitRatio: 0.4 } }),

154+

);

155+156+

divider.dispatchEvent(new KeyboardEvent("keydown", { key: "End", bubbles: true }));

157+

expect(resized).toHaveBeenLastCalledWith(

158+

expect.objectContaining({ detail: { splitRatio: 0.7 } }),

159+

);

160+

});

161+162+

it("uses pointer events for mouse, pen, and touch dragging", async () => {

163+

const divider = await renderDivider();

164+

const resized = vi.fn();

165+

const setPointerCapture = vi.fn();

166+

const releasePointerCapture = vi.fn();

167+

const hasPointerCapture = vi.fn(() => true);

168+

divider.setPointerCapture = setPointerCapture;

169+

divider.releasePointerCapture = releasePointerCapture;

170+

divider.hasPointerCapture = hasPointerCapture;

171+

divider.addEventListener("resize", resized);

172+173+

dispatchPointer(divider, "pointerdown", 100);

174+

expect(document.activeElement).toBe(divider);

175+

expect(divider.classList.contains("dragging")).toBe(true);

176+

expect(setPointerCapture).toHaveBeenCalledWith(7);

177+178+

dispatchPointer(document, "pointermove", 220);

179+

expect(resized).toHaveBeenLastCalledWith(

180+

expect.objectContaining({ detail: { splitRatio: 0.7 } }),

181+

);

182+183+

dispatchPointer(document, "pointerup", 220);

184+

expect(divider.classList.contains("dragging")).toBe(false);

185+

expect(releasePointerCapture).toHaveBeenCalledWith(7);

186+

});

187+

});