Packages

p

react_redux

package react_redux

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. react_redux
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Action extends Object

    Keys should be properties, values, js.Anys.

    Keys should be properties, values, js.Anys. Extend your Action trait from this trait to ensure it has a type property.

    Annotations
    @JSType()
  2. type Dispatch[A <: Action] = Function1[|[A, Dynamic], Unit]

    Dispatch an action via the store.

  3. type Listener = Function0[Unit]

    A listener in redux is very coarse grained.

    A listener in redux is very coarse grained. You receive all events.

  4. trait ProviderProps extends Object

    Create the store in javascript, import it as js.Any then you can set the store in these props.

    Create the store in javascript, import it as js.Any then you can set the store in these props.

    Annotations
    @JSType()
  5. trait ReactReduxContextValue[S, A <: Action] extends Object
    Annotations
    @JSType() @native()
  6. trait Store[S, A <: Action] extends Object

    Client can obtain the state directly or dispatch an event directly off a store.

    Client can obtain the state directly or dispatch an event directly off a store.

    Annotations
    @JSType() @native()
  7. type Unsubscriber = Function0[Unit]

Value Members

  1. val Provider: ReactJSComponent
  2. def createProvider(storeKey: String): ReactJSComponent
  3. def dispatch[A <: Action](f: (|[A, Dynamic]) => Unit): Dispatch[A]

    Helper to make type a dispatch function into js.

  4. def shallowEqual(lhs: Any, rhs: Any): Boolean
  5. def useDispatch[A <: Action](): react.Dispatch[A]
  6. def useSelector[S, A](selector: Function1[S, A], equalityFn: Function2[A, A, Boolean]): A
  7. def useSelector[S, A](selector: Function1[S, A]): A
  8. def useStore[State, A <: Action](): Store[State, A]
  9. case object BuildInfo extends Product with Serializable

    This object was generated by sbt-buildinfo.

Inherited from AnyRef

Inherited from Any

Ungrouped