Merge pull request #732 from trheyi/main

chore: Add new methods to $Query class for element manipulation
This commit is contained in:
Max 2024-08-05 17:17:28 +08:00 committed by GitHub
commit d125fc447f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 92 additions and 66 deletions

File diff suppressed because one or more lines are too long

View file

@ -14,12 +14,12 @@ function $Store(elm) {
return new __sui_store(elm);
}
function $Query(selector: string): __Query {
function $Query(selector: string | Element): __Query {
return new __Query(selector);
}
class __Query {
selector: string | Element = "";
selector: string | Element | undefined = "";
elements: NodeListOf<Element> | null = null;
element: Element | null = null;
constructor(selector: string | Element) {
@ -43,6 +43,22 @@ class __Query {
return this.elements;
}
find(selector: string): __Query {
return new __Query(this.element?.querySelector(selector) || "");
}
closest(selector: string): __Query {
return new __Query(this.element?.closest(selector) || "");
}
on(event: string, callback: (event: Event) => void): __Query {
if (!this.element) {
return this;
}
this.element.addEventListener(event, callback);
return this;
}
$$() {
if (!this.element) {
return null;
@ -105,10 +121,6 @@ class __Query {
}
}
hasClass(className) {
return this.element?.classList.contains(className);
}
prop(key) {
if (!this.element || typeof this.element.getAttribute !== "function") {
return null;
@ -127,6 +139,20 @@ class __Query {
return v;
}
hasClass(className) {
return this.element?.classList.contains(className);
}
toggleClass(className) {
const classes = Array.isArray(className) ? className : className.split(" ");
classes.forEach((c) => {
const v = c.replace(/[\n\r\s]/g, "");
if (v === "") return;
this.element?.classList.toggle(v);
});
return this;
}
removeClass(className) {
const classes = Array.isArray(className) ? className : className.split(" ");
classes.forEach((c) => {