sealed trait MountedWithRoot[F[_], A[_], P1, S1, R <: RawMounted[P0, S0], P0 <: Object, S0 <: Object] extends MountedSimple[F, A, P1, S1, R] with Generic.MountedWithRoot[F, A, P1, S1, P0, S0]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MountedWithRoot
- MountedWithRoot
- MountedSimple
- MountedSimple
- WriteWithProps
- ModStateWithProps
- StateAccess
- Write
- ModState
- SetState
- Base
- MountedRaw
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final type Props = P1
- Definition Classes
- MountedSimple
- final type Raw = R
- Definition Classes
- MountedSimple → MountedRaw
- final type Root = MountedWithRoot[F, A, P0, S0, R, P0, S0]
- Definition Classes
- MountedWithRoot → MountedWithRoot
- final type State = S1
- Definition Classes
- StateAccess
- final type WithAsyncEffect[A2[_]] = MountedWithRoot[F, A2, P1, S1, R, P0, S0]
- Definition Classes
- MountedWithRoot → MountedWithRoot → MountedSimple → MountedSimple → WriteWithProps → ModStateWithProps → StateAccess → Write → ModState → SetState → Base
- final type WithEffect[F2[_]] = MountedWithRoot[F2, A, P1, S1, R, P0, S0]
- Definition Classes
- MountedWithRoot → MountedWithRoot → MountedSimple → MountedSimple → WriteWithProps → ModStateWithProps → StateAccess → Write → ModState → SetState → Base
- final type WithMappedProps[P2] = MountedWithRoot[F, A, P2, S1, R, P0, S0]
- Definition Classes
- MountedWithRoot → MountedWithRoot → MountedSimple → MountedSimple
- final type WithMappedState[S2] = MountedWithRoot[F, A, P1, S2, R, P0, S0]
- Definition Classes
- MountedWithRoot → MountedWithRoot → MountedSimple → MountedSimple → StateAccess
Abstract Value Members
- implicit abstract def A: Async[A]
- Attributes
- protected
- Definition Classes
- Base
- implicit abstract def F: UnsafeSync[F]
- Attributes
- protected
- Definition Classes
- Base
- abstract def forceUpdate[G[_]](callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]
- Definition Classes
- MountedSimple
- abstract def getDOMNode: F[ComponentDom]
- Definition Classes
- MountedSimple
- abstract def mapProps[P2](f: (P1) => P2): WithMappedProps[P2]
- Definition Classes
- MountedSimple
- abstract def modStateOption[G[_]](mod: (S1, P1) => Option[S1], callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]
- callback
Executed regardless of whether state is changed.
- Definition Classes
- ModStateWithProps
- abstract def modStateOption[G[_]](mod: (S1) => Option[S1], callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]
- callback
Executed regardless of whether state is changed.
- Definition Classes
- ModState
- abstract def props: F[Props]
- Definition Classes
- MountedSimple
- abstract def propsChildren: F[PropsChildren]
- Definition Classes
- MountedSimple
- abstract val raw: Raw
- Definition Classes
- MountedRaw
- abstract def root: Root
- Definition Classes
- MountedWithRoot
- abstract def setStateOption[G[_]](newState: Option[S1], callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]
- callback
Executed regardless of whether state is changed.
- Definition Classes
- SetState
- abstract def state: F[State]
- Definition Classes
- StateAccess
- abstract def withAsyncEffect[G[_]](implicit G: Async[G]): WithAsyncEffect[G]
- Definition Classes
- Base
- abstract def withEffect[G[_]](implicit G: UnsafeSync[G]): WithEffect[G]
- Definition Classes
- Base
- abstract def xmapState[S2](f: (S1) => S2)(g: (S2) => S1): WithMappedState[S2]
- Definition Classes
- StateAccess
- abstract def zoomState[S2](get: (S1) => S2)(set: (S2) => (S1) => S1): WithMappedState[S2]
- Definition Classes
- StateAccess
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def addFacade[T <: Object]: MountedWithRoot[F, A, P1, S1, R with T, P0, S0]
- Definition Classes
- MountedWithRoot → MountedSimple
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- final def async(f: (Sync[Unit]) => F[Unit]): A[Unit]
- Attributes
- protected
- Definition Classes
- Base
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def displayName: String
- Definition Classes
- MountedSimple → MountedRaw
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def forceUpdate: F[Unit]
- Definition Classes
- MountedSimple
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def modState[G[_]](mod: (S1, P1) => S1, callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]
- callback
Executed after state is changed.
- Definition Classes
- ModStateWithProps
- final def modState(mod: (S1, P1) => S1): F[Unit]
- Definition Classes
- ModStateWithProps
- def modState[G[_]](mod: (S1) => S1, callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]
- callback
Executed after state is changed.
- Definition Classes
- ModState
- final def modState(mod: (S1) => S1): F[Unit]
- Definition Classes
- ModState
- final def modStateAsync(mod: (S1, P1) => S1): A[Unit]
- Definition Classes
- ModStateWithProps
- final def modStateAsync(mod: (S1) => S1): A[Unit]
- Definition Classes
- ModState
- final def modStateOption(mod: (S1, P1) => Option[S1]): F[Unit]
- Definition Classes
- ModStateWithProps
- final def modStateOption(mod: (S1) => Option[S1]): F[Unit]
- Definition Classes
- ModState
- final def modStateOptionAsync(mod: (S1, P1) => Option[S1]): A[Unit]
- Definition Classes
- ModStateWithProps
- final def modStateOptionAsync(mod: (S1) => Option[S1]): A[Unit]
- Definition Classes
- ModState
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def setState[G[_]](newState: S1, callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]
- callback
Executed after state is changed.
- Definition Classes
- SetState
- final def setState(newState: S1): F[Unit]
- Definition Classes
- SetState
- final def setStateAsync(newState: S1): A[Unit]
- Definition Classes
- SetState
- final def setStateOption(newState: Option[S1]): F[Unit]
- Definition Classes
- SetState
- final def setStateOptionAsync(newState: Option[S1]): A[Unit]
- Definition Classes
- SetState
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toModStateFn: ModStateFn[F, A, S1]
- Definition Classes
- ModState
- def toModStateWithPropsFn: ModStateWithPropsFn[F, A, P1, S1]
- Definition Classes
- ModStateWithProps
- def toSetStateFn: SetStateFn[F, A, S1]
- Definition Classes
- SetState
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def withEffectsImpure: WithEffect[Id]
- Definition Classes
- Base
- final def withEffectsPure: WithEffect[Sync]
- Definition Classes
- Base
- final def withRawType[R2 <: RawMounted[P0, S0]]: MountedWithRoot[F, A, P1, S1, R2, P0, S0]