@stratal/inertia 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/decorate-CzXVx7ZH.mjs +9 -0
- package/dist/generator/type-generator.worker.mjs +1 -1
- package/dist/index.d.mts +68 -105
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +36 -382
- package/dist/index.mjs.map +1 -1
- package/dist/quarry.d.mts +44 -0
- package/dist/quarry.d.mts.map +1 -0
- package/dist/quarry.mjs +392 -0
- package/dist/quarry.mjs.map +1 -0
- package/dist/react.d.mts +1 -31
- package/dist/react.d.mts.map +1 -1
- package/dist/react.mjs +10 -42
- package/dist/react.mjs.map +1 -1
- package/dist/{type-generator-o_PxETTs.mjs → type-generator-bfo14BJI.mjs} +63 -11
- package/dist/type-generator-bfo14BJI.mjs.map +1 -0
- package/dist/vite.d.mts +19 -0
- package/dist/vite.d.mts.map +1 -1
- package/dist/vite.mjs +46 -7
- package/dist/vite.mjs.map +1 -1
- package/package.json +8 -10
- package/dist/type-generator-o_PxETTs.mjs.map +0 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
//#region \0@oxc-project+runtime@0.129.0/helpers/decorate.js
|
|
2
|
+
function __decorate(decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
}
|
|
8
|
+
//#endregion
|
|
9
|
+
export { __decorate as t };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as runTypeGeneration } from "../type-generator-
|
|
1
|
+
import { n as runTypeGeneration } from "../type-generator-bfo14BJI.mjs";
|
|
2
2
|
import { parentPort, workerData } from "node:worker_threads";
|
|
3
3
|
//#region src/generator/type-generator.worker.ts
|
|
4
4
|
async function main() {
|
package/dist/index.d.mts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
/// <reference path="../global.d.ts" />
|
|
2
2
|
import { ExceptionHandler } from "stratal/errors";
|
|
3
|
-
import { MessageKeyPrefix } from "stratal/i18n";
|
|
4
3
|
import { AsyncModuleOptions, DynamicModule, OnException, OnInitialize } from "stratal/module";
|
|
5
4
|
import { Middleware, Next, RouteConfig, RouteConfigurable, Router, RouterContext } from "stratal/router";
|
|
6
|
-
import {
|
|
5
|
+
import { MessageKeyPrefix } from "stratal/i18n";
|
|
7
6
|
import { LoggerService } from "stratal/logger";
|
|
8
7
|
import { z } from "stratal/validation";
|
|
9
8
|
import { InertiaAppSSRResponse, Page, Page as InertiaPage, SharedPageProps } from "@inertiajs/core";
|
|
9
|
+
import { ContentfulStatusCode } from "hono/utils/http-status";
|
|
10
10
|
import { CookieOptions } from "hono/utils/cookie";
|
|
11
|
+
|
|
11
12
|
//#region src/flash/flash-store.d.ts
|
|
12
13
|
interface FlashStore {
|
|
13
14
|
read(ctx: RouterContext): Promise<Record<string, unknown>>;
|
|
@@ -15,64 +16,6 @@ interface FlashStore {
|
|
|
15
16
|
clear(ctx: RouterContext): Promise<void>;
|
|
16
17
|
}
|
|
17
18
|
//#endregion
|
|
18
|
-
//#region src/types.d.ts
|
|
19
|
-
interface InertiaPageRegistry {}
|
|
20
|
-
type InertiaSharedProps = SharedPageProps;
|
|
21
|
-
type InertiaPageComponent = keyof InertiaPageRegistry extends never ? string : Extract<keyof InertiaPageRegistry, string>;
|
|
22
|
-
type AllowInertiaWrappers<T> = { [K in keyof T]: T[K] | InertiaDeferredProp | InertiaMergeProp | InertiaOptionalProp | InertiaOnceProp | InertiaAlwaysProp };
|
|
23
|
-
type ResolvedInertiaPageProps<C extends InertiaPageComponent> = C extends keyof InertiaPageRegistry ? AllowInertiaWrappers<InertiaPageRegistry[C]> : Record<string, unknown>;
|
|
24
|
-
type InertiaFullPageProps<C extends InertiaPageComponent> = (C extends keyof InertiaPageRegistry ? InertiaPageRegistry[C] : Record<string, unknown>) & InertiaSharedProps;
|
|
25
|
-
interface InertiaRenderOptions {
|
|
26
|
-
encryptHistory?: boolean;
|
|
27
|
-
clearHistory?: boolean;
|
|
28
|
-
preserveFragment?: boolean;
|
|
29
|
-
}
|
|
30
|
-
type InertiaSsrResult = InertiaAppSSRResponse;
|
|
31
|
-
interface InertiaSsrBundle {
|
|
32
|
-
render(page: Page): Promise<InertiaSsrResult>;
|
|
33
|
-
}
|
|
34
|
-
type SharedDataResolver = (ctx: RouterContext) => any;
|
|
35
|
-
interface ViteManifestEntry {
|
|
36
|
-
file: string;
|
|
37
|
-
css?: string[];
|
|
38
|
-
isEntry?: boolean;
|
|
39
|
-
imports?: string[];
|
|
40
|
-
dynamicImports?: string[];
|
|
41
|
-
src?: string;
|
|
42
|
-
}
|
|
43
|
-
type ViteManifest = Record<string, ViteManifestEntry>;
|
|
44
|
-
declare const INERTIA_PROP_OPTIONAL: unique symbol;
|
|
45
|
-
declare const INERTIA_PROP_DEFERRED: unique symbol;
|
|
46
|
-
declare const INERTIA_PROP_MERGE: unique symbol;
|
|
47
|
-
declare const INERTIA_PROP_ONCE: unique symbol;
|
|
48
|
-
declare const INERTIA_PROP_ALWAYS: unique symbol;
|
|
49
|
-
interface InertiaOptionalProp<T = unknown> {
|
|
50
|
-
[INERTIA_PROP_OPTIONAL]: true;
|
|
51
|
-
callback: () => T;
|
|
52
|
-
}
|
|
53
|
-
interface InertiaDeferredProp<T = unknown> {
|
|
54
|
-
[INERTIA_PROP_DEFERRED]: true;
|
|
55
|
-
callback: () => T;
|
|
56
|
-
group: string;
|
|
57
|
-
}
|
|
58
|
-
type InertiaMergeStrategy = 'append' | 'prepend' | 'deep';
|
|
59
|
-
interface InertiaMergeProp<T = unknown> {
|
|
60
|
-
[INERTIA_PROP_MERGE]: true;
|
|
61
|
-
callback: () => T;
|
|
62
|
-
strategy: InertiaMergeStrategy;
|
|
63
|
-
matchOn?: string;
|
|
64
|
-
}
|
|
65
|
-
interface InertiaOnceProp<T = unknown> {
|
|
66
|
-
[INERTIA_PROP_ONCE]: true;
|
|
67
|
-
callback: () => T;
|
|
68
|
-
expiresAt?: number | null;
|
|
69
|
-
key?: string;
|
|
70
|
-
}
|
|
71
|
-
interface InertiaAlwaysProp<T = unknown> {
|
|
72
|
-
[INERTIA_PROP_ALWAYS]: true;
|
|
73
|
-
callback: () => T;
|
|
74
|
-
}
|
|
75
|
-
//#endregion
|
|
76
19
|
//#region src/inertia.options.d.ts
|
|
77
20
|
interface SsrBundleModule {
|
|
78
21
|
render(page: Page): Promise<InertiaAppSSRResponse>;
|
|
@@ -161,11 +104,6 @@ interface InertiaModuleOptions {
|
|
|
161
104
|
* ```
|
|
162
105
|
*/
|
|
163
106
|
routes?: boolean;
|
|
164
|
-
/**
|
|
165
|
-
* Vite manifest for production builds. When omitted, dev mode is assumed
|
|
166
|
-
* and Vite client + entry scripts are injected with same-origin paths.
|
|
167
|
-
*/
|
|
168
|
-
manifest?: ViteManifest;
|
|
169
107
|
/**
|
|
170
108
|
* Client entry path relative to project root (default: `src/inertia/app.tsx`).
|
|
171
109
|
* Used in dev mode to inject the entry script tag.
|
|
@@ -196,6 +134,69 @@ declare const INERTIA_TOKENS: {
|
|
|
196
134
|
readonly SsrRenderer: symbol;
|
|
197
135
|
};
|
|
198
136
|
//#endregion
|
|
137
|
+
//#region src/types.d.ts
|
|
138
|
+
interface InertiaPageRegistry {}
|
|
139
|
+
type InertiaSharedProps = SharedPageProps;
|
|
140
|
+
type InertiaPageComponent = keyof InertiaPageRegistry extends never ? string : Extract<keyof InertiaPageRegistry, string>;
|
|
141
|
+
type AllowInertiaWrappers<T> = { [K in keyof T]: T[K] | InertiaDeferredProp | InertiaMergeProp | InertiaOptionalProp | InertiaOnceProp | InertiaAlwaysProp };
|
|
142
|
+
type ResolvedInertiaPageProps<C extends InertiaPageComponent> = C extends keyof InertiaPageRegistry ? AllowInertiaWrappers<InertiaPageRegistry[C]> : Record<string, unknown>;
|
|
143
|
+
type InertiaFullPageProps<C extends InertiaPageComponent> = (C extends keyof InertiaPageRegistry ? InertiaPageRegistry[C] : Record<string, unknown>) & InertiaSharedProps;
|
|
144
|
+
interface InertiaRenderOptions {
|
|
145
|
+
encryptHistory?: boolean;
|
|
146
|
+
clearHistory?: boolean;
|
|
147
|
+
preserveFragment?: boolean;
|
|
148
|
+
/**
|
|
149
|
+
* HTTP status code to use for the rendered response. Defaults to `200`.
|
|
150
|
+
* Useful for rendering Inertia error pages (e.g. `Errors/404` with status 404).
|
|
151
|
+
*/
|
|
152
|
+
status?: ContentfulStatusCode;
|
|
153
|
+
}
|
|
154
|
+
type InertiaSsrResult = InertiaAppSSRResponse;
|
|
155
|
+
interface InertiaSsrBundle {
|
|
156
|
+
render(page: Page): Promise<InertiaSsrResult>;
|
|
157
|
+
}
|
|
158
|
+
type SharedDataResolver = (ctx: RouterContext) => any;
|
|
159
|
+
interface ViteManifestEntry {
|
|
160
|
+
file: string;
|
|
161
|
+
css?: string[];
|
|
162
|
+
isEntry?: boolean;
|
|
163
|
+
imports?: string[];
|
|
164
|
+
dynamicImports?: string[];
|
|
165
|
+
src?: string;
|
|
166
|
+
}
|
|
167
|
+
type ViteManifest = Record<string, ViteManifestEntry>;
|
|
168
|
+
declare const INERTIA_PROP_OPTIONAL: unique symbol;
|
|
169
|
+
declare const INERTIA_PROP_DEFERRED: unique symbol;
|
|
170
|
+
declare const INERTIA_PROP_MERGE: unique symbol;
|
|
171
|
+
declare const INERTIA_PROP_ONCE: unique symbol;
|
|
172
|
+
declare const INERTIA_PROP_ALWAYS: unique symbol;
|
|
173
|
+
interface InertiaOptionalProp<T = unknown> {
|
|
174
|
+
[INERTIA_PROP_OPTIONAL]: true;
|
|
175
|
+
callback: () => T;
|
|
176
|
+
}
|
|
177
|
+
interface InertiaDeferredProp<T = unknown> {
|
|
178
|
+
[INERTIA_PROP_DEFERRED]: true;
|
|
179
|
+
callback: () => T;
|
|
180
|
+
group: string;
|
|
181
|
+
}
|
|
182
|
+
type InertiaMergeStrategy = 'append' | 'prepend' | 'deep';
|
|
183
|
+
interface InertiaMergeProp<T = unknown> {
|
|
184
|
+
[INERTIA_PROP_MERGE]: true;
|
|
185
|
+
callback: () => T;
|
|
186
|
+
strategy: InertiaMergeStrategy;
|
|
187
|
+
matchOn?: string;
|
|
188
|
+
}
|
|
189
|
+
interface InertiaOnceProp<T = unknown> {
|
|
190
|
+
[INERTIA_PROP_ONCE]: true;
|
|
191
|
+
callback: () => T;
|
|
192
|
+
expiresAt?: number | null;
|
|
193
|
+
key?: string;
|
|
194
|
+
}
|
|
195
|
+
interface InertiaAlwaysProp<T = unknown> {
|
|
196
|
+
[INERTIA_PROP_ALWAYS]: true;
|
|
197
|
+
callback: () => T;
|
|
198
|
+
}
|
|
199
|
+
//#endregion
|
|
199
200
|
//#region src/flash/cookie-flash-store.d.ts
|
|
200
201
|
interface CookieFlashStoreOptions {
|
|
201
202
|
secret: string | BufferSource;
|
|
@@ -258,8 +259,8 @@ declare class SsrRendererService {
|
|
|
258
259
|
declare class ManifestService {
|
|
259
260
|
private readonly manifest;
|
|
260
261
|
private readonly entryClientPath;
|
|
262
|
+
private readonly isDev;
|
|
261
263
|
constructor(options: InertiaModuleOptions);
|
|
262
|
-
private get isDev();
|
|
263
264
|
getHeadTags(): string;
|
|
264
265
|
getScriptTags(): string;
|
|
265
266
|
}
|
|
@@ -418,44 +419,6 @@ declare class InertiaMiddleware implements Middleware {
|
|
|
418
419
|
handle(ctx: RouterContext, next: Next): Promise<void>;
|
|
419
420
|
}
|
|
420
421
|
//#endregion
|
|
421
|
-
//#region src/commands/inertia-build.command.d.ts
|
|
422
|
-
declare class InertiaBuildCommand extends Command {
|
|
423
|
-
static command: string;
|
|
424
|
-
static description: string;
|
|
425
|
-
handle(): Promise<number | undefined>;
|
|
426
|
-
private spawnVite;
|
|
427
|
-
}
|
|
428
|
-
//#endregion
|
|
429
|
-
//#region src/commands/inertia-dev.command.d.ts
|
|
430
|
-
declare class InertiaDevCommand extends Command {
|
|
431
|
-
static command: string;
|
|
432
|
-
static description: string;
|
|
433
|
-
handle(): Promise<number | undefined>;
|
|
434
|
-
}
|
|
435
|
-
//#endregion
|
|
436
|
-
//#region src/commands/inertia-install.command.d.ts
|
|
437
|
-
declare class InertiaInstallCommand extends Command {
|
|
438
|
-
static command: string;
|
|
439
|
-
static description: string;
|
|
440
|
-
handle(): Promise<number | undefined>;
|
|
441
|
-
private updateAppModule;
|
|
442
|
-
}
|
|
443
|
-
//#endregion
|
|
444
|
-
//#region src/commands/inertia-types.command.d.ts
|
|
445
|
-
declare class InertiaTypesCommand extends Command {
|
|
446
|
-
static command: string;
|
|
447
|
-
static description: string;
|
|
448
|
-
handle(): Promise<number | undefined>;
|
|
449
|
-
private generate;
|
|
450
|
-
private watchForChanges;
|
|
451
|
-
}
|
|
452
|
-
//#endregion
|
|
453
|
-
//#region src/generator/type-generator.d.ts
|
|
454
|
-
declare function runTypeGeneration(cwd: string): Promise<{
|
|
455
|
-
outputPath: string;
|
|
456
|
-
pageCount: number;
|
|
457
|
-
}>;
|
|
458
|
-
//#endregion
|
|
459
422
|
//#region src/augment/router-variables.d.ts
|
|
460
423
|
declare module 'stratal/router' {
|
|
461
424
|
interface RouterVariables {
|
|
@@ -468,5 +431,5 @@ declare module 'stratal/router' {
|
|
|
468
431
|
}
|
|
469
432
|
}
|
|
470
433
|
//#endregion
|
|
471
|
-
export { CookieFlashStore, type FlashStore, HandlePrecognitiveRequests, INERTIA_TOKENS, type InertiaAlwaysProp,
|
|
434
|
+
export { CookieFlashStore, type FlashStore, HandlePrecognitiveRequests, INERTIA_TOKENS, type InertiaAlwaysProp, type InertiaDeferredProp, InertiaDelete, type InertiaFlashOptions, type InertiaFullPageProps, InertiaGet, type InertiaI18nOptions, type InertiaMergeProp, type InertiaMergeStrategy, InertiaMiddleware, InertiaModule, type InertiaModuleOptions, type InertiaOnceProp, type InertiaOptionalProp, type InertiaPage, type InertiaPageComponent, type InertiaPageRegistry, InertiaPatch, InertiaPost, InertiaPut, type InertiaRenderOptions, InertiaRoute, type InertiaRouteConfig, InertiaService, type InertiaSharedProps, type InertiaSsrBundle, type InertiaSsrOptions, type InertiaSsrResult, ManifestService, type ResolvedInertiaPageProps, type SharedDataResolver, SsrRendererService, TemplateService, type ViteManifest, type ViteManifestEntry };
|
|
472
435
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/flash/flash-store.ts","../src/
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/flash/flash-store.ts","../src/inertia.options.ts","../src/inertia.module.ts","../src/inertia.tokens.ts","../src/types.ts","../src/flash/cookie-flash-store.ts","../src/augment/router-context.ts","../src/services/ssr-renderer.service.ts","../src/services/manifest.service.ts","../src/services/template.service.ts","../src/services/inertia.service.ts","../src/decorators/inertia.decorators.ts","../src/middleware/handle-precognitive-requests.middleware.ts","../src/middleware/inertia.middleware.ts","../src/augment/router-variables.ts"],"mappings":"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"}
|