be.doeraene.webcomponents.ui5.MultiInput.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-components-ui5_sjs1_3 Show documentation
Show all versions of web-components-ui5_sjs1_3 Show documentation
Laminar bindings for the web-component library UI5 from SAP
The newest version!
package be.doeraene.webcomponents.ui5
import be.doeraene.webcomponents.ui5.configkeys.{ButtonDesign, ColourScheme, IconName}
import be.doeraene.webcomponents.ui5.internal.Slot
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 scala.scalajs.js
import scala.scalajs.js.annotation.JSImport
import com.raquo.laminar.codecs.IntAsStringCodec
import be.doeraene.webcomponents.ui5.configkeys.InputType
import be.doeraene.webcomponents.ui5.configkeys.ValueState
import be.doeraene.webcomponents.ui5.eventtypes.EventWithPreciseTarget
import be.doeraene.webcomponents.ui5.eventtypes.HasDetail
import be.doeraene.webcomponents.ui5.eventtypes.HasItem
import be.doeraene.webcomponents.WebComponent
import scala.scalajs.js.annotation.JSName
/** A ui5-multi-input field allows the user to enter multiple values, which are displayed as ui5-token. User can choose
* interaction for creating tokens. Fiori Guidelines say that user should create tokens when:
*
* - Type a value in the input and press enter or focus out the input field (change event is fired)
* - Select a value from the suggestion list (suggestion-item-select event is fired)
*
* @see
* the doc for more
* information.
*/
object MultiInput extends WebComponent with HasAccessibleName with HasName with HasValue {
@js.native
trait RawElement extends js.Object {
def previewItem: suggestion.Ref = js.native
def openPicker(): Unit = js.native
def tokensJS: js.Array[token.Ref] = js.native
def value: String = js.native
}
object RawElement {
extension (element: RawElement) def tokens: List[token.Ref] = element.tokensJS.toList
}
@js.native
@JSImport("@ui5/webcomponents/dist/MultiInput.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-multi-input")
lazy val showValueHelpIcon: HtmlAttr[Boolean] =
htmlAttr("show-value-help-icon", BooleanAsAttrPresenceCodec)
lazy val disabled: HtmlAttr[Boolean] = htmlAttr("disabled", BooleanAsAttrPresenceCodec)
lazy val maxlength: HtmlAttr[Int] = htmlAttr("maxlength", IntAsStringCodec)
// todo[1.4.0]
//lazy val noTypeahead: HtmlAttr[Boolean] = htmlAttr("no-typeahead", BooleanAsAttrPresenceCodec)
lazy val placeholder: HtmlAttr[String] = htmlAttr("placeholder", StringAsIsCodec)
lazy val readonly: HtmlAttr[Boolean] = htmlAttr("readonly", BooleanAsAttrPresenceCodec)
lazy val showClearIcon: HtmlAttr[Boolean] = htmlAttr("show-clear-icon", BooleanAsAttrPresenceCodec)
lazy val showSuggestions: HtmlAttr[Boolean] = htmlAttr("show-suggestions", BooleanAsAttrPresenceCodec)
lazy val tpe: HtmlAttr[InputType] = htmlAttr("type", InputType.AsStringCodec)
lazy val valueState: HtmlAttr[ValueState] = htmlAttr("value-state", ValueState.AsStringCodec)
object slots {
val tokens: Slot = new Slot("tokens")
// note that unlike most elements that have an attribute Icon, this element has a slot icon instead.
// most of the time you will want to use a ui5-icon for this slot.
val icon: Slot = new Slot("icon")
val valueStateMessage: Slot = new Slot("valueStateMessage")
}
object events {
trait HasToken extends js.Object {
@JSName("tokens")
def tokensJS: js.Array[MultiInput.token.Ref]
}
object HasToken {
extension (hasToken: HasToken) {
def tokens: Vector[MultiInput.token.Ref] = hasToken.tokensJS.toVector
def token: MultiInput.token.Ref = hasToken.tokensJS.head
}
}
val onTokenDelete: EventProp[EventWithPreciseTarget[Ref] & HasDetail[HasToken]] = new EventProp("token-delete")
val onValueHelpTrigger: EventProp[EventWithPreciseTarget[Ref]] = new EventProp("value-help-trigger")
val onChange: EventProp[EventWithPreciseTarget[Ref]] = new EventProp("change")
val onInput: EventProp[EventWithPreciseTarget[Ref]] = new EventProp("input")
trait SuggestionItemPreviewInfo extends js.Object {
def item: suggestion.Ref
def targetRef: suggestion.Ref
}
val onSuggestionItemPreview: EventProp[EventWithPreciseTarget[Ref] & HasDetail[SuggestionItemPreviewInfo]] =
new EventProp("suggestion-item-preview")
val onSuggestionItemSelect: EventProp[EventWithPreciseTarget[Ref] & HasDetail[HasItem[suggestion.Ref]]] =
new EventProp("suggestion-item-select")
}
def suggestion: SuggestionItem.type = SuggestionItem
def token: Token.type = Token
}