Skip to main content
Version: 1.x.x

useSubmit


import { useSubmit } from "@hyper-fetch/react"

Description

Defined in hooks/use-submit/use-submit.hooks.ts:28

Preview

useSubmit<Command>(command, options)

Parameters

NameDetails

command

Required

Command

options

Required

UseSubmitOptionsType<Command>

Returns

{
data: null | T extends Command<infer D, any, any, any, any, any, any, any, any, any> ? D : never;
error: null | T extends Command<any, any, any, infer G, infer L, any, any, any, any, any> ? \G\ | \L\ : never;
retries: number;
status: null | number;
timestamp: null | Date;
setData: (data: ExtractResponse<T>, emitToCache?: boolean) => void;
setError: (error: ExtractError<T>, emitToCache?: boolean) => void;
setLoading: (loading: boolean, emitToHooks?: boolean) => void;
setRetries: (retries: number, emitToCache?: boolean) => void;
setStatus: (status: number | null, emitToCache?: boolean) => void;
setTimestamp: (timestamp: Date, emitToCache?: boolean) => void;
abort: () => void;
bounce: {
active: boolean;
reset: () => void;
};
onSubmitAbort: (callback: OnErrorCallbackType<T>) => void;
onSubmitDownloadProgress: (callback: OnProgressCallbackType) => void;
onSubmitError: (callback: OnErrorCallbackType<T>) => void;
onSubmitFinished: (callback: OnFinishedCallbackType<T>) => void;
onSubmitOfflineError: (callback: OnErrorCallbackType<T>) => void;
onSubmitRequestStart: (callback: OnStartCallbackType<T>) => void;
onSubmitResponseStart: (callback: OnStartCallbackType<T>) => void;
onSubmitSuccess: (callback: OnSuccessCallbackType<T>) => void;
onSubmitUploadProgress: (callback: OnProgressCallbackType) => void;
revalidate: (invalidateKey: InvalidationKeyType | InvalidationKeyType[]) => void;
submit: (...parameters: Parameters<T[send]>) => Promise<ExtractClientReturnType<T>>;
submitting: boolean;
}