-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.d.ts
202 lines (169 loc) · 5.24 KB
/
index.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/**
Type definitions for lui
@author Johann Laur <[email protected]>
@author L3P3 <[email protected]>
*/
/*
Obtain the parameters of a function type in a tuple, skipping the first parameter
source: https://stackoverflow.com/revisions/67605309/1
*/
type ParametersExceptFirst<F> = F extends (arg0: any, ...rest: infer R) => any ? R : never;
declare namespace lui {
/**
Data mapped to a child instance's `I` prop
*/
type NodeData = (string | number | { id: (string | number) });
/**
Child instance symbol, must not be modified but can be cached
*/
interface LuiNode {}
/**
List of child instance symbols, an entry can be replaced with `true`, `false` or `null` to skip it
*/
type LuiNodeList = (LuiNode | boolean | null | void)[];
/**
Descriptor for dom elements using following syntax:
`element[attr1=value][attr2=value]`
*/
type DomDescriptor = string;
/**
Attributes passed to dom hooks
*/
interface Attrs extends Omit<Partial<HTMLElement>, 'style'> {
/**
dataset properties and their values
*/
D?: { [key: string]: any },
/**
CSS classes and their conditions
*/
F?: { [key: string]: boolean },
/**
CSS properties and their values
*/
S?: Partial<Record<Exclude<keyof CSSStyleDeclaration, number>, string | null>>,
/**
CSS properties as string
*/
style?: string
}
/**
Attributes passed to dom nodes
*/
interface AttrsNode extends Attrs {
/**
Nodes to be put inside the dom instance
*/
C?: LuiNodeList,
/**
Reference setter for element
*/
R?: (element: HTMLElement) => void
}
/**
View element with its own logic, its instances will have their own state
*/
type Component<T extends {}> = (props: T) => LuiNodeList | null;
/**
Defer rerenderings until next frame
*/
export function defer(): void;
/**
Rectify deferred rerenderings now
*/
export function defer_end(): void;
/**
Define a dom element for later use, like a template
*/
export function dom_define(handle: string, descriptor: DomDescriptor, attrs?: Attrs): void;
/**
Conditionally interrupt the instance's rendering process
*/
export function hook_assert(condition: boolean): void;
/**
Wait for data until it is available, until then the fallback will be returned if specified
*/
export function hook_async<T, U extends any[]>(getter: (...deps: U) => Promise<T>, deps?: U, fallback?: T): T;
/**
Returns a persistent function to prevent pointless updates
*/
export function hook_callback<T extends any[], U extends any[], V>(callback: (...depsargs: [...U, ...T]) => V, deps?: U): (...args: T) => V;
/**
Turns `true` after the specified delay
*/
export function hook_delay(msecs: number): boolean;
/**
Alternative to a single `node_dom` wrapping the returned childs, must not be skipped if present
*/
export function hook_dom(descriptor: DomDescriptor, attrs?: Attrs): HTMLElement;
/**
Call a function and redo it on deps change, _unmount_ function can be returned
*/
export function hook_effect<T extends any[]>(callback: (...deps: T) => (void | ((...deps: T) => void)), deps?: T): void;
/**
hook_sub over variable-length array items
*/
export function hook_map<T extends any[], U extends NodeData, V>(getter: (item: U, ...deps: T) => V, data: U[], deps?: T): V[]
/**
Transform data and redo it on deps change
*/
export function hook_memo<T extends any[], U>(getter: (...deps: T) => U, deps?: T): U;
/**
Model state with set of methods, `init` returning the initial state
*/
export function hook_model<T, U extends {
init: () => T,
[key: string]: (current?: T, ...args: any) => T
}>(mutations: U): [value: T, methods: {
[method in keyof U]: (...args: ParametersExceptFirst<U[method]>) => void
}];
/**
List of changed properties since previous rendering
*/
export function hook_object_changes(object: Object): string[];
/**
Returns the value from previous rendering
*/
export function hook_prev<T>(value: T, initial?: T): T;
/**
Request rerendering for the next display refresh
*/
export function hook_rerender(): void;
/**
Simple state containment
*/
export function hook_state<T>(initial?: T): [value: T, setter: (value: T) => void, getter: () => T];
/**
Returns the value from first rendering
*/
export function hook_static<T>(initial: T): T;
/**
hook_memo with switchable getter and contained hooks support
*/
export function hook_sub<T extends any[], U>(getter: (...deps: T) => U, deps?: T): U;
/**
Transitions value over given delay
*/
export function hook_transition(target: number, msecs: number): number;
/**
Mounts root component on document's body or whatever root element specified
*/
export function init<T extends {}>(root: Component<T>, dom?: HTMLElement, props?: T | null): void;
/**
Component instantiation
*/
export function node<T extends {}>(component: Component<T>, props?: T | null, children?: LuiNodeList): LuiNode;
/**
DOM element instantiation
*/
export function node_dom(descriptor: DomDescriptor, attrs?: AttrsNode | null, children?: LuiNodeList): LuiNode;
/**
Dynamic component instantiation from data array
*/
export function node_map<T extends NodeData, U extends {}>(component: Component<U & { I: T }>, data: T[], props?: U): LuiNode;
/**
Reference time of current rendering
*/
export function now(): number;
}
export = lui;