Packages

trait ReactClassSpec extends AnyRef

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

Type Members

  1. abstract type Props
  2. abstract type State

Abstract Value Members

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

Concrete Value Members

  1. def apply(props: Props): ReactElement
  2. def asNative: Dynamic
  3. def componentDidMount(): Unit
  4. def componentDidUpdate(prevProps: Props, prevState: State): Unit
  5. def componentWillMount(): Unit
  6. def componentWillReceiveProps(nextProps: Props): Unit
  7. def componentWillUnmount(): Unit
  8. def componentWillUpdate(nextProps: Props, nextState: State): Unit
  9. def forceUpdate(): Unit
  10. def forceUpdate(callback: Function0[Unit]): Unit
  11. val isPropsRawJs: Boolean
  12. val isStateRawJs: Boolean
  13. def nativeThis: Dynamic
  14. def props: Props
  15. lazy val propsToRawJs: (Props) ⇒ Any
  16. lazy val rawJsToProps: (Any) ⇒ Props
  17. lazy val rawJsToState: (Any) ⇒ State
  18. def setState(stateMapper: (State, Props) ⇒ State): Unit
  19. def setState(stateMapper: (State) ⇒ State): Unit
  20. def setState(state: State): Unit
  21. def shouldComponentUpdate(nextProps: Props, nextState: State): Boolean
  22. def state: State
  23. lazy val stateToRawJs: (State) ⇒ Any