All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.doeraene.webcomponents.ui5.Switch.scala Maven / Gradle / Ivy

The newest version!
package be.doeraene.webcomponents.ui5

import be.doeraene.webcomponents.ui5.configkeys.{ButtonDesign, IconName, SwitchDesign}
import com.raquo.laminar.codecs.{BooleanAsAttrPresenceCodec, StringAsIsCodec}
import com.raquo.laminar.api.L.*
import com.raquo.laminar.tags.CustomHtmlTag
import com.raquo.laminar.keys.HtmlAttr
import com.raquo.laminar.nodes.ReactiveHtmlElement
import org.scalajs.dom
import org.scalajs.dom.Event

import scala.scalajs.js
import scala.scalajs.js.annotation.JSImport
import be.doeraene.webcomponents.ui5.eventtypes.EventWithPreciseTarget
import be.doeraene.webcomponents.WebComponent

/** The ui5-switch component is used for changing between binary states.
  *
  * @see
  *   the doc for more information.
  */
object Switch extends WebComponent with HasAccessibleName {

  @js.native
  trait RawElement extends js.Object {
    def checked: Boolean = js.native
  }

  @js.native
  @JSImport("@ui5/webcomponents/dist/Switch.js", JSImport.Default)
  object RawImport extends js.Object

  // object-s are lazy so you need to actually use them in your code to prevent dead code elimination
  used(RawImport)

  type Ref = dom.html.Element & RawElement

  protected val tag: CustomHtmlTag[Ref] = CustomHtmlTag("ui5-switch")

  lazy val textOn: HtmlAttr[String]       = htmlAttr("text-on", StringAsIsCodec)
  lazy val textOff: HtmlAttr[String]      = htmlAttr("text-off", StringAsIsCodec)
  lazy val disabled: HtmlAttr[Boolean]    = htmlAttr("disabled", BooleanAsAttrPresenceCodec)
  lazy val checked: HtmlAttr[Boolean]     = htmlAttr("checked", BooleanAsAttrPresenceCodec)
  lazy val design: HtmlAttr[SwitchDesign] = htmlAttr("design", SwitchDesign.AsStringCodec)
  lazy val required: HtmlAttr[Boolean]    = htmlAttr("required", BooleanAsAttrPresenceCodec)
  lazy val tooltip: HtmlAttr[String]      = htmlAttr("tooltip", StringAsIsCodec)

  object slots {}

  object events {
    val onChange: EventProp[EventWithPreciseTarget[Ref]]                      = new EventProp("change")
    val onCheckedChange: EventProcessor[EventWithPreciseTarget[Ref], Boolean] = onChange.map(_.target.checked)
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy