Packages

abstract class MountedWithRoot[F[_], A[_], P0, S0] extends Generic.MountedWithRoot[F, A, P0, S0, P0, S0]

Linear Supertypes
Generic.MountedWithRoot[F, A, P0, S0, P0, S0], MountedSimple[F, A, P0, S0], WriteWithProps[F, A, P0, S0], ModStateWithProps[F, A, P0, S0], StateAccess[F, A, S0], Write[F, A, S0], ModState[F, A, S0], SetState[F, A, S0], Base[F, A], MountedRaw, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MountedWithRoot
  2. MountedWithRoot
  3. MountedSimple
  4. WriteWithProps
  5. ModStateWithProps
  6. StateAccess
  7. Write
  8. ModState
  9. SetState
  10. Base
  11. MountedRaw
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new MountedWithRoot()(implicit ft: UnsafeSync[F], at: Async[A])

Type Members

  1. abstract type Mapped[F1[_], A1[_], P1, S1] <: Generic.MountedWithRoot[F1[_], A1[_], P1, S1, P0, S0]
  2. final type Props = P0
    Definition Classes
    MountedSimple
  3. abstract type Raw <: ComponentUntyped
    Definition Classes
    MountedRaw
  4. abstract type Root <: MountedRoot[F, A, P0, S0]
    Definition Classes
    MountedWithRoot
  5. final type State = S0
    Definition Classes
    StateAccess
  6. type WithAsyncEffect[A1[_]] = Mapped[F, A1, P0, S0]
  7. type WithEffect[F1[_]] = Mapped[F1, A, P0, S0]
  8. type WithMappedProps[P1] = Mapped[F, A, P1, S0]
  9. type WithMappedState[S1] = Mapped[F, A, P0, S1]

Abstract Value Members

  1. implicit abstract def A: Async[A]
    Attributes
    protected
    Definition Classes
    Base
  2. implicit abstract def F: UnsafeSync[F]
    Attributes
    protected
    Definition Classes
    Base
  3. abstract def displayName: String
    Definition Classes
    MountedRaw
  4. abstract def forceUpdate[G[_]](callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]
    Definition Classes
    MountedSimple
  5. abstract def getDOMNode: F[ComponentDom]
    Definition Classes
    MountedSimple
  6. abstract def mapped[F1[_], A1[_], P1, S1](mp: (P0) => P1, ls: Lens[S0, S1])(implicit ft: UnsafeSync[F1], at: Async[A1]): Mapped[F1, A1, P1, S1]
    Attributes
    protected
  7. abstract def modStateOption[G[_]](mod: (S0, P0) => Option[S0], callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]

    callback

    Executed regardless of whether state is changed.

    Definition Classes
    ModStateWithProps
  8. abstract def modStateOption[G[_]](mod: (S0) => Option[S0], callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]

    callback

    Executed regardless of whether state is changed.

    Definition Classes
    ModState
  9. abstract def props: F[Props]
    Definition Classes
    MountedSimple
  10. abstract def propsChildren: F[PropsChildren]
    Definition Classes
    MountedSimple
  11. abstract val raw: Raw
    Definition Classes
    MountedRaw
  12. abstract def root: Root
    Definition Classes
    MountedWithRoot
  13. abstract def setStateOption[G[_]](newState: Option[S0], callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]

    callback

    Executed regardless of whether state is changed.

    Definition Classes
    SetState
  14. abstract def state: F[State]
    Definition Classes
    StateAccess

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. final def async(f: (Sync[Unit]) => F[Unit]): A[Unit]
    Attributes
    protected
    Definition Classes
    Base
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def forceUpdate: F[Unit]
    Definition Classes
    MountedSimple
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def mapProps[P1](f: (P0) => P1): Mapped[[_]F[_], [_]A[_], P1, S0]
    Definition Classes
    MountedWithRootMountedSimple
  15. def modState[G[_]](mod: (S0, P0) => S0, callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]

    callback

    Executed after state is changed.

    Definition Classes
    ModStateWithProps
  16. final def modState(mod: (S0, P0) => S0): F[Unit]
    Definition Classes
    ModStateWithProps
  17. def modState[G[_]](mod: (S0) => S0, callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]

    callback

    Executed after state is changed.

    Definition Classes
    ModState
  18. final def modState(mod: (S0) => S0): F[Unit]
    Definition Classes
    ModState
  19. final def modStateAsync(mod: (S0, P0) => S0): A[Unit]
    Definition Classes
    ModStateWithProps
  20. final def modStateAsync(mod: (S0) => S0): A[Unit]
    Definition Classes
    ModState
  21. final def modStateOption(mod: (S0, P0) => Option[S0]): F[Unit]
    Definition Classes
    ModStateWithProps
  22. final def modStateOption(mod: (S0) => Option[S0]): F[Unit]
    Definition Classes
    ModState
  23. final def modStateOptionAsync(mod: (S0, P0) => Option[S0]): A[Unit]
    Definition Classes
    ModStateWithProps
  24. final def modStateOptionAsync(mod: (S0) => Option[S0]): A[Unit]
    Definition Classes
    ModState
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def setState[G[_]](newState: S0, callback: => G[Unit])(implicit G: Dispatch[G]): F[Unit]

    callback

    Executed after state is changed.

    Definition Classes
    SetState
  29. final def setState(newState: S0): F[Unit]
    Definition Classes
    SetState
  30. final def setStateAsync(newState: S0): A[Unit]
    Definition Classes
    SetState
  31. final def setStateOption(newState: Option[S0]): F[Unit]
    Definition Classes
    SetState
  32. final def setStateOptionAsync(newState: Option[S0]): A[Unit]
    Definition Classes
    SetState
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def toModStateFn: ModStateFn[F, A, S0]
    Definition Classes
    ModState
  35. def toModStateWithPropsFn: ModStateWithPropsFn[F, A, P0, S0]
    Definition Classes
    ModStateWithProps
  36. def toSetStateFn: SetStateFn[F, A, S0]
    Definition Classes
    SetState
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  41. def withAsyncEffect[A1[_]](implicit a1: Async[A1]): Mapped[[_]F[_], [_]A1[_], P0, S0]
    Definition Classes
    MountedWithRootBase
  42. def withEffect[F1[_]](implicit f1: UnsafeSync[F1]): Mapped[[_]F1[_], [_]A[_], P0, S0]
    Definition Classes
    MountedWithRootBase
  43. final def withEffectsImpure: WithEffect[Id]
    Definition Classes
    Base
  44. final def withEffectsPure: WithEffect[Sync]
    Definition Classes
    Base
  45. def xmapState[S1](f: (S0) => S1)(g: (S1) => S0): Mapped[[_]F[_], [_]A[_], P0, S1]
    Definition Classes
    MountedWithRootStateAccess
  46. def zoomState[S1](get: (S0) => S1)(set: (S1) => (S0) => S0): Mapped[[_]F[_], [_]A[_], P0, S1]
    Definition Classes
    MountedWithRootStateAccess

Inherited from Generic.MountedWithRoot[F, A, P0, S0, P0, S0]

Inherited from MountedSimple[F, A, P0, S0]

Inherited from WriteWithProps[F, A, P0, S0]

Inherited from ModStateWithProps[F, A, P0, S0]

Inherited from StateAccess[F, A, S0]

Inherited from Write[F, A, S0]

Inherited from ModState[F, A, S0]

Inherited from SetState[F, A, S0]

Inherited from Base[F, A]

Inherited from MountedRaw

Inherited from AnyRef

Inherited from Any

Ungrouped