object CustomHook
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CustomHook
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class Arg[-Ctx, +I](convert: (Ctx) => I) extends AnyVal with Product with Serializable
- trait ArgLowPri extends AnyRef
- final case class ReuseComponentProps[A](value: A, render: (A) => VdomNode)(implicit reusability: Reusability[A]) extends Product with Serializable
- Attributes
- protected[hooks]
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
- def apply[I]: First[I]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def delay[O](f: => O): CustomHook[Unit, O]
- Annotations
- @inline()
- 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])
- def fromHookResult[I, O](hook: (I) => HookResult[O]): CustomHook[I, O]
- def fromHookResult[O](hook: HookResult[O]): CustomHook[Unit, O]
- 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
- 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 reusableByDeps[D, A](create: (D, Int) => A)(implicit r: Reusability[D]): CustomHook[() => D, Reusable[A]]
- def reusableDeps[D](implicit r: Reusability[D]): CustomHook[() => D, (D, Int)]
- def shouldComponentUpdate[D](render: (D) => VdomNode)(implicit r: Reusability[D]): CustomHook[() => D, VdomNode]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unchecked[I, O](f: (I) => O): CustomHook[I, O]
Provides you with a means to do whatever you want without the static guarantees that the normal DSL provides.
Provides you with a means to do whatever you want without the static guarantees that the normal DSL provides. It's up to you to ensure you don't vioalte React's hook rules.
- lazy val useForceUpdate: CustomHook[Unit, Reusable[Sync[Unit]]]
- 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()
- object Arg extends ArgLowPri with Serializable
- object Builder