-
Notifications
You must be signed in to change notification settings - Fork 1
/
lib.d.ts
489 lines (371 loc) · 10.7 KB
/
lib.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
import {RHS, ToTransformer} from './types';
export type matchTypes = 'parts'| 'part' | 'id' | 'classes' | 'class' | 'attribs' | 'attrib' | 'elements' | 'element' | 'names' | 'name' | 'props' | 'placeholders';
export interface QueryInfo{
query: string;
match: string;
attrib?: string;
lhsProp?: string;
first?: boolean;
verb?: string;
havingAlso?: QueryInfo[];
havingInner?: QueryInfo;
}
export type PropSettings<T extends Partial<HTMLElement> = HTMLElement, HostProps = any> = {
[P in keyof T]?: keyof HostProps;
};
export type EventSettings = {[key: string] : ((e: Event) => void) | string | INotify};
export interface IMinimalNotify{
nudge?: boolean;
debug?: boolean;
eventListenerOptions?: boolean | AddEventListenerOptions | undefined;
doInit?: boolean;
}
export interface IDIYNotify extends IMinimalNotify{
doOnly?: (target: Element, key: string, mn: IMinimalNotify, e?: Event) => void;
}
export interface IValFromEventInstructions<TSelf = any, TProps = any, TActions = TProps> {
/**
* Hardcoded value to set on recipient element.
*/
val?: any
/**
* path to get value from target
*/
valFromTarget?: keyof TSelf;
/**
* path to get value from target
*/
vft?: keyof TSelf | `${keyof TSelf & string}.${string}`;
/**
* path to get value from event
*/
valFromEvent?: string;
/**
* path to get value from event
*/
vfe?: string;
propName?: string;
clone?: boolean;
parseValAs?: 'int' | 'float' | 'bool' | 'date' | 'truthy' | 'falsy' | undefined | 'string' | 'object';
trueVal?: any;
falseVal?: any;
}
export interface INotify<TSelf = any, TProps = any, TActions = TProps> extends IMinimalNotify, IValFromEventInstructions<TSelf, TProps, TActions>{
navTo?: string;
/**
* Pass property or invoke fn onto custom or built-in element hosting the contents of p-u element.
*/
//toHost: boolean;
/**
* Id of Dom Element. Uses import-like syntax:
* ./my-id searches for #my-id within ShadowDOM realm of instance.
* ../my-id searches for #my-id one ShadowDOM level up.
* /my-id searches from outside any ShadowDOM.
* @attr
*/
toUpShadow?: string;
/**
* abbrev of toUpShadow
*/
to?: string
/**
* Pass property or invoke fn onto itself
*/
toSelf?: boolean;
/**
* Pass property to the nearest previous sibling / ancestor element matching this css pattern, using .previousElement(s)/.parentElement.matches method.
* Does not pass outside ShadowDOM realm.
*/
toNearestUpMatch?: string;
toClosest?: string;
/**
* to closest or host ("itemscope" attribute or shadow DOM boundary)
*/
tocoho?: boolean | string; //to closest or host
/**
* Name of property to set on matching (upstream) element.
* @attr
*/
prop?: keyof TProps & string;
/**
* Name of method or property arrow function to invoke on matching (upstream) element.
*/
fn?: keyof TActions & string;
dispatch?: string;
withArgs?: ('self' | 'val' | 'event')[];
plusEq?: boolean | string | number;
eqConst?: any;
toggleProp?: boolean;
as?: 'str-attr' | 'bool-attr' | 'obj-attr',
thenDo?: (target: Element, key: string, n: INotify, e?: Event) => void;
}
export interface INotifyHookupInfo{
controller: AbortController;
}
export interface IConditional<MCProps extends Partial<HTMLElement> = HTMLElement>{
/**
* Name of property to check if truthy
*/
if?: keyof MCProps;
/**
* If condition value
*/
ifVal?: boolean;
lhs?: string;
lhsVal?: any;
rhs?: string;
rhsVal?: any;
op?: '==' | '!=' | '>' | '<' | '>=' | '<=' | '===' | '!==' | undefined;
}
export type AttribsSettings = { [key: string]: string | boolean | number | undefined | null | string[]};
export type PSettings<T extends Partial<HTMLElement> = HTMLElement, HostProps = any> = [PropSettings<T, HostProps> | undefined];
export type PESettings<T extends Partial<HTMLElement> = HTMLElement> = [props: PropSettings<T> | undefined, on: EventSettings | undefined];
export type PEUnionSettings<T extends Partial<HTMLElement> = HTMLElement> = PSettings<T> | PESettings<T>;
export type PEASettings<T extends Partial<HTMLElement> = HTMLElement> =
[props: PropSettings<T> | undefined, events: EventSettings | undefined, attribs: AttribsSettings | undefined];
export type PEAUnionSettings<T extends Partial<HTMLElement> = HTMLElement> = PEUnionSettings<T> | PEASettings<T>;
export type ConditionalSettings<T extends Partial<HTMLElement> = HTMLElement> =
[boolean, IConditional<T>, ...any]
export interface TRElementProps {
propChangeQueue?: Set<string>;
inReflectMode?: boolean;
}
export interface TRElementActions{
attachQR(): void;
detachQR(): void;
attributeChangedCallback?(n: string, ov: string, nv: string): void;
}
// export interface Transform<TMixinComposite = any> extends LogicOp<TMixinComposite>{
// match: {[key: string]: MatchRHS<TMixinComposite>}
// }
export type MatchRHS<TMixinComposite = any> = string;
export interface HasPropChangeQueue{
propChangeQueue: Set<string> | undefined;
QR: undefined | ((name: string, self: HasPropChangeQueue) => void);
}
export interface ProxyPropChangeInfo{
oldVal: any,
newVal: any,
prop: string
}
export interface ITSChecker{
notChanged(host: Element, fragment: Element | DocumentFragment): boolean;
}
export type TargetTuple =
/**
* Use the native .closest() function to get the target
*/
| ['closest', string]
/**
* abbrev for closet
*/
| ['c', string]
/**
* Find nearest previous sibling, parent, previous sibling of parent, etc that matches this string.
*/
| ['upSearch', string]
/**
* abbrev for upSearch
*/
| ['us', string]
/**
* Tries .closest([string value]).
* If that comes out to null, do .getRootNode().host
*/
| ['closestOrHost', string]
/**
* abbrev for closestOrHost
*/
| ['coh', string]
/**
* Find nearest previous element sibling that matches this string
*/
| ['previous', string]
/**
* Find first element matching string within root node.
*/
| ['withinRootNode', string]
/**
* abbrev for withinRootNode
*/
| ['wrn', string]
/**
* hostish
*/
| ['h', (boolean | string)?, boolean?]
| ['hostish', (boolean | string)?, boolean?]
/**
* Find first element matching string within itemscope.
*/
| ['withinItemScope', string, boolean?]
/**
* abbrev for within item scope
*/
| ['wis', string, boolean?]
| ['within', string, string]
| ['wi', string, string]
/**
* First first element matching string within form.
*/
| ['withinForm', string]
/**
* abbrev for within form
*/
| ['wf', string]
;
/**
* Target selector in upward direction.
*/
export type Target =
| TargetTuple
/**
* Use the parent element as the target
*/
| 'parent'
/**
* abbrev for parent
*/
| 'p'
/**
* Use the previous element sibling as the target.
*/
| 'previousElementSibling'
/**
* abbrev for previous element sibling.
*/
| 'pes'
/**
* Search previous element siblings for target that matches the query.
*/
| `previous${camelQry}` |
/**
* Use the parent as the target. If no parent, use root node.
*/
'parentOrRootNode' |
/**
* abbrev for parent or root node
*/
'porn' |
/**
* Do "closest" for element with "-"" in the name. If non found, get host of getRootNode()
*/
'hostish' |
/**
* Use the element itself as the target
*/
'self' |
/**
* abbrev for self
*/
's' |
`closest${camelQry}` |
/**
* [TODO]
* do upsearch for matching itemref
*/
'nearestScope' |
/**
* Find nearest previous sibling, parent, previous sibling of parent, etc that matches this string.
*/
`upSearchFor${camelQry}` |
/**
* Tries .closest matching string. If that's null, does .getRootNode().host
*/
`closest${camelQry}OrHost` |
/**
* Searches for first element within the rootNode that matches the camelQry.
*/
`${camelQry}WithinRootNode` |
/**
* get host
*/
'host' |
/**
* abbrev for host
*/
'h'
;
export type ScopeTuple = TargetTuple
/**
* Similar to closestOrHost, but just get the root fragment via getRootNode()
*/
| ['closestOrRootNode', string]
/**
* abbrev for closestOrRootNode
*/
| ['corn', string]
;
/**
* Outer boundary for transformation
*/
export type Scope = Target | ScopeTuple |
/**
* use native function getRootNode() to set the target
*
*/
'rootNode' |
/**
* abbrev for rootNode
*/
'rn' |
`closest${camelQry}OrRootNode` |
'shadowDOM' |
/**
* abbrev for shadow DOM
*/
'sd'
;
//https://stackoverflow.com/questions/38123222/proper-way-to-declare-json-object-in-typescript
type JSONValue =
| string
| number
| boolean
| null
| JSONValue[]
| {[key: string]: JSONValue}
interface JSONObject {
[k: string]: JSONValue
}
interface JSONArray extends Array<JSONValue> {}
export interface getValArg {
host?: any;
}
export type keyOfCtxNavElement = keyof ICTXNavElement & string;
export type keyofICTXCamelQryPrompt = `${keyof ICTXCamelQryPrompt & string}.${camelQry}`;
export type keyofCTXNavRecursive = (keyof ICTXNavRecursive & string) | keyofICTXCamelQryPrompt;
export type AffectOptions =
`${keyOfCtxNavElement}`
| `${keyofCTXNavRecursive}`
| `${keyofCTXNavRecursive}.${keyofCTXNavRecursive}`
//| `${keyofCTXNavRecursive}.${keyofCTXNavRecursive}.${keyofCTXNavRecursive}`
// | `${keyofCTXNavRecursive}.${keyofCTXNavRecursive}.${keyofCTXNavRecursive}.${keyofCTXNavRecursive}`
;
export interface ICTXNavRecursive<T = any>{
$?: T;
hostCtx?: T;
}
/**
* E = element
* P = part
* C = class
* I = itemscope
* A = attribute
* N = name
*/
export type camelQry = `${string}E` | `${string}P` | `${string}C` | `${string}Id` | `${string}I` | `${string}A` | `${string}N` | `${string}M`;
export interface ExpectedCamelQry<T = any>{
[key: camelQry] : ICtxNav<T>
}
export interface ICTXNavElement{
self?: Element;
host?: Element;
}
export interface ICTXCamelQryPrompt<T = any>{
ancestor?: ExpectedCamelQry<T>;
elder?: ExpectedCamelQry<T>;
}
export interface ICtxNav<T = any> extends ICTXNavRecursive<T>, ICTXNavElement, ICTXCamelQryPrompt<T> {
beScoped?: EventTarget;
xtalState(): Promise<EventTarget | undefined>;
}
export type ConvertOptions = 'bool' | 'int' | 'float' | 'date' | 'truthy' | 'falsy' | 'string' | 'object' | 'regExp' | 'number';