Class DynMapReducer<K, T>

    Provides a managed Map with non-destructive reducing / filtering / sorting capabilities with subscription / Svelte store support.

    Template: K,

    T

    Type Parameters

    • K
    • T

    Constructors

    • Initializes DynMapReducer. Any iterable is supported for initial data. Take note that if data is an array it will be used as the host array and not copied. All non-array iterables otherwise create a new array / copy.

      Type Parameters

      • K
      • T

      Parameters

      • Optional data: Map<K, T> | DynMapData<K, T>

        Data iterable to store if array or copy otherwise.

      Returns DynMapReducer<K, T>

    Accessors

    • get data(): Map<K, T>
    • Returns the internal data of this instance. Be careful!

      Note: When a map is set as data then that map is used as the internal data. If any changes are performed to the data externally do invoke update via DynMapReducer.index with true to recalculate the index and notify all subscribers.

      Returns Map<K, T>

      The internal data.

    • get length(): number
    • Gets the main data / items length.

      Returns number

      Main data / items length.

    • get reversed(): boolean
    • Gets current reversed state.

      Returns boolean

      Reversed state.

    • set reversed(reversed): void
    • Sets reversed state and notifies subscribers.

      Parameters

      • reversed: boolean

        New reversed state.

      Returns void

    Methods

    • Removes all derived reducers, subscriptions, and cleans up all resources.

      Returns void

    • Protected

      Provides a callback for custom reducers to initialize any data / custom configuration. This allows child classes to avoid implementing the constructor.

      Returns void

    • Removes internal data and pushes new data. This does not destroy any initial array set to internal data unless replace is set to true.

      Parameters

      • data: Map<K, T>

        New data to set to internal data.

      • Optional replace: boolean = false

        New data to set to internal data.

      Returns void

    • Add a subscriber to this DynMapReducer instance.

      Parameters

      • handler: ((value) => void)

        Callback function that is invoked on update / changes. Receives this reference.

      Returns (() => void)

      Unsubscribe function.

        • (): void
        • Returns void

    Properties

    #derived: AdapterDerived<Map<K, T>, K, T>
    #derivedPublicAPI: DerivedAPI<Map<K, T>, K, T>
    #destroyed: boolean = false
    #filters: AdapterFilters<T>
    #filtersData: {
        filters: DynDataFilter<T>[];
    } = ...

    Type declaration

    #index: MapIndexer<K, T>
    #indexPublicAPI: IndexerAPI<K, T>
    #map: DynDataHost<Map<K, T>> = ...
    #reversed: boolean = false
    #sort: AdapterSort<T>
    #sortData: {
        compareFn: DynCompareFn<T>;
    } = ...

    Type declaration

    #subscriptions: Function[] = []