This document explains the relationship between LitElement subclasses in webui/src/web-components/ and the sketch-tool-card custom element, focusing on their containment relationship and CSS styling effects.
The component hierarchy and containment relationship is structured as follows:
The key aspect is that the specialized tool card components do not inherit from SketchToolCard in a class hierarchy sense. Instead, they use composition by embedding a <sketch-tool-card> element within their render method and passing data to it.
For example, from sketch-tool-card-bash.ts:
render() { return html` <sketch-tool-card .open=${this.open} .toolCall=${this.toolCall} > <span slot="summary" class="summary-text">...</span> <div slot="input" class="input">...</div> <div slot="result" class="result">...</div> </sketch-tool-card>`; }
Regarding how CSS rules defined in sketch-tool-card affect elements that contain it:
Shadow DOM Encapsulation:
sketch-tool-card apply only within its shadow DOM, not to parent componentsSlot Content Styling:
sketch-tool-card defines three slots: "summary", "input", and "result"Style Inheritance and Sharing:
commonStyles constant that is shared across some componentsParent CSS Targeting:
sketch-timeline-message.ts, there are styles that target the tool components using the ::slotted() pseudo-element:::slotted(sketch-tool-calls) { max-width: 100%; width: 100%; overflow-wrap: break-word; word-break: break-word; }
Host Element Styling:
:host selector is used in sketch-tool-card for styling the component itself::host { display: block; max-width: 100%; width: 100%; box-sizing: border-box; overflow: hidden; }
In summary, the architecture uses composition rather than inheritance, with specialized tool cards wrapping the base sketch-tool-card component and filling its slots with custom content. The CSS styling is carefully managed through Shadow DOM, with some targeted styling using ::slotted selectors to ensure proper layout and appearance throughout the component hierarchy.
When making fetch requests to backend APIs in Sketch, all URLs must be relative without leading slashes. The base URL for Sketch varies depending on how it is deployed and run:
// CORRECT - use relative paths without leading slash const response = await fetch(`git/rawdiff?commit=${commit}`); const data = await fetch(`git/show?hash=${hash}`); // INCORRECT - do not use absolute paths with leading slash const response = await fetch(`/git/rawdiff?commit=${commit}`); // WRONG! const data = await fetch(`/git/show?hash=${hash}`); // WRONG!
The reason for this requirement is that Sketch may be deployed:
Using relative paths ensures that requests are correctly routed regardless of the deployment configuration. The browser will resolve the URLs relative to the current page location.