Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface SelectorBuilder<TParam, TSelected, TFactory, TKey>

Type Parameters

  • TParam = {}

  • TSelected = {}

  • TFactory = void

  • TKey extends any[] = never

Hierarchy

  • SelectorBuilder

Index

Methods

  • build(): TFactory extends any[] ? SelectorFactory<TFactory, TParam, TSelected> : Selector<TParam, TSelected>
  • build<R>(resultSelector: ((selected: TSelected, ...args: TKey) => R)): TFactory extends any[] ? SelectorFactory<TFactory, TParam, R> : Selector<TParam, R>
  • build the memozied structured selector

    Returns TFactory extends any[] ? SelectorFactory<TFactory, TParam, TSelected> : Selector<TParam, TSelected>

  • build the memoized selector with 'result' selector

    Type Parameters

    • R

    Parameters

    • resultSelector: ((selected: TSelected, ...args: TKey) => R)
        • (selected: TSelected, ...args: TKey): R
        • Parameters

          • selected: TSelected
          • Rest ...args: TKey

          Returns R

    Returns TFactory extends any[] ? SelectorFactory<TFactory, TParam, R> : Selector<TParam, R>

  • compare(equalCompareFn: ((a: TParam, b: TParam) => boolean)): SelectorBuilder<TParam, TSelected, TFactory, TKey>
  • set equalCompareFn, the equalCompareFn uses to compare previous and next param of the selector, if they are identical, the previous selected result will be returned

    Parameters

    • equalCompareFn: ((a: TParam, b: TParam) => boolean)
        • (a: TParam, b: TParam): boolean
        • Parameters

          • a: TParam
          • b: TParam

          Returns boolean

    Returns SelectorBuilder<TParam, TSelected, TFactory, TKey>

  • create a selector factory that accepts single argument with type P

    Type Parameters

    • P = any

    Returns SelectorBuilder<TParam, TSelected, [P], [P]>

  • create a selector factory with keySelector, the selector factory accepts all arguments of keySelector. The keySelector returns a list of key, those keys will be use for caching the result selector

    Type Parameters

    • P extends any[]

    • K extends any[]

    Parameters

    • keySelector: ((...args: P) => K)
        • (...args: P): K
        • Parameters

          • Rest ...args: P

          Returns K

    Returns SelectorBuilder<TParam, TSelected, P, K>

  • use<P, S>(selectors: S): SelectorBuilder<TParam & P, TSelected & { [ key in string | number | symbol]: ReturnType<S[key]> }, TFactory, TKey>
  • use<N, P, R>(name: N, selector: ((param: P, ...args: TKey) => R)): SelectorBuilder<TParam & P, TSelected & { [ key in string]: R }, TFactory, TKey>
  • use<P, R>(selector: ((param: P, ...args: TKey) => R)): SelectorBuilder<TParam & P, TSelected & R, TFactory, TKey>
  • use multiple 'input' selectors

    Type Parameters

    • P = TParam

    • S extends {} = any

    Parameters

    • selectors: S

    Returns SelectorBuilder<TParam & P, TSelected & { [ key in string | number | symbol]: ReturnType<S[key]> }, TFactory, TKey>

  • use 'input' selector that uses to select a pie of value from input param

    Type Parameters

    • N extends string = string

    • P = TParam

    • R = any

    Parameters

    • name: N
    • selector: ((param: P, ...args: TKey) => R)
        • (param: P, ...args: TKey): R
        • Parameters

          • param: P
          • Rest ...args: TKey

          Returns R

    Returns SelectorBuilder<TParam & P, TSelected & { [ key in string]: R }, TFactory, TKey>

  • use 'input' selector that uses to select a pie of value from input param

    Type Parameters

    • P = TParam

    • R extends Record<string, any> = any

    Parameters

    • selector: ((param: P, ...args: TKey) => R)
        • (param: P, ...args: TKey): R
        • Parameters

          • param: P
          • Rest ...args: TKey

          Returns R

    Returns SelectorBuilder<TParam & P, TSelected & R, TFactory, TKey>

Generated using TypeDoc