This repository was archived by the owner on Feb 11, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.d.ts
145 lines (145 loc) · 4.97 KB
/
node.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import { CustomDOM, CustomElement, Indexable } from "./declarations";
interface IsotopeNodeConfig<S extends Indexable, C extends Indexable> {
namespace?: string;
autoLink?: boolean;
attach?: boolean;
context?: C;
state?: S;
}
interface IsotopeNode<S extends Indexable = any, C extends Indexable = any> {
onCreate: Array<(node: this, config: IsotopeNodeConfig<S, C>) => void>;
onProcess: Array<(node: this) => void>;
onClean: Array<(node: this) => void>;
customDOM?: CustomDOM | null;
}
declare type Directive<S extends Indexable, C extends Indexable, V extends void | any> = (node: IsotopeNode<S, C>) => V;
/**
* Class representing a Node.
*/
declare class IsotopeNode<S extends Indexable = any, C extends Indexable = any> implements IsotopeNode<S, C> {
state?: S;
context?: C;
id?: string;
linked?: IsotopeNode[] | null;
element: CustomElement;
protected linkup?: IsotopeNode | null;
protected childIndex?: number;
protected autoLink?: boolean;
protected listenedEvents?: string[];
/**
* Creates a new Node.
*
* @param element - The Node's HTML element or tag.
* @param config - The Node's configuration.
*/
constructor(element: string | CustomElement | Element, config?: IsotopeNodeConfig<S, C> | string);
$<V>(directives: Array<Directive<S, C, V>>): this;
$<V>(directives: Directive<S, C, V>): V extends void ? this : V;
/**
* Adds a child Node to the Node.
*
* @param tag - Child Node's HTML tag.
* @param config - Child Node's configuration.
* @returns - The created child Node.
*/
child<S2 extends Indexable = Indexable, C2 extends Indexable = Indexable>(tag: string, config?: IsotopeNodeConfig<S2, Partial<C> & C2> | string | Directive<S2, Partial<C> & C2, void> | Array<Directive<S2, Partial<C> & C2, void>>): IsotopeNode<S2, Partial<C> & C2>;
/**
* Cleans the Node's child tree.
*
* @returns - IsotopeNode.
*/
clean(): this;
/**
* Emits the specified event.
*
* @param event - Event to be emitted.
* @param data - Data to be passed to the listening function.
* @returns - IsotopeNode.
*/
emit(event: string, data?: object): this;
/**
* Retrieves the data from the Node's context.
*
* @param key - Data key to be retrieved.
* @returns - The retrieved data.
*/
getContext<K extends keyof C>(key: K): C[K] | null;
/**
* Retrieves the data from the Node's state.
*
* @param key - Data key to be retrieved.
* @returns - The retrieved data.
*/
getState<K extends keyof S>(key: K): S[K] | null;
/**
* Links the provided Node.
*
* @param node - Node to be linked.
* @param position - Position to place Node at in the linked array.
* @returns - IsotopeNode.
*/
link(node: IsotopeNode, position?: number): this;
/**
* Moves the linked Node to the provided position.
*
* @param position - Position index to move the Node to.
* @returns - IsotopeNode.
*/
move(position: number): this;
/**
* Disables the specified event listener.
*
* @param event - Event to disable the listener for.
* @param handler - Event handler to be disabled.
* @param options - Event listening options.
* @returns - IsotopeNode.
*/
off<K extends keyof HTMLElementEventMap>(event: K | string, handler: (ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): this;
/**
* Setups an event listener for the specified event.
*
* @param event - Event to be listened to.
* @param handler - Event handling function.
* @param options - Event listening options.
* @returns - IsotopeNode.
*/
on<K extends keyof HTMLElementEventMap>(event: K | string, handler: (data: HTMLElementEventMap[K]) => void, options?: boolean | AddEventListenerOptions): this;
/**
* Removes the Node.
*
* @returns - IsotopeNode.
*/
remove(): this;
/**
* Sets the Node's state.
*
* @param state - State object to be set.
* @returns - IsotopeNode.
*/
setState(state: Partial<S>): this;
/**
* Stringifies Node's element.
*
* @returns - Stringified Node's element.
*/
toString(): string;
/**
* Retrieves the proper element from Node's configuration.
*
* @param element - The Node's element or tag.
* @param config - The Node's configuration.
* @returns - Retrieved element.
*/
protected getElement(element: string | CustomElement | Element, config?: IsotopeNodeConfig<S, C> | string | Directive<S, C, void> | Array<Directive<S, C, void>>): CustomElement;
/**
* Passes context to the child node.
*
* @param node - Node to pass the context to.
*/
protected passContext(node: IsotopeNode): void;
/**
* Processes and renders the Node.
*/
protected process(): void;
}
export { Directive, IsotopeNode, IsotopeNodeConfig };