-
Notifications
You must be signed in to change notification settings - Fork 651
/
types.ts
675 lines (588 loc) · 17.3 KB
/
types.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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
import { ComponentChildren, ComponentType, VNode } from "preact";
import * as router from "./router.ts";
import { InnerRenderFunction, RenderContext } from "./render.ts";
import { Manifest } from "./mod.ts";
export interface DenoConfig {
imports?: Record<string, string>;
importMap?: string;
tasks?: Record<string, string>;
lint?: {
rules: { tags?: string[] };
exclude?: string[];
};
fmt?: {
exclude?: string[];
};
exclude?: string[];
compilerOptions?: {
jsx?: string;
jsxImportSource?: string;
};
}
// --- APPLICATION CONFIGURATION ---
export interface FreshConfig {
build?: {
/**
* The directory to write generated files to when `dev.ts build` is run.
* This can be an absolute path, a file URL or a relative path.
*/
outDir?: string;
/**
* This sets the target environment for the generated code. Newer
* language constructs will be transformed to match the specified
* support range. See https://esbuild.github.io/api/#target
* @default {"es2022"}
*/
target?: string | string[];
};
render?: RenderFunction;
plugins?: Plugin[];
staticDir?: string;
router?: RouterOptions;
server?: Partial<Deno.ServeTlsOptions>;
// Older versions of Fresh merged the `Deno.ServeTlsOptions` directly.
// We've moved this to `server`.
/**
* Server private key in PEM format
* @deprecated Use `server.cert` instead
*/
cert?: string;
/**
* Cert chain in PEM format
* @deprecated Use `server.key` instead
*/
key?: string;
/**
* The port to listen on.
* @default {8000}
* @deprecated Use `server.port` instead
*/
port?: number;
/**
* A literal IP address or host name that can be resolved to an IP address.
*
* __Note about `0.0.0.0`__ While listening `0.0.0.0` works on all platforms,
* the browsers on Windows don't work with the address `0.0.0.0`.
* You should show the message like `server running on localhost:8080` instead of
* `server running on 0.0.0.0:8080` if your program supports Windows.
*
* @default {"0.0.0.0"}
* @deprecated Use `server.hostname` instead
*/
hostname?: string;
/**
* An {@linkcode AbortSignal} to close the server and all connections.
* @deprecated Use `server.signal` instead
*/
signal?: AbortSignal;
/**
* Sets `SO_REUSEPORT` on POSIX systems.
* @deprecated Use `server.reusePort` instead
*/
reusePort?: boolean;
/**
* The handler to invoke when route handlers throw an error.
* @deprecated Use `server.onError` instead
*/
onError?: (error: unknown) => Response | Promise<Response>;
/**
* The callback which is called when the server starts listening.
* @deprecated Use `server.onListen` instead
*/
onListen?: (params: { hostname: string; port: number }) => void;
}
export interface InternalFreshState {
config: ResolvedFreshConfig;
manifest: Manifest;
loadSnapshot: boolean;
didLoadSnapshot: boolean;
denoJsonPath: string;
denoJson: DenoConfig;
build: boolean;
}
export interface ResolvedFreshConfig {
dev: boolean;
build: {
outDir: string;
target: string | string[];
};
render: RenderFunction;
plugins: Plugin[];
staticDir: string;
router?: RouterOptions;
server: Partial<Deno.ServeTlsOptions>;
basePath: string;
}
export interface RouterOptions {
/**
* Controls whether Fresh will append a trailing slash to the URL.
* @default {false}
*/
trailingSlash?: boolean;
/**
* Configures the pattern of files to ignore in islands and routes.
*
* By default Fresh will ignore test files,
* for example files with a `.test.ts` or a `_test.ts` suffix.
*
* @default {/(?:[^/]*_|[^/]*\.|)test\.(?:ts|tsx|mts|js|mjs|jsx|)\/*$/}
*/
ignoreFilePattern?: RegExp;
/**
* Serve fresh from a base path instead of from the root.
* "/foo/bar" -> http://localhost:8000/foo/bar
* @default {undefined}
*/
basePath?: string;
}
export type RenderFunction = (
ctx: RenderContext,
render: InnerRenderFunction,
) => void | Promise<void>;
/// --- ROUTES ---
// deno-lint-ignore no-explicit-any
export type PageProps<T = any, S = Record<string, unknown>> = Omit<
FreshContext<
S,
T
>,
"render" | "next" | "renderNotFound"
>;
export interface StaticFile {
/** The URL to the static file on disk. */
localUrl: URL;
/** The path to the file as it would be in the incoming request. */
path: string;
/** The size of the file. */
size: number;
/** The content-type of the file. */
contentType: string;
/** Hash of the file contents. */
etag: string;
}
export interface FreshContext<
State = Record<string, unknown>,
// deno-lint-ignore no-explicit-any
Data = any,
NotFoundData = Data,
> {
/** @types deprecated */
localAddr?: Deno.NetAddr;
remoteAddr: Deno.NetAddr;
url: URL;
basePath: string;
route: string;
/** @deprecated Use `.route` instead */
pattern: string;
destination: router.DestinationKind;
params: Record<string, string>;
isPartial: boolean;
state: State;
config: ResolvedFreshConfig;
data: Data;
/** The error that caused the error page to be loaded. */
error?: unknown;
/** Sringified code frame of the error rendering failed (only in development mode) */
codeFrame?: unknown;
// These properties may be different
renderNotFound: (data?: NotFoundData) => Response | Promise<Response>;
render: (
data?: Data,
options?: RenderOptions,
) => Response | Promise<Response>;
Component: ComponentType<unknown>;
next: () => Promise<Response>;
}
/**
* Context passed to async route components.
*/
// deno-lint-ignore no-explicit-any
export type RouteContext<T = any, S = Record<string, unknown>> = Omit<
FreshContext<
S,
T
>,
"next" | "render"
>;
export interface RouteConfig {
/**
* A route override for the page. This is useful for pages where the route
* can not be expressed through the filesystem routing capabilities.
*
* The route override must be a path-to-regexp compatible route matcher.
*/
routeOverride?: string;
/**
* If Content-Security-Policy should be enabled for this page. If 'true', a
* locked down policy will be used that allows only the scripts and styles
* that are generated by Fresh. Additional scripts and styles can be added
* using the `useCSP` hook.
*/
csp?: boolean;
/**
* Skip already inherited layouts
* Default: `false`
*/
skipInheritedLayouts?: boolean;
/**
* Skip rendering the `routes/_app` template
* Default: `false`
*/
skipAppWrapper?: boolean;
}
export interface RenderOptions extends ResponseInit {}
export type ServeHandlerInfo = Deno.ServeHandlerInfo & {
/**
* Backwards compatible with std/server
* @deprecated
*/
localAddr?: Deno.NetAddr;
};
export type ServeHandler = (
request: Request,
info: ServeHandlerInfo,
) => Response | Promise<Response>;
// deno-lint-ignore no-explicit-any
export type Handler<T = any, State = Record<string, unknown>> = (
req: Request,
ctx: FreshContext<State, T>,
) => Response | Promise<Response>;
// deno-lint-ignore no-explicit-any
export type Handlers<T = any, State = Record<string, unknown>> = {
[K in router.KnownMethod]?: Handler<T, State>;
};
export interface RouteModule {
default?: PageComponent<PageProps>;
// deno-lint-ignore no-explicit-any
handler?: Handler<any, any> | Handlers<any, any>;
config?: RouteConfig;
}
// deno-lint-ignore no-explicit-any
export type AsyncRoute<T = any, S = Record<string, unknown>> = (
req: Request,
ctx: FreshContext<S, T>,
) => Promise<ComponentChildren | Response>;
// deno-lint-ignore no-explicit-any
export type PageComponent<T = any, S = Record<string, unknown>> =
| ComponentType<PageProps<T, S>>
| AsyncRoute<T, S>
// deno-lint-ignore no-explicit-any
| ((props: any) => VNode<any> | ComponentChildren);
// deno-lint-ignore no-explicit-any
export interface Route<Data = any> {
baseRoute: BaseRoute;
pattern: string;
url: string;
name: string;
component?: PageComponent<Data> | AsyncLayout<Data> | AsyncRoute<Data>;
handler: Handler<Data> | Handlers<Data>;
csp: boolean;
appWrapper: boolean;
inheritLayouts: boolean;
}
// --- APP ---
export interface AppModule {
default: ComponentType<PageProps> | AsyncLayout;
}
// deno-lint-ignore no-explicit-any
export type AsyncLayout<T = any, S = Record<string, unknown>> = (
req: Request,
ctx: FreshContext<S, T>,
) => Promise<ComponentChildren | Response>;
export interface LayoutConfig {
/**
* Skip already inherited layouts
* Default: `false`
*/
skipAppWrapper?: boolean;
/**
* Skip rendering the `routes/_app`.
* Default: `false`
*/
skipInheritedLayouts?: boolean;
}
export interface LayoutModule {
// deno-lint-ignore no-explicit-any
handler?: Handler<any, any> | Handlers<any, any>;
default: ComponentType<PageProps> | AsyncLayout;
config?: LayoutConfig;
}
export interface LayoutRoute {
baseRoute: BaseRoute;
// deno-lint-ignore no-explicit-any
handler?: Handler<any, any> | Handlers<any, any>;
component: LayoutModule["default"];
appWrapper: boolean;
inheritLayouts: boolean;
}
// --- UNKNOWN PAGE ---
export type UnknownHandler = (
req: Request,
ctx: FreshContext,
) => Response | Promise<Response>;
export interface UnknownPageModule {
default?: PageComponent<PageProps>;
handler?: UnknownHandler;
config?: RouteConfig;
}
export interface UnknownPage {
baseRoute: BaseRoute;
pattern: string;
url: string;
name: string;
component?: PageComponent<PageProps>;
handler: UnknownHandler;
csp: boolean;
appWrapper: boolean;
inheritLayouts: boolean;
}
export type UnknownRenderFunction = (
req: Request,
ctx: FreshContext,
) => Promise<Response>;
// --- ERROR PAGE ---
// Nominal/Branded type. Ensures that the string has the expected format
export type BaseRoute = string & { readonly __brand: unique symbol };
export type ErrorHandler = (
req: Request,
ctx: FreshContext,
) => Response | Promise<Response>;
export interface ErrorPageModule {
default?: PageComponent<PageProps>;
handler?: ErrorHandler;
config?: RouteConfig;
}
export interface ErrorPage {
baseRoute: BaseRoute;
pattern: string;
url: string;
name: string;
component?: PageComponent<PageProps>;
handler: ErrorHandler;
csp: boolean;
appWrapper: boolean;
inheritLayouts: boolean;
}
// --- MIDDLEWARES ---
export interface MiddlewareRoute {
baseRoute: BaseRoute;
module: Middleware;
}
export type MiddlewareHandler<State = Record<string, unknown>> = (
req: Request,
ctx: FreshContext<State>,
) => Response | Promise<Response>;
// deno-lint-ignore no-explicit-any
export interface MiddlewareModule<State = any> {
handler: MiddlewareHandler<State> | MiddlewareHandler<State>[];
}
export interface Middleware<State = Record<string, unknown>> {
handler: MiddlewareHandler<State> | MiddlewareHandler<State>[];
}
// --- ISLANDS ---
export interface IslandModule {
// deno-lint-ignore no-explicit-any
[key: string]: ComponentType<any> | unknown;
}
export interface Island {
id: string;
name: string;
url: string;
component: ComponentType<unknown>;
exportName: string;
}
// --- PLUGINS ---
export interface Plugin<State = Record<string, unknown>> {
/** The name of the plugin. Must be snake-case. */
name: string;
/** A map of a snake-case names to a import specifiers. The entrypoints
* declared here can later be used in the "scripts" option of
* `PluginRenderResult` to load the entrypoint's code on the client.
*/
entrypoints?: Record<string, string>;
/** The render hook is called on the server every time some JSX needs to
* be turned into HTML. The render hook needs to call the `ctx.render`
* function exactly once.
*
* The hook can return a `PluginRenderResult` object that can do things like
* inject CSS into the page, or load additional JS files on the client.
*/
render?(ctx: PluginRenderContext): PluginRenderResult;
/** The asynchronous render hook is called on the server every time some
* JSX needs to be turned into HTML, wrapped around all synchronous render
* hooks. The render hook needs to call the `ctx.renderAsync` function
* exactly once, and await the result.
*
* This is useful for when plugins are generating styles and scripts with
* asynchronous dependencies. Unlike the synchronous render hook, async render
* hooks for multiple pages can be running at the same time. This means that
* unlike the synchronous render hook, you can not use global variables to
* propagate state between the render hook and the renderer.
*/
renderAsync?(ctx: PluginAsyncRenderContext): Promise<PluginRenderResult>;
/**
* Called before running the Fresh build task
*/
buildStart?(config: ResolvedFreshConfig): Promise<void> | void;
/**
* Called after completing the Fresh build task
*/
buildEnd?(): Promise<void> | void;
/**
* Called after configuration has been loaded
*/
configResolved?(config: ResolvedFreshConfig): Promise<void> | void;
routes?: PluginRoute[];
middlewares?: PluginMiddleware<State>[];
islands?: PluginIslands;
}
export interface PluginRenderContext {
render: PluginRenderFunction;
}
export interface PluginAsyncRenderContext {
renderAsync: PluginAsyncRenderFunction;
}
export interface PluginRenderResult {
/** CSS styles to be injected into the page. */
styles?: PluginRenderStyleTag[];
/** JS scripts to ship to the client. */
scripts?: PluginRenderScripts[];
/** Link tags for the page */
links?: PluginRenderLink[];
/** Body HTML transformed by the plugin */
htmlText?: string;
}
export interface PluginRenderStyleTag {
cssText: string;
media?: string;
id?: string;
}
export type PluginRenderLink = {
crossOrigin?: string;
href?: string;
hreflang?: string;
media?: string;
referrerPolicy?: string;
rel?: string;
title?: string;
type?: string;
};
export interface PluginRenderScripts {
/** The "key" of the entrypoint (as specified in `Plugin.entrypoints`) for the
* script that should be loaded. The script must be an ES module that exports
* a default function.
*
* The default function is invoked with the `state` argument specified below.
*/
entrypoint: string;
/** The state argument that is passed to the default export invocation of the
* entrypoint's default export. The state must be JSON-serializable.
*/
state: unknown;
}
export type PluginRenderFunction = () => PluginRenderFunctionResult;
export type PluginAsyncRenderFunction = () =>
| PluginRenderFunctionResult
| Promise<PluginRenderFunctionResult>;
export interface PluginRenderFunctionResult {
/** The HTML text that was rendered. */
htmlText: string;
/** If the renderer encountered any islands that require hydration on the
* client. */
requiresHydration: boolean;
}
export interface PluginMiddleware<State = Record<string, unknown>> {
/** A path in the format of a filename path without filetype */
path: string;
middleware: Middleware<State>;
}
export interface PluginRoute {
/** A path in the format of a filename path without filetype */
path: string;
component?:
| ComponentType<PageProps>
| ComponentType<AppProps>
| AsyncRoute
| AsyncLayout;
// deno-lint-ignore no-explicit-any
handler?: Handler<any, any> | Handlers<any, any>;
}
export interface PluginIslands {
baseLocation: string;
paths: string[];
}
// --- Deprecated types ---
/**
* @deprecated This type was a short-lived alternative to `Handlers`. Please use `Handlers` instead.
*/
export type MultiHandler<T> = Handlers<T>;
/**
* @deprecated Use {@linkcode FreshConfig} instead
*/
export type StartOptions = FreshConfig;
/**
* @deprecated Use {@linkcode FreshConfig} interface instead.
*/
export type FreshOptions = FreshConfig;
/**
* @deprecated Use {@linkcode FreshContext} interface instead
*/
export type HandlerContext<
Data = unknown,
State = Record<string, unknown>,
NotFoundData = Data,
> = FreshContext<State, Data, NotFoundData>;
/**
* @deprecated Use {@linkcode FreshContext} interface instead
*/
// deno-lint-ignore no-explicit-any
export type AppContext<T = any, S = Record<string, unknown>> = FreshContext<
S,
T
>;
/**
* @deprecated Use {@linkcode FreshContext} interface instead
*/
// deno-lint-ignore no-explicit-any
export type LayoutContext<T = any, S = Record<string, unknown>> = FreshContext<
S,
T
>;
/**
* @deprecated Use {@linkcode FreshContext} interface instead
*/
export type UnknownHandlerContext<State = Record<string, unknown>> =
FreshContext<State>;
/**
* @deprecated Use {@linkcode FreshContext} interface instead
*/
export type ErrorHandlerContext<State = Record<string, unknown>> = FreshContext<
State
>;
/**
* @deprecated Use {@linkcode FreshContext} interface instead
*/
export type MiddlewareHandlerContext<State = Record<string, unknown>> =
FreshContext<State>;
/**
* @deprecated Use {@linkcode PageProps} instead
*/
// deno-lint-ignore no-explicit-any
export type LayoutProps<T = any, S = Record<string, unknown>> = PageProps<T, S>;
/**
* @deprecated Use {@linkcode PageProps} instead
*/
// deno-lint-ignore no-explicit-any
export type UnknownPageProps<T = any, S = Record<string, unknown>> = PageProps<
T,
S
>;
/**
* @deprecated Use {@linkcode PageProps} instead
*/
// deno-lint-ignore no-explicit-any
export type AppProps<T = any, S = Record<string, unknown>> = PageProps<T, S>;
/**
* @deprecated Use {@linkcode PageProps} instead
*/
export type ErrorPageProps = PageProps;