UNPKG

@angular/core

Version:

Angular - the core framework

1 lines • 40 kB
{"version":3,"file":"_resource-chunk.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/core/src/authoring/output/output_emitter_ref.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/core/src/render3/reactivity/computed.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/core/src/render3/reactivity/linked_signal.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/packages/core/src/resource/resource.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {setActiveConsumer} from '../../../primitives/signals';\n\nimport {inject} from '../../di/injector_compatibility';\nimport {ErrorHandler} from '../../error_handler';\nimport {formatRuntimeError, RuntimeError, RuntimeErrorCode} from '../../errors';\nimport {DestroyRef} from '../../linker/destroy_ref';\n\nimport {OutputRef, OutputRefSubscription} from './output_ref';\n\n/**\n * An `OutputEmitterRef` is created by the `output()` function and can be\n * used to emit values to consumers of your directive or component.\n *\n * Consumers of your directive/component can bind to the output and\n * subscribe to changes via the bound event syntax. For example:\n *\n * ```html\n * <my-comp (valueChange)=\"processNewValue($event)\" />\n * ```\n *\n * @see [Custom events with outputs](guide/components/outputs)\n *\n * @publicAPI\n */\nexport class OutputEmitterRef<T> implements OutputRef<T> {\n private destroyed = false;\n private listeners: Array<(value: T) => void> | null = null;\n private errorHandler = inject(ErrorHandler, {optional: true});\n\n /** @internal */\n destroyRef: DestroyRef = inject(DestroyRef);\n\n constructor() {\n // Clean-up all listeners and mark as destroyed upon destroy.\n this.destroyRef.onDestroy(() => {\n this.destroyed = true;\n this.listeners = null;\n });\n }\n\n subscribe(callback: (value: T) => void): OutputRefSubscription {\n if (this.destroyed) {\n throw new RuntimeError(\n RuntimeErrorCode.OUTPUT_REF_DESTROYED,\n ngDevMode &&\n 'Unexpected subscription to destroyed `OutputRef`. ' +\n 'The owning directive/component is destroyed.',\n );\n }\n\n (this.listeners ??= []).push(callback);\n\n return {\n unsubscribe: () => {\n const idx = this.listeners?.indexOf(callback);\n if (idx !== undefined && idx !== -1) {\n this.listeners?.splice(idx, 1);\n }\n },\n };\n }\n\n /** Emits a new value to the output. */\n emit(value: T): void {\n if (this.destroyed) {\n console.warn(\n formatRuntimeError(\n RuntimeErrorCode.OUTPUT_REF_DESTROYED,\n ngDevMode &&\n 'Unexpected emit for destroyed `OutputRef`. ' +\n 'The owning directive/component is destroyed.',\n ),\n );\n return;\n }\n\n if (this.listeners === null) {\n return;\n }\n\n const previousConsumer = setActiveConsumer(null);\n try {\n for (const listenerFn of this.listeners) {\n try {\n listenerFn(value);\n } catch (err: unknown) {\n this.errorHandler?.handleError(err);\n }\n }\n } finally {\n setActiveConsumer(previousConsumer);\n }\n }\n}\n\n/** Gets the owning `DestroyRef` for the given output. */\nexport function getOutputDestroyRef(ref: OutputRef<unknown>): DestroyRef | undefined {\n return ref.destroyRef;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {createComputed, SIGNAL} from '../../../primitives/signals';\n\nimport {Signal, ValueEqualityFn} from './api';\n\n/**\n * Options passed to the `computed` creation function.\n */\nexport interface CreateComputedOptions<T> {\n /**\n * A comparison function which defines equality for computed values.\n */\n equal?: ValueEqualityFn<T>;\n\n /**\n * A debug name for the computed signal. Used in Angular DevTools to identify the signal.\n */\n debugName?: string;\n}\n\n/**\n * Create a computed `Signal` which derives a reactive value from an expression.\n * @see [Computed signals](guide/signals#computed-signals)\n */\nexport function computed<T>(computation: () => T, options?: CreateComputedOptions<T>): Signal<T> {\n const getter = createComputed(computation, options?.equal);\n\n if (ngDevMode) {\n getter.toString = () => `[Computed: ${getter()}]`;\n getter[SIGNAL].debugName = options?.debugName;\n }\n\n return getter;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n ComputationFn,\n createLinkedSignal,\n LinkedSignalGetter,\n LinkedSignalNode,\n linkedSignalSetFn,\n linkedSignalUpdateFn,\n SIGNAL,\n} from '../../../primitives/signals';\nimport {Signal, ValueEqualityFn} from './api';\nimport {signalAsReadonlyFn, WritableSignal} from './signal';\n\nconst identityFn = <T>(v: T) => v;\n\n/**\n * Creates a writable signal whose value is initialized and reset by the linked, reactive computation.\n *\n * @publicApi 20.0\n */\nexport function linkedSignal<D>(\n computation: () => D,\n options?: {equal?: ValueEqualityFn<NoInfer<D>>; debugName?: string},\n): WritableSignal<D>;\n\n/**\n * Creates a writable signal whose value is initialized and reset by the linked, reactive computation.\n * This is an advanced API form where the computation has access to the previous value of the signal and the computation result.\n *\n * Note: The computation is reactive, meaning the linked signal will automatically update whenever any of the signals used within the computation change.\n *\n * @publicApi 20.0\n * @see [Dependent state with linkedSignal](guide/signals/linked-signal)\n */\nexport function linkedSignal<S, D>(options: {\n source: () => S;\n computation: (source: NoInfer<S>, previous?: {source: NoInfer<S>; value: NoInfer<D>}) => D;\n equal?: ValueEqualityFn<NoInfer<D>>;\n debugName?: string;\n}): WritableSignal<D>;\n\nexport function linkedSignal<S, D>(\n optionsOrComputation:\n | {\n source: () => S;\n computation: ComputationFn<S, D>;\n equal?: ValueEqualityFn<D>;\n debugName?: string;\n }\n | (() => D),\n options?: {equal?: ValueEqualityFn<D>; debugName?: string},\n): WritableSignal<D> {\n if (typeof optionsOrComputation === 'function') {\n const getter = createLinkedSignal<D, D>(\n optionsOrComputation,\n identityFn<D>,\n options?.equal,\n ) as LinkedSignalGetter<D, D> & WritableSignal<D>;\n return upgradeLinkedSignalGetter(getter, options?.debugName);\n } else {\n const getter = createLinkedSignal<S, D>(\n optionsOrComputation.source,\n optionsOrComputation.computation,\n optionsOrComputation.equal,\n );\n return upgradeLinkedSignalGetter(getter, optionsOrComputation.debugName);\n }\n}\n\nfunction upgradeLinkedSignalGetter<S, D>(\n getter: LinkedSignalGetter<S, D>,\n debugName?: string,\n): WritableSignal<D> {\n if (ngDevMode) {\n getter.toString = () => `[LinkedSignal: ${getter()}]`;\n getter[SIGNAL].debugName = debugName;\n }\n\n const node = getter[SIGNAL] as LinkedSignalNode<S, D>;\n const upgradedGetter = getter as LinkedSignalGetter<S, D> & WritableSignal<D>;\n\n upgradedGetter.set = (newValue: D) => linkedSignalSetFn(node, newValue);\n upgradedGetter.update = (updateFn: (value: D) => D) => linkedSignalUpdateFn(node, updateFn);\n upgradedGetter.asReadonly = signalAsReadonlyFn.bind(getter as any) as () => Signal<D>;\n\n return upgradedGetter;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {untracked} from '../render3/reactivity/untracked';\nimport {computed} from '../render3/reactivity/computed';\nimport {signal, signalAsReadonlyFn, WritableSignal} from '../render3/reactivity/signal';\nimport {Signal, ValueEqualityFn} from '../render3/reactivity/api';\nimport {effect, EffectRef} from '../render3/reactivity/effect';\nimport {\n ResourceOptions,\n ResourceStatus,\n WritableResource,\n Resource,\n ResourceRef,\n ResourceStreamingLoader,\n StreamingResourceOptions,\n ResourceStreamItem,\n ResourceLoaderParams,\n} from './api';\n\nimport {Injector} from '../di/injector';\nimport {assertInInjectionContext} from '../di/contextual';\nimport {inject} from '../di/injector_compatibility';\nimport {PendingTasks} from '../pending_tasks';\nimport {linkedSignal} from '../render3/reactivity/linked_signal';\nimport {DestroyRef} from '../linker/destroy_ref';\n\n/**\n * Constructs a `Resource` that projects a reactive request to an asynchronous operation defined by\n * a loader function, which exposes the result of the loading operation via signals.\n *\n * Note that `resource` is intended for _read_ operations, not operations which perform mutations.\n * `resource` will cancel in-progress loads via the `AbortSignal` when destroyed or when a new\n * request object becomes available, which could prematurely abort mutations.\n *\n * @see [Async reactivity with resources](guide/signals/resource)\n *\n * @experimental 19.0\n */\nexport function resource<T, R>(\n options: ResourceOptions<T, R> & {defaultValue: NoInfer<T>},\n): ResourceRef<T>;\n\n/**\n * Constructs a `Resource` that projects a reactive request to an asynchronous operation defined by\n * a loader function, which exposes the result of the loading operation via signals.\n *\n * Note that `resource` is intended for _read_ operations, not operations which perform mutations.\n * `resource` will cancel in-progress loads via the `AbortSignal` when destroyed or when a new\n * request object becomes available, which could prematurely abort mutations.\n *\n * @experimental 19.0\n * @see [Async reactivity with resources](guide/signals/resource)\n */\nexport function resource<T, R>(options: ResourceOptions<T, R>): ResourceRef<T | undefined>;\nexport function resource<T, R>(options: ResourceOptions<T, R>): ResourceRef<T | undefined> {\n if (ngDevMode && !options?.injector) {\n assertInInjectionContext(resource);\n }\n\n const oldNameForParams = (\n options as ResourceOptions<T, R> & {request: ResourceOptions<T, R>['params']}\n ).request;\n const params = (options.params ?? oldNameForParams ?? (() => null)) as () => R;\n\n return new ResourceImpl<T | undefined, R>(\n params,\n getLoader(options),\n options.defaultValue,\n options.equal ? wrapEqualityFn(options.equal) : undefined,\n options.debugName,\n options.injector ?? inject(Injector),\n );\n}\n\ntype ResourceInternalStatus = 'idle' | 'loading' | 'resolved' | 'local';\n\n/**\n * Internal state of a resource.\n */\ninterface ResourceProtoState<T> {\n extRequest: WrappedRequest;\n\n // For simplicity, status is internally tracked as a subset of the public status enum.\n // Reloading and Error statuses are projected from Loading and Resolved based on other state.\n status: ResourceInternalStatus;\n}\n\ninterface ResourceState<T> extends ResourceProtoState<T> {\n previousStatus: ResourceStatus;\n stream: Signal<ResourceStreamItem<T>> | undefined;\n}\n\ntype WrappedRequest = {request: unknown; reload: number};\n\n/**\n * Base class which implements `.value` as a `WritableSignal` by delegating `.set` and `.update`.\n */\nabstract class BaseWritableResource<T> implements WritableResource<T> {\n readonly value: WritableSignal<T>;\n abstract readonly status: Signal<ResourceStatus>;\n abstract readonly error: Signal<Error | undefined>;\n\n abstract reload(): boolean;\n\n readonly isLoading: Signal<boolean>;\n\n constructor(value: Signal<T>, debugName: string | undefined) {\n this.value = value as WritableSignal<T>;\n this.value.set = this.set.bind(this);\n this.value.update = this.update.bind(this);\n this.value.asReadonly = signalAsReadonlyFn;\n\n this.isLoading = computed(\n () => this.status() === 'loading' || this.status() === 'reloading',\n ngDevMode ? createDebugNameObject(debugName, 'isLoading') : undefined,\n );\n }\n\n abstract set(value: T): void;\n\n private readonly isError = computed(() => this.status() === 'error');\n\n update(updateFn: (value: T) => T): void {\n this.set(updateFn(untracked(this.value)));\n }\n\n // Use a computed here to avoid triggering reactive consumers if the value changes while staying\n // either defined or undefined.\n private readonly isValueDefined = computed(() => {\n // Check if it's in an error state first to prevent the error from bubbling up.\n if (this.isError()) {\n return false;\n }\n\n return this.value() !== undefined;\n });\n\n hasValue(): this is ResourceRef<Exclude<T, undefined>> {\n return this.isValueDefined();\n }\n\n asReadonly(): Resource<T> {\n return this;\n }\n}\n\n/**\n * Implementation for `resource()` which uses a `linkedSignal` to manage the resource's state.\n */\nexport class ResourceImpl<T, R> extends BaseWritableResource<T> implements ResourceRef<T> {\n private readonly pendingTasks: PendingTasks;\n\n /**\n * The current state of the resource. Status, value, and error are derived from this.\n */\n private readonly state: WritableSignal<ResourceState<T>>;\n\n /**\n * Combines the current request with a reload counter which allows the resource to be reloaded on\n * imperative command.\n */\n protected readonly extRequest: WritableSignal<WrappedRequest>;\n private readonly effectRef: EffectRef;\n\n private pendingController: AbortController | undefined;\n private resolvePendingTask: (() => void) | undefined = undefined;\n private destroyed = false;\n private unregisterOnDestroy: () => void;\n\n override readonly status: Signal<ResourceStatus>;\n override readonly error: Signal<Error | undefined>;\n\n constructor(\n request: () => R,\n private readonly loaderFn: ResourceStreamingLoader<T, R>,\n defaultValue: T,\n private readonly equal: ValueEqualityFn<T> | undefined,\n private readonly debugName: string | undefined,\n injector: Injector,\n ) {\n super(\n // Feed a computed signal for the value to `BaseWritableResource`, which will upgrade it to a\n // `WritableSignal` that delegates to `ResourceImpl.set`.\n computed(\n () => {\n const streamValue = this.state().stream?.();\n\n if (!streamValue) {\n return defaultValue;\n }\n\n // Prevents `hasValue()` from throwing an error when a reload happened in the error state\n if (this.state().status === 'loading' && this.error()) {\n return defaultValue;\n }\n\n if (!isResolved(streamValue)) {\n throw new ResourceValueError(this.error()!);\n }\n\n return streamValue.value;\n },\n {equal, ...(ngDevMode ? createDebugNameObject(debugName, 'value') : undefined)},\n ),\n debugName,\n );\n\n // Extend `request()` to include a writable reload signal.\n this.extRequest = linkedSignal({\n source: request,\n computation: (request) => ({request, reload: 0}),\n ...(ngDevMode ? createDebugNameObject(debugName, 'extRequest') : undefined),\n });\n\n // The main resource state is managed in a `linkedSignal`, which allows the resource to change\n // state instantaneously when the request signal changes.\n this.state = linkedSignal<WrappedRequest, ResourceState<T>>({\n // Whenever the request changes,\n source: this.extRequest,\n // Compute the state of the resource given a change in status.\n computation: (extRequest, previous) => {\n const status = extRequest.request === undefined ? 'idle' : 'loading';\n if (!previous) {\n return {\n extRequest,\n status,\n previousStatus: 'idle',\n stream: undefined,\n };\n } else {\n return {\n extRequest,\n status,\n previousStatus: projectStatusOfState(previous.value),\n // If the request hasn't changed, keep the previous stream.\n stream:\n previous.value.extRequest.request === extRequest.request\n ? previous.value.stream\n : undefined,\n };\n }\n },\n ...(ngDevMode ? createDebugNameObject(debugName, 'state') : undefined),\n });\n\n this.effectRef = effect(this.loadEffect.bind(this), {\n injector,\n manualCleanup: true,\n ...(ngDevMode ? createDebugNameObject(debugName, 'loadEffect') : undefined),\n });\n\n this.pendingTasks = injector.get(PendingTasks);\n\n // Cancel any pending request when the resource itself is destroyed.\n this.unregisterOnDestroy = injector.get(DestroyRef).onDestroy(() => this.destroy());\n\n this.status = computed(\n () => projectStatusOfState(this.state()),\n ngDevMode ? createDebugNameObject(debugName, 'status') : undefined,\n );\n\n this.error = computed(\n () => {\n const stream = this.state().stream?.();\n return stream && !isResolved(stream) ? stream.error : undefined;\n },\n ngDevMode ? createDebugNameObject(debugName, 'error') : undefined,\n );\n }\n\n /**\n * Called either directly via `WritableResource.set` or via `.value.set()`.\n */\n override set(value: T): void {\n if (this.destroyed) {\n return;\n }\n\n const error = untracked(this.error);\n const state = untracked(this.state);\n\n if (!error) {\n const current = untracked(this.value);\n if (\n state.status === 'local' &&\n (this.equal ? this.equal(current, value) : current === value)\n ) {\n return;\n }\n }\n\n // Enter Local state with the user-defined value.\n this.state.set({\n extRequest: state.extRequest,\n status: 'local',\n previousStatus: 'local',\n stream: signal(\n {value},\n ngDevMode ? createDebugNameObject(this.debugName, 'stream') : undefined,\n ),\n });\n\n // We're departing from whatever state the resource was in previously, so cancel any in-progress\n // loading operations.\n this.abortInProgressLoad();\n }\n\n override reload(): boolean {\n // We don't want to restart in-progress loads.\n const {status} = untracked(this.state);\n if (status === 'idle' || status === 'loading') {\n return false;\n }\n\n // Increment the request reload to trigger the `state` linked signal to switch us to `Reload`\n this.extRequest.update(({request, reload}) => ({request, reload: reload + 1}));\n return true;\n }\n\n destroy(): void {\n this.destroyed = true;\n this.unregisterOnDestroy();\n this.effectRef.destroy();\n this.abortInProgressLoad();\n\n // Destroyed resources enter Idle state.\n this.state.set({\n extRequest: {request: undefined, reload: 0},\n status: 'idle',\n previousStatus: 'idle',\n stream: undefined,\n });\n }\n\n private async loadEffect(): Promise<void> {\n const extRequest = this.extRequest();\n\n // Capture the previous status before any state transitions. Note that this is `untracked` since\n // we do not want the effect to depend on the state of the resource, only on the request.\n const {status: currentStatus, previousStatus} = untracked(this.state);\n\n if (extRequest.request === undefined) {\n // Nothing to load (and we should already be in a non-loading state).\n return;\n } else if (currentStatus !== 'loading') {\n // We're not in a loading or reloading state, so this loading request is stale.\n return;\n }\n\n // Cancel any previous loading attempts.\n this.abortInProgressLoad();\n\n // Capturing _this_ load's pending task in a local variable is important here. We may attempt to\n // resolve it twice:\n //\n // 1. when the loading function promise resolves/rejects\n // 2. when cancelling the loading operation\n //\n // After the loading operation is cancelled, `this.resolvePendingTask` no longer represents this\n // particular task, but this `await` may eventually resolve/reject. Thus, when we cancel in\n // response to (1) below, we need to cancel the locally saved task.\n let resolvePendingTask: (() => void) | undefined = (this.resolvePendingTask =\n this.pendingTasks.add());\n\n const {signal: abortSignal} = (this.pendingController = new AbortController());\n\n try {\n // The actual loading is run through `untracked` - only the request side of `resource` is\n // reactive. This avoids any confusion with signals tracking or not tracking depending on\n // which side of the `await` they are.\n const stream = await untracked(() => {\n return this.loaderFn({\n params: extRequest.request as Exclude<R, undefined>,\n // TODO(alxhub): cleanup after g3 removal of `request` alias.\n request: extRequest.request as Exclude<R, undefined>,\n abortSignal,\n previous: {\n status: previousStatus,\n },\n } as ResourceLoaderParams<R>);\n });\n\n // If this request has been aborted, or the current request no longer\n // matches this load, then we should ignore this resolution.\n if (abortSignal.aborted || untracked(this.extRequest) !== extRequest) {\n return;\n }\n\n this.state.set({\n extRequest,\n status: 'resolved',\n previousStatus: 'resolved',\n stream,\n });\n } catch (err) {\n if (abortSignal.aborted || untracked(this.extRequest) !== extRequest) {\n return;\n }\n\n this.state.set({\n extRequest,\n status: 'resolved',\n previousStatus: 'error',\n stream: signal(\n {error: encapsulateResourceError(err)},\n ngDevMode ? createDebugNameObject(this.debugName, 'stream') : undefined,\n ),\n });\n } finally {\n // Resolve the pending task now that the resource has a value.\n resolvePendingTask?.();\n resolvePendingTask = undefined;\n }\n }\n\n private abortInProgressLoad(): void {\n untracked(() => this.pendingController?.abort());\n this.pendingController = undefined;\n\n // Once the load is aborted, we no longer want to block stability on its resolution.\n this.resolvePendingTask?.();\n this.resolvePendingTask = undefined;\n }\n}\n\n/**\n * Wraps an equality function to handle either value being `undefined`.\n */\nfunction wrapEqualityFn<T>(equal: ValueEqualityFn<T>): ValueEqualityFn<T | undefined> {\n return (a, b) => (a === undefined || b === undefined ? a === b : equal(a, b));\n}\n\nfunction getLoader<T, R>(options: ResourceOptions<T, R>): ResourceStreamingLoader<T, R> {\n if (isStreamingResourceOptions(options)) {\n return options.stream;\n }\n\n return async (params) => {\n try {\n return signal(\n {value: await options.loader(params)},\n ngDevMode ? createDebugNameObject(options.debugName, 'stream') : undefined,\n );\n } catch (err) {\n return signal(\n {error: encapsulateResourceError(err)},\n ngDevMode ? createDebugNameObject(options.debugName, 'stream') : undefined,\n );\n }\n };\n}\n\nfunction isStreamingResourceOptions<T, R>(\n options: ResourceOptions<T, R>,\n): options is StreamingResourceOptions<T, R> {\n return !!(options as StreamingResourceOptions<T, R>).stream;\n}\n\n/**\n * Project from a state with `ResourceInternalStatus` to the user-facing `ResourceStatus`\n */\nfunction projectStatusOfState(state: ResourceState<unknown>): ResourceStatus {\n switch (state.status) {\n case 'loading':\n return state.extRequest.reload === 0 ? 'loading' : 'reloading';\n case 'resolved':\n return isResolved(state.stream!()) ? 'resolved' : 'error';\n default:\n return state.status;\n }\n}\n\nfunction isResolved<T>(state: ResourceStreamItem<T>): state is {value: T} {\n return (state as {error: unknown}).error === undefined;\n}\n\n/**\n * Creates a debug name object for an internal signal.\n */\nfunction createDebugNameObject(\n resourceDebugName: string | undefined,\n internalSignalDebugName: string,\n): {debugName?: string} {\n return {\n debugName: `Resource${resourceDebugName ? '#' + resourceDebugName : ''}.${internalSignalDebugName}`,\n };\n}\n\nexport function encapsulateResourceError(error: unknown): Error {\n if (isErrorLike(error)) {\n return error;\n }\n\n return new ResourceWrappedError(error);\n}\n\nexport function isErrorLike(error: unknown): error is Error {\n return (\n error instanceof Error ||\n (typeof error === 'object' &&\n typeof (error as Error).name === 'string' &&\n typeof (error as Error).message === 'string')\n );\n}\n\nclass ResourceValueError extends Error {\n constructor(error: Error) {\n super(\n ngDevMode\n ? `Resource is currently in an error state (see Error.cause for details): ${error.message}`\n : error.message,\n {cause: error},\n );\n }\n}\n\nclass ResourceWrappedError extends Error {\n constructor(error: unknown) {\n super(\n ngDevMode\n ? `Resource returned an error that's not an Error instance: ${String(error)}. Check this error's .cause for the actual error.`\n : String(error),\n {cause: error},\n );\n }\n}\n"],"names":["OutputEmitterRef","destroyed","listeners","errorHandler","inject","ErrorHandler","optional","destroyRef","DestroyRef","constructor","onDestroy","subscribe","callback","RuntimeError","ngDevMode","push","unsubscribe","idx","indexOf","undefined","splice","emit","value","console","warn","formatRuntimeError","previousConsumer","setActiveConsumer","listenerFn","err","handleError","getOutputDestroyRef","ref","computed","computation","options","getter","createComputed","equal","toString","SIGNAL","debugName","identityFn","v","linkedSignal","optionsOrComputation","createLinkedSignal","upgradeLinkedSignalGetter","source","node","upgradedGetter","set","newValue","linkedSignalSetFn","update","updateFn","linkedSignalUpdateFn","asReadonly","signalAsReadonlyFn","bind","resource","injector","assertInInjectionContext","oldNameForParams","request","params","ResourceImpl","getLoader","defaultValue","wrapEqualityFn","Injector","BaseWritableResource","isLoading","status","createDebugNameObject","isError","untracked","isValueDefined","hasValue","loaderFn","pendingTasks","state","extRequest","effectRef","pendingController","resolvePendingTask","unregisterOnDestroy","error","streamValue","stream","isResolved","ResourceValueError","reload","previous","previousStatus","projectStatusOfState","effect","loadEffect","manualCleanup","get","PendingTasks","destroy","current","signal","abortInProgressLoad","currentStatus","add","abortSignal","AbortController","aborted","encapsulateResourceError","abort","a","b","isStreamingResourceOptions","loader","resourceDebugName","internalSignalDebugName","isErrorLike","ResourceWrappedError","Error","name","message","cause","String"],"mappings":"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"}