lucuma.react.primereact.Panel.scala Maven / Gradle / Ivy
The newest version!
// 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.react.primereact
import japgolly.scalajs.react.*
import japgolly.scalajs.react.vdom.html_<^.*
import lucuma.react.common.*
import lucuma.typed.primereact.components.Panel as CPanel
import scalajs.js
case class Panel(
id: js.UndefOr[String] = js.undefined,
header: js.UndefOr[VdomNode] = js.undefined,
toggleable: js.UndefOr[Boolean] =
js.undefined, // Defines if panel can be expanded and collapsed. default: false
collapsed: js.UndefOr[Boolean] =
js.undefined, // If toggleable is true, need to set this via onToggle. default: false
clazz: js.UndefOr[Css] = js.undefined,
onCollapse: js.UndefOr[Callback] = js.undefined, // see comment above
onExpand: js.UndefOr[Callback] = js.undefined, // see comment above
onToggle: js.UndefOr[Boolean => Callback] = js.undefined, // see comment above
modifiers: Seq[TagMod] = Seq.empty
) extends ReactFnPropsWithChildren[Panel](Panel.component) {
def addModifiers(modifiers: Seq[TagMod]) = copy(modifiers = this.modifiers ++ modifiers)
// You can add content to the panel as children without this method, but if you want
// to add event handlers or other attributes, you'll need to use the modifiers.
def withMods(mods: TagMod*) = addModifiers(mods)
}
object Panel {
private val component =
ScalaFnComponent
.withHooks[Panel]
.withPropsChildren
.render { (props, children) =>
CPanel
.applyOrNot(props.id, _.id(_))
.applyOrNot(props.header, (c, p) => c.header(p.rawNode))
.applyOrNot(props.toggleable, _.toggleable(_))
.applyOrNot(props.collapsed, _.collapsed(_))
.applyOrNot(props.clazz, (c, p) => c.className(p.htmlClass))
.applyOrNot(props.onCollapse, (c, p) => c.onCollapse(_ => p))
.applyOrNot(props.onExpand, (c, p) => c.onExpand(_ => p))
.applyOrNot(props.onToggle, (c, p) => c.onToggle(toggleParms => p(toggleParms.value)))(
props.modifiers.toTagMod,
children
)
}
}