All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
lucuma.ui.primereact.FormEnumDropdownView.scala Maven / Gradle / Ivy
// Copyright (c) 2016-2023 Association of Universities for Research in Astronomy, Inc. (AURA)
// For license information see LICENSE or https://opensource.org/licenses/BSD-3-Clause
package lucuma.ui.primereact
import cats.syntax.all.*
import eu.timepit.refined.types.string.NonEmptyString
import japgolly.scalajs.react.*
import japgolly.scalajs.react.vdom.html_<^.*
import lucuma.core.util.Display
import lucuma.core.util.Enumerated
import lucuma.react.common.*
import lucuma.react.primereact.SelectItem
import scalajs.js
final case class FormEnumDropdownView[V[_], A](
id: NonEmptyString,
value: V[A],
label: js.UndefOr[TagMod] = js.undefined,
exclude: Set[A] = Set.empty[A],
clazz: js.UndefOr[Css] = js.undefined,
panelClass: js.UndefOr[Css] = js.undefined,
filter: js.UndefOr[Boolean] = js.undefined,
showFilterClear: js.UndefOr[Boolean] = js.undefined,
disabled: js.UndefOr[Boolean] = js.undefined,
placeholder: js.UndefOr[String] = js.undefined,
size: js.UndefOr[PlSize] = js.undefined,
itemTemplate: js.UndefOr[SelectItem[A] => VdomNode] = js.undefined,
valueTemplate: js.UndefOr[SelectItem[A] => VdomNode] = js.undefined,
onChangeE: js.UndefOr[(Option[A], ReactEvent) => Callback] =
js.undefined, // called after the view is set
modifiers: Seq[TagMod] = Seq.empty
)(using
val enumerated: Enumerated[A],
val display: Display[A],
val vl: ViewLike[V]
) extends ReactFnProps(FormEnumDropdownView.component):
def addModifiers(modifiers: Seq[TagMod]) = copy(modifiers = this.modifiers ++ modifiers)
def withMods(mods: TagMod*) = addModifiers(mods)
def apply(mods: TagMod*) = addModifiers(mods)
object FormEnumDropdownView {
private type AnyF[_] = Any
private def buildComponent[V[_], A] = ScalaFnComponent[FormEnumDropdownView[V, A]] { props =>
import props.given
React.Fragment(
props.label.map(l => FormLabel(htmlFor = props.id, size = props.size)(l)),
EnumDropdownView(
id = props.id,
value = props.value,
exclude = props.exclude,
clazz = LucumaPrimeStyles.FormField |+| props.clazz.toOption.orEmpty,
panelClass = props.panelClass,
filter = props.filter,
showFilterClear = props.showFilterClear,
disabled = props.disabled,
placeholder = props.placeholder,
size = props.size,
itemTemplate = props.itemTemplate,
valueTemplate = props.valueTemplate,
onChangeE = props.onChangeE,
modifiers = props.modifiers
)
)
}
private val component = buildComponent[AnyF, Any]
}