API โบ @builder.io/qwik-city
Action
export type Action<
RETURN,
INPUT = Record<string, unknown>,
OPTIONAL extends boolean = true,
> = {
(): ActionStore<RETURN, INPUT, OPTIONAL>;
};
References: ActionStore
ActionConstructor
export type ActionConstructor = {
<
OBJ extends Record<string, any> | void | null,
VALIDATOR extends TypedDataValidator,
REST extends [DataValidator, ...DataValidator[]],
>(
actionQrl: (
data: GetValidatorType<VALIDATOR>,
event: RequestEventAction,
) => ValueOrPromise<OBJ>,
options: {
readonly id?: string;
readonly validation: [VALIDATOR, ...REST];
},
): Action<
StrictUnion<
| OBJ
| FailReturn<ValidatorErrorType<GetValidatorType<VALIDATOR>>>
| FailReturn<FailOfRest<REST>>
>,
GetValidatorType<VALIDATOR>,
false
>;
<
OBJ extends Record<string, any> | void | null,
VALIDATOR extends TypedDataValidator,
>(
actionQrl: (
data: GetValidatorType<VALIDATOR>,
event: RequestEventAction,
) => ValueOrPromise<OBJ>,
options: {
readonly id?: string;
readonly validation: [VALIDATOR];
},
): Action<
StrictUnion<
OBJ | FailReturn<ValidatorErrorType<GetValidatorType<VALIDATOR>>>
>,
GetValidatorType<VALIDATOR>,
false
>;
<
OBJ extends Record<string, any> | void | null,
REST extends [DataValidator, ...DataValidator[]],
>(
actionQrl: (
data: JSONObject,
event: RequestEventAction,
) => ValueOrPromise<OBJ>,
options: {
readonly id?: string;
readonly validation: REST;
},
): Action<StrictUnion<OBJ | FailReturn<FailOfRest<REST>>>>;
<
OBJ extends Record<string, any> | void | null,
VALIDATOR extends TypedDataValidator,
REST extends [DataValidator, ...DataValidator[]],
>(
actionQrl: (
data: GetValidatorType<VALIDATOR>,
event: RequestEventAction,
) => ValueOrPromise<OBJ>,
options: VALIDATOR,
...rest: REST
): Action<
StrictUnion<
| OBJ
| FailReturn<ValidatorErrorType<GetValidatorType<VALIDATOR>>>
| FailReturn<FailOfRest<REST>>
>,
GetValidatorType<VALIDATOR>,
false
>;
<
OBJ extends Record<string, any> | void | null,
VALIDATOR extends TypedDataValidator,
>(
actionQrl: (
data: GetValidatorType<VALIDATOR>,
event: RequestEventAction,
) => ValueOrPromise<OBJ>,
options: VALIDATOR,
): Action<
StrictUnion<
OBJ | FailReturn<ValidatorErrorType<GetValidatorType<VALIDATOR>>>
>,
GetValidatorType<VALIDATOR>,
false
>;
<
OBJ extends Record<string, any> | void | null,
REST extends [DataValidator, ...DataValidator[]],
>(
actionQrl: (
form: JSONObject,
event: RequestEventAction,
) => ValueOrPromise<OBJ>,
...rest: REST
): Action<StrictUnion<OBJ | FailReturn<FailOfRest<REST>>>>;
<OBJ>(
actionQrl: (
form: JSONObject,
event: RequestEventAction,
) => ValueOrPromise<OBJ>,
options?: {
readonly id?: string;
},
): Action<StrictUnion<OBJ>>;
};
References: TypedDataValidator, DataValidator, GetValidatorType, Action, StrictUnion, FailReturn, ValidatorErrorType, FailOfRest, JSONObject
ActionReturn
export type ActionReturn<RETURN> = {
readonly status?: number;
readonly value: RETURN;
};
ActionStore
export type ActionStore<RETURN, INPUT, OPTIONAL extends boolean = true> = {
readonly actionPath: string;
readonly isRunning: boolean;
readonly status?: number;
readonly formData: FormData | undefined;
readonly value: RETURN | undefined;
readonly submit: QRL<
OPTIONAL extends true
? (form?: INPUT | FormData | SubmitEvent) => Promise<ActionReturn<RETURN>>
: (form: INPUT | FormData | SubmitEvent) => Promise<ActionReturn<RETURN>>
>;
readonly submitted: boolean;
};
References: ActionReturn
ContentHeading
export interface ContentHeading
Property
Modifiers
Type
Description
readonly
string
readonly
number
readonly
string
ContentMenu
export interface ContentMenu
Property
Modifiers
Type
Description
readonly
string
(Optional)
readonly
(Optional)
readonly
string
DataValidator
export type DataValidator<T extends Record<string, any> = {}> = {
validate(ev: RequestEvent, data: unknown): Promise<ValidatorReturn<T>>;
};
References: ValidatorReturn
DocumentHead
export type DocumentHead =
| DocumentHeadValue
| ((props: DocumentHeadProps) => DocumentHeadValue);
References: DocumentHeadValue, DocumentHeadProps
DocumentHeadProps
export interface DocumentHeadProps extends RouteLocation
Extends: RouteLocation
Property
Modifiers
Type
Description
readonly
readonly
ResolveSyncValue
readonly
<T>(fn: () => T) => T
DocumentHeadValue
export interface DocumentHeadValue<FrontMatter extends Record<string, any> = Record<string, unknown>>
Property
Modifiers
Type
Description
readonly
Readonly<FrontMatter>
(Optional) Arbitrary object containing custom data. When the document head is created from markdown files, the frontmatter attributes that are not recognized as a well-known meta names (such as title, description, author, etc...), are stored in this property.
readonly
readonly DocumentLink[]
(Optional) Used to manually append <link>
elements to the <head>
.
readonly
readonly DocumentMeta[]
(Optional) Used to manually set meta tags in the head. Additionally, the data
property could be used to set arbitrary data which the <head>
component could later use to generate <meta>
tags.
readonly
readonly DocumentScript[]
(Optional) Used to manually append <script>
elements to the <head>
.
readonly
readonly DocumentStyle[]
(Optional) Used to manually append <style>
elements to the <head>
.
readonly
string
(Optional) Sets document.title
.
DocumentLink
export interface DocumentLink
Property
Modifiers
Type
Description
string
(Optional)
string
(Optional)
boolean
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
string
(Optional)
DocumentMeta
export interface DocumentMeta
Property
Modifiers
Type
Description
readonly
string
(Optional)
readonly
string
(Optional)
readonly
string
(Optional)
readonly
string
(Optional)
readonly
string
(Optional)
readonly
string
(Optional)
readonly
string
(Optional)
DocumentScript
This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
export interface DocumentScript
Property
Modifiers
Type
Description
readonly
string
(ALPHA) (Optional)
readonly
Readonly<QwikIntrinsicElements['script']>
(ALPHA) (Optional)
readonly
string
(ALPHA) (Optional)
DocumentStyle
export interface DocumentStyle
Property
Modifiers
Type
Description
readonly
string
(Optional)
readonly
Readonly<QwikIntrinsicElements['style']>
(Optional)
readonly
string
FailOfRest
export type FailOfRest<REST extends readonly DataValidator[]> =
REST extends readonly DataValidator<infer ERROR>[] ? ERROR : never;
References: DataValidator
FailReturn
export type FailReturn<T> = T & Failed;
Form
Form: <O, I>(
{ action, spaReset, reloadDocument, onSubmit$, ...rest }: FormProps<O, I>,
key: string | null,
) => import("@builder.io/qwik").JSXOutput;
Parameter
Type
Description
{ action, spaReset, reloadDocument, onSubmit$, ...rest }
FormProps<O, I>
key
string | null
import("@builder.io/qwik").JSXOutput
FormProps
export interface FormProps<O, I> extends Omit<QwikJSX.IntrinsicElements['form'], 'action' | 'method'>
Extends: Omit<QwikJSX.IntrinsicElements['form'], 'action' | 'method'>
Property
Modifiers
Type
Description
ActionStore<O, I, true | false>
(Optional) Reference to the action returned by action()
.
string | number | null
(Optional)
QRLEventHandlerMulti<SubmitEvent, HTMLFormElement> | undefined
(Optional) Event handler executed right when the form is submitted.
QRLEventHandlerMulti<CustomEvent<FormSubmitCompletedDetail<O>>, HTMLFormElement> | undefined
(Optional) Event handler executed right after the action is executed successfully and returns some data.
boolean
(Optional) When true
the form submission will cause a full page reload, even if SPA mode is enabled and JS is available.
boolean
(Optional) When true
all the form inputs will be reset in SPA mode, just like happens in a full page form submission.
Defaults to false
FormSubmitSuccessDetail
export interface FormSubmitCompletedDetail<T>
Property
Modifiers
Type
Description
number
T
GetValidatorType
export type GetValidatorType<VALIDATOR extends TypedDataValidator> =
VALIDATOR extends TypedDataValidator<infer TYPE> ? zod.infer<TYPE> : never;
References: TypedDataValidator
globalAction$
globalAction$: ActionConstructor;
globalActionQrl
globalActionQrl: ActionConstructorQRL;
JSONObject
export type JSONObject = {
[x: string]: JSONValue;
};
References: JSONValue
JSONValue
export type JSONValue =
| string
| number
| boolean
| {
[x: string]: JSONValue;
}
| Array<JSONValue>;
References: JSONValue
Link
Link: import("@builder.io/qwik").Component<LinkProps>;
LinkProps
export interface LinkProps extends AnchorAttributes
Extends: AnchorAttributes
Property
Modifiers
Type
Description
boolean | 'js'
(Optional) **Defaults to _true_.**
Whether Qwik should prefetch and cache the target page of this **Link
**, this includes invoking any **routeLoader$
**, **onGet
**, etc.
This **improves UX performance** for client-side (**SPA**) navigations.
Prefetching occurs when a the Link enters the viewport in production (**on:qvisibile
**), or with **mouseover
/focus
** during dev.
Prefetching will not occur if the user has the **data saver** setting enabled.
Setting this value to **"js"
** will prefetch only javascript bundles required to render this page on the client, **false
** will disable prefetching altogether.
boolean
(Optional)
boolean
(Optional)
boolean
(Optional)
Loader_2
export type Loader<RETURN> = {
(): LoaderSignal<RETURN>;
};
References: LoaderSignal
LoaderSignal
export type LoaderSignal<TYPE> = TYPE extends () => ValueOrPromise<
infer VALIDATOR
>
? ReadonlySignal<ValueOrPromise<VALIDATOR>>
: ReadonlySignal<TYPE>;
MenuData
export type MenuData = [pathname: string, menuLoader: MenuModuleLoader];
NavigationType
export type NavigationType = "initial" | "form" | "link" | "popstate";
PageModule
export interface PageModule extends RouteModule
Extends: RouteModule
Property
Modifiers
Type
Description
readonly
unknown
readonly
ContentModuleHead
(Optional)
readonly
(Optional)
readonly
(Optional)
PathParams
export declare type PathParams = Record<string, string>;
QWIK_CITY_SCROLLER
QWIK_CITY_SCROLLER = "_qCityScroller";
QwikCityMockProps
export interface QwikCityMockProps
Property
Modifiers
Type
Description
(Optional)
Record<string, string>
(Optional)
string
(Optional)
QwikCityMockProvider
QwikCityMockProvider: import("@builder.io/qwik").Component<QwikCityMockProps>;
QwikCityPlan
export interface QwikCityPlan
Property
Modifiers
Type
Description
readonly
string
(Optional)
readonly
boolean
(Optional)
readonly
MenuData[]
(Optional)
readonly
readonly
RouteModule[]
(Optional)
readonly
boolean
(Optional)
QwikCityProps
export interface QwikCityProps
Property
Modifiers
Type
Description
boolean
(Optional) Enable the ViewTransition API
Default: true
QwikCityProvider
QwikCityProvider: import("@builder.io/qwik").Component<QwikCityProps>;
ResolvedDocumentHead
export type ResolvedDocumentHead<
FrontMatter extends Record<string, any> = Record<string, unknown>,
> = Required<DocumentHeadValue<FrontMatter>>;
References: DocumentHeadValue
routeAction$
routeAction$: ActionConstructor;
routeActionQrl
routeActionQrl: ActionConstructorQRL;
RouteData
export type RouteData =
| [routeName: string, loaders: ModuleLoader[]]
| [
routeName: string,
loaders: ModuleLoader[],
originalPathname: string,
routeBundleNames: string[],
];
routeLoader$
routeLoader$: LoaderConstructor;
routeLoaderQrl
routeLoaderQrl: LoaderConstructorQRL;
RouteLocation
export interface RouteLocation
Property
Modifiers
Type
Description
readonly
boolean
readonly
Readonly<Record<string, string>>
readonly
URL | undefined
readonly
URL
RouteNavigate
export type RouteNavigate = QRL<
(
path?: string | number,
options?:
| {
type?: Exclude<NavigationType, "initial">;
forceReload?: boolean;
replaceState?: boolean;
scroll?: boolean;
}
| boolean,
) => Promise<void>
>;
References: NavigationType
RouterOutlet
RouterOutlet: import("@builder.io/qwik").Component<unknown>;
server$
server$: <T extends ServerFunction>(
qrl: T,
options?: ServerConfig | undefined,
) => ServerQRL<T>;
Parameter
Type
Description
qrl
T
options
ServerConfig | undefined
(Optional)
ServerQRL<T>
ServerFunction
export type ServerFunction = {
(this: RequestEventBase, ...args: any[]): any;
options?: ServerConfig;
};
serverQrl
You can pass an AbortSignal as the first argument of a server$
function and it will use it to abort the fetch when fired.
export type ServerQRL<T extends ServerFunction> = QRL<
| ((abort: AbortSignal, ...args: Parameters<T>) => ReturnType<T>)
| ((...args: Parameters<T>) => ReturnType<T>)
>;
References: ServerFunction
ServerQRL
You can pass an AbortSignal as the first argument of a server$
function and it will use it to abort the fetch when fired.
export type ServerQRL<T extends ServerFunction> = QRL<
| ((abort: AbortSignal, ...args: Parameters<T>) => ReturnType<T>)
| ((...args: Parameters<T>) => ReturnType<T>)
>;
References: ServerFunction
ServiceWorkerRegister
ServiceWorkerRegister: (props: { nonce?: string }) =>
import("@builder.io/qwik").JSXNode<"script">;
Parameter
Type
Description
props
{ nonce?: string; }
import("@builder.io/qwik").JSXNode<"script">
StaticGenerate
export interface StaticGenerate
Property
Modifiers
Type
Description
(Optional)
StaticGenerateHandler
export type StaticGenerateHandler = ({
env,
}: {
env: EnvGetter;
}) => Promise<StaticGenerate> | StaticGenerate;
References: StaticGenerate
StrictUnion
export type StrictUnion<T> = Prettify<StrictUnionHelper<T, T>>;
TypedDataValidator
export type TypedDataValidator<T extends zod.ZodType = zod.ZodType> = {
__zod: zod.ZodSchema<T>;
validate(
ev: RequestEvent,
data: unknown,
): Promise<zod.SafeParseReturnType<T, T>>;
};
useContent
useContent: () => import("./types").ContentState;
Returns:
import("./types").ContentState
useDocumentHead
Returns the document head for the current page. The generic type describes the front matter.
useDocumentHead: <
FrontMatter extends Record<string, unknown> = Record<string, any>,
>() => Required<ResolvedDocumentHead<FrontMatter>>;
Returns:
Required<ResolvedDocumentHead<FrontMatter>>
useLocation
useLocation: () => RouteLocation;
Returns:
useNavigate
useNavigate: () => RouteNavigate;
Returns:
validator$
validator$: ValidatorConstructor;
ValidatorErrorKeyDotNotation
export type ValidatorErrorKeyDotNotation<
T,
Prefix extends string = "",
> = T extends object
? {
[K in keyof T & string]: T[K] extends (infer U)[]
? U extends object
?
| `${Prefix}${K}[]`
| `${Prefix}${K}[]${ValidatorErrorKeyDotNotation<U, ".">}`
: `${Prefix}${K}[]`
: T[K] extends object
? ValidatorErrorKeyDotNotation<T[K], `${Prefix}${K}.`>
: `${Prefix}${K}`;
}[keyof T & string]
: never;
References: ValidatorErrorKeyDotNotation
ValidatorErrorType
export type ValidatorErrorType<T, U = string> = {
formErrors: U[];
fieldErrors: Partial<{
[K in ValidatorErrorKeyDotNotation<T>]: K extends `${infer _Prefix}[]${infer _Suffix}`
? U[]
: U;
}>;
};
References: ValidatorErrorKeyDotNotation
validatorQrl
validatorQrl: ValidatorConstructorQRL;
ValidatorReturn
export type ValidatorReturn<T extends Record<string, any> = {}> =
| ValidatorReturnSuccess
| ValidatorReturnFail<T>;
zod$
zod$: ZodConstructor;
ZodConstructor
export type ZodConstructor = {
<T extends zod.ZodRawShape>(schema: T): TypedDataValidator<zod.ZodObject<T>>;
<T extends zod.ZodRawShape>(
schema: (z: typeof zod, ev: RequestEvent) => T,
): TypedDataValidator<zod.ZodObject<T>>;
<T extends zod.Schema>(schema: T): TypedDataValidator<T>;
<T extends zod.Schema>(
schema: (z: typeof zod, ev: RequestEvent) => T,
): TypedDataValidator<T>;
};
References: TypedDataValidator
zodQrl
zodQrl: ZodConstructorQRL;