Class EntityBusinessService<T, State>

Type Parameters

Hierarchy

Constructors

Properties

__id__: string
_dataSource$: Observable<string> = ...
_initialise$: BehaviorSubject<boolean> = ...
dataSettings$: Observable<DataSettings> = ...
dataSource$: Observable<DataSource> = ...
destroy$: Observable<void> = ...
destroySubject$: ReplaySubject<void> = ...
dsCoreService: DSCoreService
entityService$: BehaviorSubject<EntityService<T>> = ...
entitySet$: Observable<string> = ...
entityType: EntityType

Deprecated

use getEntityType or selectEntityType method

initialise$: Observable<boolean> = ...
internalError$: ReplaySubject<any> = ...
isInitialized: boolean = false
loading$: BehaviorSubject<boolean> = ...
notInitializedErrorMessage: string = ...
presentationVariant$: Observable<PresentationVariant> = ...
refresh$: ReplaySubject<boolean | void> = ...
result$: BehaviorSubject<QueryReturn<T>> = ...
state$: Observable<State> = ...
stateSubject$: ReplaySubject<State> = ...

Accessors

Methods

  • Creates an effect.

    This effect is subscribed to throughout the lifecycle of the ComponentStore.

    Type Parameters

    • ProvidedType = void

    • OriginType extends unknown = Observable<ProvidedType>

    • ObservableType = OriginType extends Observable<A>
          ? A
          : never

    • ReturnType = (ProvidedType | ObservableType) extends void
          ? (() => void)
          : ((observableOrValue) => Subscription)

    Parameters

    • generator: ((origin$) => Observable<unknown>)

      A function that takes an origin Observable input and returns an Observable. The Observable that is returned will be subscribed to for the life of the component.

        • (origin$): Observable<unknown>
        • Parameters

          • origin$: OriginType

          Returns Observable<unknown>

    Returns ReturnType

    A function that, when called, will trigger the origin Observable.

  • Initializes state. If it was already initialized then it resets the state.

    Parameters

    • state: State

    Returns void

  • Patches the state with provided partial state.

    Parameters

    • partialStateOrUpdaterFn: Partial<State> | Observable<Partial<State>> | ((state) => Partial<State>)

      a partial state or a partial updater function that accepts the state and returns the partial state.

    Returns void

    Throws

    Error if the state is not initialized.

  • Creates a selector.

    Type Parameters

    • Result

    Parameters

    • projector: ((s) => Result)

      A pure projection function that takes the current state and returns some new slice/projection of that state.

        • (s): Result
        • Parameters

          • s: State

          Returns Result

    • Optional config: SelectConfig

      SelectConfig that changes the behavior of selector, including the debouncing of the values until the state is settled.

    Returns Observable<Result>

    An observable of the projector results.

  • Type Parameters

    • Selectors extends Observable<unknown>[]

    • Result

    Parameters

    • Rest ...args: [...selectors: Selectors[], projector: Projector<Selectors, Result>]

    Returns Observable<Result>

  • Type Parameters

    • Selectors extends Observable<unknown>[]

    • Result

    Parameters

    • Rest ...args: [...selectors: Selectors[], projector: Projector<Selectors, Result>, config: SelectConfig]

    Returns Observable<Result>

  • Sets the state specific value.

    Parameters

    • stateOrUpdaterFn: State | ((state) => State)

      object of the same type as the state or an updaterFn, returning such object.

    Returns void

  • Parameters

    • source: ComponentStore<State>
    • Optional options: {
          watchProperty?: keyof State | (keyof State)[];
      }
      • Optional watchProperty?: keyof State | (keyof State)[]

    Returns void

  • Creates an updater.

    Throws an error if updater is called with synchronous values (either imperative value or Observable that is synchronous) before ComponentStore is initialized. If called with async Observable before initialization then state will not be updated and subscription would be closed.

    Type Parameters

    • ProvidedType = void

    • OriginType = ProvidedType

    • ValueType = OriginType

    • ReturnType = OriginType extends void
          ? (() => void)
          : ((observableOrValue) => Subscription)

    Parameters

    • updaterFn: ((state, value) => void | State)

      A static updater function that takes 2 parameters (the current state and an argument object) and returns a new instance of the state.

        • (state, value): void | State
        • Parameters

          • state: State
          • value: OriginType

          Returns void | State

    Returns ReturnType

    A function that accepts one argument which is forwarded as the second argument to updaterFn. Every time this function is called subscribers will be notified of the state change.

Generated using TypeDoc