final case class AltEffect[F[_], G[_], A](u: RouterCtlF[F, A])(implicit G: Sync[G]) extends RouterCtlF[G, A] with Product with Serializable
- Alphabetic
- By Inheritance
- AltEffect
- Serializable
- Product
- Equals
- RouterCtlF
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new AltEffect(u: RouterCtlF[F, A])(implicit G: Sync[G])
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
- implicit def F: Sync[G]
- Attributes
- protected
- Definition Classes
- AltEffect → RouterCtlF
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def baseUrl: BaseUrl
- Definition Classes
- AltEffect → RouterCtlF
- def byPath: RouterCtlF[[_]G[_], Path]
- Definition Classes
- AltEffect → RouterCtlF
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def contramap[B](f: (B) => A): RouterCtlF[G, B]
- Definition Classes
- RouterCtlF
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def link(route: A): vdom.html_<^.VdomTagOf[Anchor]
- Definition Classes
- RouterCtlF
- final def narrow[B <: A]: RouterCtlF[G, B]
- Definition Classes
- RouterCtlF
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def onLinkClick(route: A): (internal.CoreGeneral.ReactMouseEvent) => Option[G[Unit]]
- Definition Classes
- RouterCtlF
- final def onSet(f: (G[Unit]) => G[Unit]): RouterCtlF[G, A]
Change the behaviour of set() and all derivatives.
Change the behaviour of set() and all derivatives.
For example, this can be used to set a component's state immediately before setting a new route.
- Definition Classes
- RouterCtlF
- final def onSet(f: (A, G[Unit]) => G[Unit]): RouterCtlF[G, A]
Change the behaviour of set() and all derivatives.
Change the behaviour of set() and all derivatives.
For example, this can be used to set a component's state immediately before setting a new route.
- Definition Classes
- RouterCtlF
- final def onSetRun(f: G[Unit]): RouterCtlF[G, A]
Return a new version of this that executes the specified callback after setting new routes.
Return a new version of this that executes the specified callback after setting new routes.
- Definition Classes
- RouterCtlF
- def pathFor(a: A): Path
- Definition Classes
- AltEffect → RouterCtlF
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def refresh: G[Unit]
- Definition Classes
- AltEffect → RouterCtlF
- def set(a: A, v: SetRouteVia): G[Unit]
- Definition Classes
- AltEffect → RouterCtlF
- final def set(route: A): G[Unit]
- Definition Classes
- RouterCtlF
- final def setEH(route: A): (internal.CoreGeneral.ReactEvent) => G[Unit]
- Definition Classes
- RouterCtlF
- final def setOnClick(route: A): vdom.html_<^.TagMod
- Definition Classes
- RouterCtlF
- final def setOnLinkClick(route: A): vdom.html_<^.TagMod
- Definition Classes
- RouterCtlF
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val u: RouterCtlF[F, A]
- final def urlFor(route: A): AbsUrl
- Definition Classes
- RouterCtlF
- 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 wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withEffect[H[_]](implicit H: Sync[H]): RouterCtlF[H, A]
- Definition Classes
- AltEffect → RouterCtlF
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
- final def link(route: A, callback: G[Unit]): vdom.html_<^.VdomTagOf[Anchor]
- Definition Classes
- RouterCtlF
- Annotations
- @deprecated
- Deprecated
(Since version forever) Use .onSetRun(callback).link(route)
- final def setOnClick(route: A, callback: G[Unit]): vdom.html_<^.TagMod
- Definition Classes
- RouterCtlF
- Annotations
- @deprecated
- Deprecated
(Since version forever) Use .onSetRun(callback).setOnClick(route)
- final def setOnLinkClick(route: A, callback: G[Unit]): vdom.html_<^.TagMod
- Definition Classes
- RouterCtlF
- Annotations
- @deprecated
- Deprecated
(Since version forever) Use .onSetRun(callback).setOnLinkClick(route)