diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-21 15:23:14 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-21 15:23:20 +0200 |
commit | b7118cbe9342fa3bf225459546335b718181cc10 (patch) | |
tree | 1611c585d008f4cc1254f657fddee58fef3704af /sw-ui/src/main/kotlin/blueprintjsHelpers.kt | |
parent | Add player icon in player info (diff) | |
download | seven-wonders-b7118cbe9342fa3bf225459546335b718181cc10.tar.gz seven-wonders-b7118cbe9342fa3bf225459546335b718181cc10.tar.bz2 seven-wonders-b7118cbe9342fa3bf225459546335b718181cc10.zip |
Move externals to relevant packages
Diffstat (limited to 'sw-ui/src/main/kotlin/blueprintjsHelpers.kt')
-rw-r--r-- | sw-ui/src/main/kotlin/blueprintjsHelpers.kt | 137 |
1 files changed, 0 insertions, 137 deletions
diff --git a/sw-ui/src/main/kotlin/blueprintjsHelpers.kt b/sw-ui/src/main/kotlin/blueprintjsHelpers.kt deleted file mode 100644 index da6b6914..00000000 --- a/sw-ui/src/main/kotlin/blueprintjsHelpers.kt +++ /dev/null @@ -1,137 +0,0 @@ -package com.palantir.blueprintjs - -import org.w3c.dom.events.Event -import org.w3c.dom.events.MouseEvent -import react.RBuilder -import react.RHandler -import react.ReactElement - -typealias IconName = String - -fun RBuilder.bpIcon( - name: IconName, - size: Int = Icon.SIZE_STANDARD, - intent: Intent = Intent.NONE, - title: String? = null, - alt: String? = null, - className: String? = null, - block: RHandler<IIconProps> = {} -): ReactElement = child(Icon::class) { - attrs { - this.icon = name - this.iconSize = size - this.htmlTitle = title - this.intent = intent - this.title = alt - this.className = className - } - block() -} - -fun RBuilder.bpButton( - minimal: Boolean = false, - small: Boolean = false, - large: Boolean = false, - disabled: Boolean = false, - title: String? = null, - icon: IconName? = null, - rightIcon: IconName? = null, - intent: Intent = Intent.NONE, - onClick: ((event: MouseEvent) -> Unit)? = {}, - block: RHandler<IButtonProps> = {} -): ReactElement = child(Button::class) { - attrs { - this.title = title - this.minimal = minimal - this.small = small - this.large = large - this.disabled = disabled - this.icon = icon - this.rightIcon = rightIcon - this.intent = intent - this.onClick = onClick - } - block() -} - -fun RBuilder.bpButtonGroup( - large: Boolean = false, - minimal: Boolean = false, - block: RHandler<IButtonGroupProps> = {} -): ReactElement = child(ButtonGroup::class) { - attrs { - this.large = large - this.minimal = minimal - } - block() -} - -fun RBuilder.bpInputGroup( - large: Boolean = false, - placeholder: String = "", - rightElement: ReactElement? = null, - onChange: (Event) -> Unit -): ReactElement = child(InputGroup::class) { - attrs { - this.large = large - this.placeholder = placeholder - this.rightElement = rightElement - this.onChange = onChange - } -} - -fun RBuilder.bpTag( - intent: Intent? = null, - minimal: Boolean? = null, - active: Boolean? = null, - block: RHandler<ITagProps> = {} -): ReactElement = child(Tag::class) { - attrs { - this.intent = intent - this.minimal = minimal - this.active = active - } - block() -} - -fun RBuilder.bpNonIdealState( - icon: IconName? = null, - title: ReactElement? = null, - description: ReactElement? = null, - action: ReactElement? = null, - children: ReactElement? = null, - block: RHandler<INonIdealStateProps> = {} -): ReactElement = child(NonIdealState::class) { - attrs { - this.icon = icon - this.title = title - this.description = description - this.action = action - this.children = children - } - block() -} - -fun RBuilder.bpOverlay( - isOpen: Boolean, - autoFocus: Boolean = true, - enforceFocus: Boolean = true, - usePortal: Boolean = true, - hasBackdrop: Boolean = true, - canEscapeKeyClose: Boolean = true, - canOutsideClickClose: Boolean = true, - onClose: () -> Unit = {}, - block: RHandler<IOverlayProps> = {} -): ReactElement = child(Overlay::class) { - attrs { - this.isOpen = isOpen - this.autoFocus = autoFocus - this.enforceFocus = enforceFocus - this.usePortal = usePortal - this.hasBackdrop = hasBackdrop - this.canEscapeKeyClose = canEscapeKeyClose - this.canOutsideClickClose = canOutsideClickClose - this.onClose = { onClose() } - } - block() -} |