diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-06-01 19:21:36 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-06-01 19:21:36 +0200 |
commit | fb7eb07fec731503c60e7e70ba8314a00d19a17a (patch) | |
tree | 758542ff97847badcae59e2a5c690e880aa1f716 /sw-ui | |
parent | Replace viewport-relative dimensions by percents (diff) | |
download | seven-wonders-fb7eb07fec731503c60e7e70ba8314a00d19a17a.tar.gz seven-wonders-fb7eb07fec731503c60e7e70ba8314a00d19a17a.tar.bz2 seven-wonders-fb7eb07fec731503c60e7e70ba8314a00d19a17a.zip |
Use actual coin icon for price info
Resolves:
https://github.com/joffrey-bion/seven-wonders/issues/30
Diffstat (limited to 'sw-ui')
-rw-r--r-- | sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt | 19 | ||||
-rw-r--r-- | sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Tokens.kt | 26 |
2 files changed, 27 insertions, 18 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt index a7171afc..17365bdd 100644 --- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt +++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt @@ -177,20 +177,21 @@ private fun pricePrefix(amount: Int) = when { } private fun RElementBuilder<IButtonProps>.priceInfo(amount: Int) { - styledDiv { - val size = 1.rem + val size = 1.rem + goldIndicator( + amount = amount, + amountPosition = TokenCountPosition.OVER, + imgSize = size, + customCountStyle = { + fontFamily = "sans-serif" + fontSize = size * 0.8 + } + ) { css { position = Position.absolute top = (-0.2).rem left = (-0.2).rem - backgroundColor = Color.goldenrod - width = size - height = size - borderRadius = size - fontSize = size * 0.8 - textAlign = TextAlign.center } - +"$amount" } } diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Tokens.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Tokens.kt index e9425e0a..12071215 100644 --- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Tokens.kt +++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Tokens.kt @@ -15,14 +15,18 @@ enum class TokenCountPosition { fun RBuilder.goldIndicator( amount: Int, amountPosition: TokenCountPosition = TokenCountPosition.OVER, - imgSize: LinearDimension = 3.rem + imgSize: LinearDimension = 3.rem, + customCountStyle: CSSBuilder.() -> Unit = {}, + block: StyledDOMBuilder<DIV>.() -> Unit = {} ) { tokenWithCount( tokenName = "coin", title = "$amount gold coins", imgSize = imgSize, count = amount, - countPosition = amountPosition + countPosition = amountPosition, + customCountStyle = customCountStyle, + block = block ) } @@ -33,6 +37,7 @@ fun RBuilder.tokenWithCount( imgSize: LinearDimension = 3.rem, countPosition: TokenCountPosition = TokenCountPosition.RIGHT, brightText: Boolean = false, + customCountStyle: CSSBuilder.() -> Unit = {}, block: StyledDOMBuilder<DIV>.() -> Unit = {} ) { styledDiv { @@ -43,7 +48,7 @@ fun RBuilder.tokenWithCount( tokenImage(tokenName, title = title, size = imgSize) styledSpan { css { - tokenCountStyle(tokenCountSize, brightText) + tokenCountStyle(tokenCountSize, brightText, customCountStyle) marginLeft = 0.2.rem } +"× $count" @@ -52,7 +57,7 @@ fun RBuilder.tokenWithCount( TokenCountPosition.LEFT -> { styledSpan { css { - tokenCountStyle(tokenCountSize, brightText) + tokenCountStyle(tokenCountSize, brightText, customCountStyle) marginRight = 0.2.rem } +"$count ×" @@ -66,7 +71,7 @@ fun RBuilder.tokenWithCount( styledSpan { css { +GlobalStyles.centerInParent - tokenCountStyle(tokenCountSize, brightText) + tokenCountStyle(tokenCountSize, brightText, customCountStyle) } +"$count" } @@ -102,12 +107,15 @@ private fun CSSBuilder.tokenImageStyle(size: LinearDimension) { verticalAlign = VerticalAlign.middle } -private fun CSSBuilder.tokenCountStyle(size: LinearDimension, brightText: Boolean) { +private fun CSSBuilder.tokenCountStyle( + size: LinearDimension, + brightText: Boolean, + customStyle: CSSBuilder.() -> Unit = {} +) { fontFamily = "fantasy" fontSize = size verticalAlign = VerticalAlign.middle - if (brightText) { - color = Color.white - } + color = if (brightText) Color.white else Color.black fontWeight = FontWeight.bold + customStyle() } |