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.EnumDropdownOptionalView.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.DropdownOptional
import lucuma.react.primereact.SelectItem
import scalajs.js
final case class EnumDropdownOptionalView[V[_], A](
id: NonEmptyString,
value: V[Option[A]],
exclude: Set[A] = Set.empty[A],
clazz: js.UndefOr[Css] = js.undefined,
panelClass: js.UndefOr[Css] = js.undefined,
showClear: Boolean = true,
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,
emptyMessage: js.UndefOr[VdomNode] = js.undefined,
itemTemplate: js.UndefOr[SelectItem[A] => VdomNode] = js.undefined,
valueTemplate: js.UndefOr[SelectItem[A] => VdomNode] = js.undefined,
emptyMessageTemplate: js.UndefOr[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(EnumDropdownOptionalView.component):
def addModifiers(modifiers: Seq[TagMod]) = copy(modifiers = this.modifiers ++ modifiers)
def withMods(mods: TagMod*) = addModifiers(mods)
def apply(mods: TagMod*) = addModifiers(mods)
object EnumDropdownOptionalView {
private type AnyF[_] = Any
private def buildComponent[V[_], A] = ScalaFnComponent[EnumDropdownOptionalView[V, A]] { props =>
import props.given
val sizeCls = props.size.toOption.map(_.cls).orEmpty
DropdownOptional(
id = props.id.value,
value = props.value.get.flatten,
options = props.enumerated.all
.filter(v => !props.exclude.contains(v))
.map(e => SelectItem[A](label = props.display.shortName(e), value = e)),
showClear = props.showClear,
clazz = props.clazz.toOption.orEmpty |+| sizeCls,
panelClass = props.panelClass.toOption.orEmpty |+| sizeCls,
filter = props.filter,
showFilterClear = props.showFilterClear,
placeholder = props.placeholder,
disabled = props.disabled,
emptyMessage = props.emptyMessage,
itemTemplate = props.itemTemplate,
valueTemplate = props.valueTemplate,
emptyMessageTemplate = props.emptyMessageTemplate,
onChange = v => props.value.set(v),
onChangeE = props.onChangeE,
modifiers = props.modifiers
)
}
private val component = buildComponent[AnyF, Any]
}