Class SmartIndicatorDataService<T, S>

Type Parameters

Hierarchy

Constructors

Properties

__id__: string
_dataSource$: Observable<string> = ...
_indicator$: BehaviorSubject<Indicator> = ...
calendar: Property
calendarHierarchy: PropertyHierarchy
calendarLevel: PropertyLevel
currentTime: {
    timeGranularity: TimeGranularity;
    today: Date;
}

Type declaration

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

indicator$: Observable<Indicator> = ...
indicatorId$: Observable<string> = ...
indicatorMeasures: Record<string, Record<string, string>> = {}

指标的时间计算成员的缓存

initialise$: Observable<boolean> = ...
internalError$: ReplaySubject<any> = ...
isInitialized: boolean = false
loading$: BehaviorSubject<boolean> = ...
measures$: Observable<PeriodFunctions[]> = ...
notInitializedErrorMessage: string = ...
presentationVariant$: Observable<PresentationVariant> = ...
refresh$: ReplaySubject<boolean | void> = ...
result$: BehaviorSubject<QueryReturn<T>> = ...
smartFilterBar?: SmartFilterBarService
state$: Observable<S> = ...
stateSubject$: ReplaySubject<S> = ...

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.

  • Patches the state with provided partial state.

    Parameters

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

      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: S

          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>

  • Parameters

    • timeRange: string[]

    Returns {
        dimension: {
            dimension: string;
            hierarchy: string;
        };
        members: {
            value: string;
        }[];
        operator?: undefined;
    } | {
        dimension: {
            dimension: string;
            hierarchy: string;
        };
        members: {
            value: string;
        }[];
        operator: FilterOperator;
    }

  • 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 | S)

      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 | S
        • Parameters

          • state: S
          • value: OriginType

          Returns void | S

    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