Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve support for styleSheets. #53

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/thirty-clocks-hear.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@pionjs/pion": minor
---

Improve `styleSheets` support.
7 changes: 4 additions & 3 deletions src/component.ts
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ type Atts<P> = readonly KebabCase<keyof P>[];
interface Renderer<P extends object> extends GenericRenderer<HTMLElement, P> {
(this: Component<P>, host: Component<P>): unknown | void;
observedAttributes?: Atts<P>;
styleSheets?: (CSSStyleSheet | string)[];
}

type Component<P extends object> = HTMLElement & P;
@@ -98,9 +99,9 @@ function makeComponent(render: RenderFunction): Creator {
observedAttributes = [],
useShadowDOM = true,
shadowRootInit = {},
styleSheets,
styleSheets: _styleSheets,
} = options || (baseElementOrOptions as Options<P>) || {};

const styleSheets = sheets(renderer.styleSheets || _styleSheets);
class Element extends BaseElement {
_scheduler: Scheduler<P>;

@@ -117,7 +118,7 @@ function makeComponent(render: RenderFunction): Creator {
mode: "open",
...shadowRootInit,
});
if (styleSheets) shadowRoot.adoptedStyleSheets = sheets(styleSheets);
if (styleSheets) shadowRoot.adoptedStyleSheets = styleSheets;
this._scheduler = new Scheduler(renderer, shadowRoot, this);
}
}
4 changes: 2 additions & 2 deletions src/util.ts
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@ export const sheet = (...styles: string[]) => {
return cs;
};

export const sheets = (styleSheets: (string | CSSStyleSheet)[]) =>
styleSheets.map((style) => {
export const sheets = (styleSheets?: (string | CSSStyleSheet)[]) =>
styleSheets?.map((style) => {
if (typeof style === "string") return sheet(style);
return style;
});