-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathPilot.d.ts
395 lines (276 loc) · 11.1 KB
/
Pilot.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
declare module 'pilotjs/vendors/Emitter' {
// ==== ./vendors/Emitter.js ====
type EventListener = (...args: any[]) => any;
namespace Emitter {
export class Event<T = any, D = undefined, R = any> {
target: T;
details: D;
result?: R;
constructor(type: string | Object | Event);
isDefaultPrevented(): boolean;
preventDefault();
stopPropagation();
isPropagationStopped(): boolean;
}
}
class Emitter {
constructor();
on(events: string, fn: EventListener): this;
off(events: string, fn: EventListener): this;
one(events: string, fn: EventListener): this;
emit(type: string, args: any[]): any;
trigger(type: string, args: any[], details?: any): this;
static readonly version: string;
static apply<T extends object>(target: T): T & Emitter;
static getListeners(target: Object, name: string): EventListener[];
}
export = Emitter;
}
declare module 'pilotjs' {
// ==== ./src/action-queue.js ====
import Emitter = require("pilotjs/vendors/Emitter");
namespace Pilot {
export type ActionQueuePriority = number;
export type ActionId = number;
export interface Action {
type: string;
uid?: ActionId;
priority?: ActionQueuePriority;
}
class ActionQueue extends Emitter {
constructor();
push(request: Request, action: Action): ActionId;
static readonly PRIORITY_HIGH: ActionQueuePriority;
static readonly PRIORITY_LOW: ActionQueuePriority;
}
// ==== ./src/loader.js ====
export type LoaderProcessor = () => void;
export interface LoaderOptions {
persist?: boolean;
processing?: LoaderProcessor;
}
export type LoaderModelFetcher = () => void;
export interface LoaderModelObject {
name: string;
fetch: LoaderModelFetcher;
match: Match;
}
export type LoaderModel = LoaderModelObject | LoaderModelFetcher;
class Loader {
readonly models: Record<string, LoaderModel | undefined>;
readonly names: string[];
constructor(models: Record<string, LoaderModel | undefined> | Loader, options: LoaderOptions);
defaults(): Record<string, Object | undefined>;
fetch(): Promise<any>;
dispatch(): Promise<any>;
extend(models: Record<string, LoaderModel | undefined>): Loader;
getLastReq(): Request | undefined;
extract(model: LoaderModel): Object;
bind(route: Route, model: LoaderModel);
setDebug(debug: boolean);
static readonly ACTION_NAVIGATE: string;
static readonly ACTION_NONE: string;
static readonly PRIORITY_LOW: typeof ActionQueue.PRIORITY_LOW;
static readonly PRIORITY_HIGH: typeof ActionQueue.PRIORITY_HIGH;
}
// ==== ./src/match.js ====
export type MatchFn = (key: string) => boolean;
export type MatchArray = string[];
export type Match = MatchArray | MatchFn;
// ==== ./src/querystring.js ====
export type QueryItem = string | number | symbol;
export type Query = Record<QueryItem, QueryItem | QueryItem[] | undefined>;
interface QueryString {
parse(search: string): Query;
stringify(query: Query): string;
}
// ==== ./src/request.js ====
class Request {
href: string;
protocol: string;
host: string;
hostname: string;
port: string;
path: string;
pathname: string;
search: string;
query: Query;
params: Record<string, string | number | undefined>;
hash: string;
route: Route;
router: Pilot;
referrer?: string;
redirectHref?: string;
alias?: string;
constructor(url: string | URL, referrer?: string, router?: string);
clone(): Request;
is(id: string): boolean;
redirectTo(href: string, interrupt?: boolean);
toString(): string;
snapshot(): Readonly<Request>;
}
// ==== ./src/route.js ====
export interface RouteUrlParamsConfig {
default?: any;
decode: (value: string) => any;
}
export type UrlBuilder = (params: Record<string, any>, query: Query) => string;
export interface RouteUrlObject {
pattern: string;
params?: Record<string, RouteUrlParamsConfig | undefined>;
toUrl?: (params: Record<string, any>, query: Query, builder: UrlBuilder) => string;
}
export type RouteUrl = string | RouteUrlObject;
export interface RouteOptions {
model?: Loader;
aliases?: Record<string, RouteUrlObject | undefined>;
}
export type Model = Record<string, Object | undefined>;
class Route extends Emitter {
id: string;
active?: boolean;
regions: string[];
router: Pilot;
model: Model;
parentId?: string;
parentRoute?: Route;
readonly request?: Request;
readonly params: Record<string, string | undefined>;
constructor(options: RouteOptions, router: Pilot);
protected init();
protected _initOptions(options: RouteOptions);
protected _initMixins();
handling(url: URL, req: Request, currentRoute: Route, model: Record<string, Object | undefined>);
match(URL: URL, req: Request): boolean;
fetch(req: Request): Promise<Object>;
getUrl(params: Record<string, string | undefined>, query: Query | 'inherit'): string;
is(id: string): boolean;
snapshot(): Readonly<Route>;
on(event: 'before-init', fn: (event: Emitter.Event<Route>) => any): this;
on(event: 'init', fn: (event: Emitter.Event<Route>) => any): this;
on(event: 'model', fn: (event: Emitter.Event<Route>, model: Model, req: Request) => any): this;
on(event: 'route-start', fn: (event: Emitter.Event<Route>, req: Request) => any): this;
on(event: 'route-change', fn: (event: Emitter.Event<Route>, req: Request) => any): this;
on(event: 'route', fn: (event: Emitter.Event<Route>, req: Request) => any): this;
on(event: 'route-end', fn: (event: Emitter.Event<Route>, req: Request) => any): this;
on(events: string, fn: EventListener): this;
one(event: 'before-init', fn: (event: Emitter.Event<Route>) => any): this;
one(event: 'init', fn: (event: Emitter.Event<Route>) => any): this;
one(event: 'model', fn: (event: Emitter.Event<Route>, model: Model, req: Request) => any): this;
one(event: 'route-start', fn: (event: Emitter.Event<Route>, req: Request) => any): this;
one(event: 'route-change', fn: (event: Emitter.Event<Route>, req: Request) => any): this;
one(event: 'route', fn: (event: Emitter.Event<Route>, req: Request) => any): this;
one(event: 'route-end', fn: (event: Emitter.Event<Route>, req: Request) => any): this;
one(events: string, fn: EventListener): this;
static readonly Region: typeof Region;
}
class Region extends Route {
constructor(name: string, options: RouteOptions, route: Route);
}
// ==== ./src/status.js ====
class Status {
code: number;
details?: any;
constructor(code: number, details?: any);
toJSON(): Object;
static from(value: any): Status;
}
// ==== ./src/url.js ====
class URL {
protocol: string;
protocolSeparator: string;
credhost: string;
cred: string;
username: string;
password: string;
host: string;
hostname: string;
port: string;
origin: string;
path: string;
pathname: string;
segment1: string;
segment2: string;
search: string;
query: Query;
params: Record<string, string | string[] | undefined>;
hash: string;
constructor(url: string, base?: string | URL | Location);
setQuery(query: string | Query, remove?: boolean | string[]): URL;
addToQuery(query: Query): URL;
removeFromQuery(query: string | string[]): URL;
update(): URL;
toString(): string;
static parse(url: string): URL;
static readonly parseQueryString: QueryString["parse"];
static readonly stringifyQueryString: QueryString["stringify"];
static toMatcher(pattern: string | RegExp): RegExp;
static match(pattern: string | RegExp, url: string | URL): Record<string, string | undefined>;
}
// ==== ./src/pilot.js ====
export type AccessFunction = (route: Route) => Promise<void>;
export interface PilotRouteOption {
url?: RouteUrlObject;
}
export interface PilotRouteOptions {
url?: string;
access?: AccessFunction;
}
export type PilotRouteMap = PilotRouteOptions | Record<string, PilotRouteOption | undefined>;
export interface PilotNavDetails {
initiator?: string;
replaceState?: boolean;
force?: boolean;
}
export interface PilotCompatibleLogger {
add(key: string, details?: any);
call(key: string, details: any, wrappedContent: () => void);
}
export type PilotListenFilter = (url: string) => boolean;
export interface PilotListenOptions {
logger?: PilotCompatibleLogger;
autoStart?: boolean;
filter?: PilotListenFilter;
replaceState?: boolean;
}
}
class Pilot extends Emitter {
model: Object;
request: Pilot.Request;
route?: Pilot.Route;
activeRoute?: Pilot.Route;
activeUrl: Pilot.URL;
url?: Pilot.URL;
activeRequest?: Pilot.Request;
routes: Pilot.Route[];
previousRoute?: Readonly<Pilot.Route>;
constructor(map: Pilot.PilotRouteMap);
getUrl(id: string, params?: Record<string, string | undefined>, query?: Pilot.Query | 'inherit'): string;
go(id: string, params?: Record<string, string | undefined>, query?: Pilot.Query | 'inherit', details?: Object): Promise<any>;
nav(href: string | Pilot.URL | Request, details?: Pilot.PilotNavDetails): Promise<any>;
listenFrom(target: HTMLElement, options: Pilot.PilotListenOptions);
reload();
on(event: 'before-route', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request) => any): this;
on(event: 'error', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request, error: unknown) => any): this;
on(event: 'route-fail', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request, currentRoute: Pilot.Route, error: unknown) => any): this;
on(event: 'route', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request, currentRoute: Pilot.Route) => any): this;
on(event: 'route-end', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request, currentRoute: Pilot.Route) => any): this;
on(event: 'beforereload', fn: (event: Emitter.Event<Pilot>) => any): this;
on(event: 'reload', fn: (event: Emitter.Event<Pilot>) => any): this;
on(event: 'reloadend', fn: (event: Emitter.Event<Pilot, { cancelled: boolean }>) => any): this;
on(events: string, fn: EventListener): this;
one(event: 'before-route', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request) => any): this;
one(event: 'error', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request, error: unknown) => any): this;
one(event: 'route-fail', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request, currentRoute: Pilot.Route, error: unknown) => any): this;
one(event: 'route', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request, currentRoute: Pilot.Route) => any): this;
one(event: 'route-end', fn: (event: Emitter.Event<Pilot, Pilot.PilotNavDetails>, req: Request, currentRoute: Pilot.Route) => any): this;
one(event: 'beforereload', fn: (event: Emitter.Event<Pilot>) => any): this;
one(event: 'reload', fn: (event: Emitter.Event<Pilot>) => any): this;
one(event: 'reloadend', fn: (event: Emitter.Event<Pilot, { cancelled: boolean }>) => any): this;
one(events: string, fn: EventListener): this;
static create(map: Pilot.PilotRouteMap): Pilot;
static readonly queryString: Pilot.QueryString;
static readonly version: string;
}
export default Pilot;
}