|
|
import { getDefaultState } from './mutation' |
|
|
import { notifyManager } from './notifyManager' |
|
|
import { Subscribable } from './subscribable' |
|
|
import { hashKey, shallowEqualObjects } from './utils' |
|
|
import type { QueryClient } from './queryClient' |
|
|
import type { |
|
|
DefaultError, |
|
|
MutateOptions, |
|
|
MutationObserverOptions, |
|
|
MutationObserverResult, |
|
|
} from './types' |
|
|
import type { Action, Mutation } from './mutation' |
|
|
|
|
|
|
|
|
|
|
|
type MutationObserverListener<TData, TError, TVariables, TContext> = ( |
|
|
result: MutationObserverResult<TData, TError, TVariables, TContext>, |
|
|
) => void |
|
|
|
|
|
|
|
|
|
|
|
export class MutationObserver< |
|
|
TData = unknown, |
|
|
TError = DefaultError, |
|
|
TVariables = void, |
|
|
TContext = unknown, |
|
|
> extends Subscribable< |
|
|
MutationObserverListener<TData, TError, TVariables, TContext> |
|
|
> { |
|
|
options!: MutationObserverOptions<TData, TError, TVariables, TContext> |
|
|
|
|
|
#client: QueryClient |
|
|
#currentResult: MutationObserverResult<TData, TError, TVariables, TContext> = |
|
|
undefined! |
|
|
#currentMutation?: Mutation<TData, TError, TVariables, TContext> |
|
|
#mutateOptions?: MutateOptions<TData, TError, TVariables, TContext> |
|
|
|
|
|
constructor( |
|
|
client: QueryClient, |
|
|
options: MutationObserverOptions<TData, TError, TVariables, TContext>, |
|
|
) { |
|
|
super() |
|
|
|
|
|
this.#client = client |
|
|
this.setOptions(options) |
|
|
this.bindMethods() |
|
|
this.#updateResult() |
|
|
} |
|
|
|
|
|
protected bindMethods(): void { |
|
|
this.mutate = this.mutate.bind(this) |
|
|
this.reset = this.reset.bind(this) |
|
|
} |
|
|
|
|
|
setOptions( |
|
|
options: MutationObserverOptions<TData, TError, TVariables, TContext>, |
|
|
) { |
|
|
const prevOptions = this.options as |
|
|
| MutationObserverOptions<TData, TError, TVariables, TContext> |
|
|
| undefined |
|
|
this.options = this.#client.defaultMutationOptions(options) |
|
|
if (!shallowEqualObjects(this.options, prevOptions)) { |
|
|
this.#client.getMutationCache().notify({ |
|
|
type: 'observerOptionsUpdated', |
|
|
mutation: this.#currentMutation, |
|
|
observer: this, |
|
|
}) |
|
|
} |
|
|
|
|
|
if ( |
|
|
prevOptions?.mutationKey && |
|
|
this.options.mutationKey && |
|
|
hashKey(prevOptions.mutationKey) !== hashKey(this.options.mutationKey) |
|
|
) { |
|
|
this.reset() |
|
|
} else if (this.#currentMutation?.state.status === 'pending') { |
|
|
this.#currentMutation.setOptions(this.options) |
|
|
} |
|
|
} |
|
|
|
|
|
protected onUnsubscribe(): void { |
|
|
if (!this.hasListeners()) { |
|
|
this.#currentMutation?.removeObserver(this) |
|
|
} |
|
|
} |
|
|
|
|
|
onMutationUpdate(action: Action<TData, TError, TVariables, TContext>): void { |
|
|
this.#updateResult() |
|
|
|
|
|
this.#notify(action) |
|
|
} |
|
|
|
|
|
getCurrentResult(): MutationObserverResult< |
|
|
TData, |
|
|
TError, |
|
|
TVariables, |
|
|
TContext |
|
|
> { |
|
|
return this.#currentResult |
|
|
} |
|
|
|
|
|
reset(): void { |
|
|
|
|
|
|
|
|
this.#currentMutation?.removeObserver(this) |
|
|
this.#currentMutation = undefined |
|
|
this.#updateResult() |
|
|
this.#notify() |
|
|
} |
|
|
|
|
|
mutate( |
|
|
variables: TVariables, |
|
|
options?: MutateOptions<TData, TError, TVariables, TContext>, |
|
|
): Promise<TData> { |
|
|
this.#mutateOptions = options |
|
|
|
|
|
this.#currentMutation?.removeObserver(this) |
|
|
|
|
|
this.#currentMutation = this.#client |
|
|
.getMutationCache() |
|
|
.build(this.#client, this.options) |
|
|
|
|
|
this.#currentMutation.addObserver(this) |
|
|
|
|
|
return this.#currentMutation.execute(variables) |
|
|
} |
|
|
|
|
|
#updateResult(): void { |
|
|
const state = |
|
|
this.#currentMutation?.state ?? |
|
|
getDefaultState<TData, TError, TVariables, TContext>() |
|
|
|
|
|
this.#currentResult = { |
|
|
...state, |
|
|
isPending: state.status === 'pending', |
|
|
isSuccess: state.status === 'success', |
|
|
isError: state.status === 'error', |
|
|
isIdle: state.status === 'idle', |
|
|
mutate: this.mutate, |
|
|
reset: this.reset, |
|
|
} as MutationObserverResult<TData, TError, TVariables, TContext> |
|
|
} |
|
|
|
|
|
#notify(action?: Action<TData, TError, TVariables, TContext>): void { |
|
|
notifyManager.batch(() => { |
|
|
|
|
|
if (this.#mutateOptions && this.hasListeners()) { |
|
|
const variables = this.#currentResult.variables! |
|
|
const context = this.#currentResult.context |
|
|
|
|
|
if (action?.type === 'success') { |
|
|
this.#mutateOptions.onSuccess?.(action.data, variables, context!) |
|
|
this.#mutateOptions.onSettled?.(action.data, null, variables, context) |
|
|
} else if (action?.type === 'error') { |
|
|
this.#mutateOptions.onError?.(action.error, variables, context) |
|
|
this.#mutateOptions.onSettled?.( |
|
|
undefined, |
|
|
action.error, |
|
|
variables, |
|
|
context, |
|
|
) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
this.listeners.forEach((listener) => { |
|
|
listener(this.#currentResult) |
|
|
}) |
|
|
}) |
|
|
} |
|
|
} |
|
|
|