Packages

trait ReactClassSpec[WrappedProps, State] extends AnyRef

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

Abstract Value Members

  1. abstract def getInitialState(): State
  2. abstract def render(): ReactElement

Concrete Value Members

  1. def asNative: Dynamic
  2. def componentDidMount(): Unit
  3. def componentDidUpdate(prevProps: Props[WrappedProps], prevState: State): Unit
  4. def componentWillMount(): Unit
  5. def componentWillReceiveProps(nextProps: Props[WrappedProps]): Unit
  6. def componentWillUnmount(): Unit
  7. def componentWillUpdate(nextProps: Props[WrappedProps], nextState: State): Unit
  8. def forceUpdate(): Unit
  9. def forceUpdate(callback: Function0[Unit]): Unit
  10. def nativeComponentDidUpdate(nativePrevProps: Dynamic, nativePrevState: Dynamic): Unit
  11. def nativeComponentWillReceiveProps(nativeNextProps: Dynamic): Unit
  12. def nativeComponentWillUpdate(nativeNextProps: Dynamic, nativeNextState: Dynamic): Unit
  13. def nativeProps: Dynamic
  14. def nativeShouldComponentUpdate(nextProps: Dynamic, nextState: Dynamic): Boolean
  15. def nativeState: Dynamic
  16. def nativeThis: Dynamic
  17. def props: Props[WrappedProps]
  18. def propsFromNative(nativeProps: Dynamic): Props[WrappedProps]
  19. def propsToNative(props: Props[WrappedProps]): Dynamic
  20. def setState(stateMapper: (State, Props[WrappedProps]) ⇒ State): Unit
  21. def setState(stateMapper: (State) ⇒ State): Unit
  22. def setState(state: State): Unit
  23. def shouldComponentUpdate(nextProps: Props[WrappedProps], nextState: State): Boolean
  24. def state: State
  25. def stateFromNative(nativeState: Dynamic): State
  26. def stateToNative(state: State): Dynamic