Archived
1
0
Fork 0
This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
paren/core/node.ts

75 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-05-22 00:26:32 +03:00
import { Nilable } from "./utils.ts";
2022-05-22 00:03:48 +03:00
export type Attrs = Record<string, string>;
export type AnyNode = Fragment | FragmentNode;
export function isTextNode(val: unknown): val is TextNode {
return val instanceof TextNode;
}
export class TextNode {
#innerText: string;
get innerText(): string {
return this.#innerText;
}
constructor(text: string) {
this.#innerText = text;
}
}
export function isFragment(val: unknown): val is Fragment {
return val instanceof Fragment;
}
export type FragmentNode = Elem | TextNode;
export class Fragment {
#children: FragmentNode[];
get children(): FragmentNode[] {
return this.#children;
}
constructor(children: FragmentNode[]) {
this.#children = children;
}
}
export function isElem(val: unknown): val is Elem {
return val instanceof Elem;
}
export type ElemTagName =
| keyof HTMLElementTagNameMap
| keyof SVGElementTagNameMap;
export class Elem {
#tagName: ElemTagName;
#attrs: Attrs;
#children: AnyNode[];
get tagName(): ElemTagName {
return this.#tagName;
}
get attrs(): Attrs {
return this.#attrs;
}
get children(): AnyNode[] {
return this.#children;
}
constructor(
tagName: ElemTagName,
attrs?: Nilable<Attrs>,
children?: Nilable<AnyNode[]>,
) {
this.#tagName = tagName;
this.#attrs = attrs ?? {};
this.#children = children ?? [];
}
}