Browse Source

Fix for Nth.Functional (#1609)

pull/1624/head v1.1.0-alpha1-dev536
Shagen Ogandzhanian 3 years ago committed by GitHub
parent
commit
87d983e0a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      web/core/src/jsMain/kotlin/org/jetbrains/compose/web/css/selectors/CSSSelectors.kt
  2. 88
      web/core/src/jsTest/kotlin/css/NthChildTests.kt

8
web/core/src/jsMain/kotlin/org/jetbrains/compose/web/css/selectors/CSSSelectors.kt

@ -7,8 +7,8 @@ import org.jetbrains.compose.web.css.SelectorsScope
internal const val webCssSelectorsDeprecationMessage = "Consider using a property from SelectorsScope" internal const val webCssSelectorsDeprecationMessage = "Consider using a property from SelectorsScope"
private val selectorScope = object : SelectorsScope {} private val selectorScope = object : SelectorsScope {}
sealed class Nth { sealed interface Nth {
data class Functional(val a: Int? = null, val b: Int? = null) { data class Functional(val a: Int? = null, val b: Int? = null) : Nth {
override fun toString(): String = when { override fun toString(): String = when {
a != null && b != null -> "${a}n+$b" a != null && b != null -> "${a}n+$b"
a != null -> "${a}n" a != null -> "${a}n"
@ -16,10 +16,10 @@ sealed class Nth {
else -> "" else -> ""
} }
} }
object Odd : Nth() { object Odd : Nth {
override fun toString(): String = "odd" override fun toString(): String = "odd"
} }
object Even : Nth() { object Even : Nth {
override fun toString(): String = "even" override fun toString(): String = "even"
} }
} }

88
web/core/src/jsTest/kotlin/css/NthChildTests.kt

@ -0,0 +1,88 @@
/*
* Copyright 2020-2021 JetBrains s.r.o. and respective authors and developers.
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE.txt file.
*/
package org.jetbrains.compose.web.core.tests.css
import org.jetbrains.compose.web.css.Color
import org.jetbrains.compose.web.css.StyleSheet
import org.jetbrains.compose.web.css.color
import org.jetbrains.compose.web.css.selectors.Nth
import org.jetbrains.compose.web.css.utils.serializeRules
import kotlin.test.Test
import kotlin.test.assertContentEquals
class NthChildTests {
@Test
fun nthChildOddTest() {
val styleSheet = object : StyleSheet(usePrefix = false) {
val someClass by style {
color(Color.red)
nthChild(Nth.Odd) style {
color(Color.green)
}
}
}
assertContentEquals(
listOf(".someClass { color: red;}", ".someClass :nth-child(odd) { color: green;}"),
styleSheet.serializeRules()
)
}
@Test
fun nthChildEvenTest() {
val styleSheet = object : StyleSheet(usePrefix = false) {
val someClass by style {
color(Color.red)
nthChild(Nth.Even) style {
color(Color.green)
}
}
}
assertContentEquals(
listOf(".someClass { color: red;}", ".someClass :nth-child(even) { color: green;}"),
styleSheet.serializeRules()
)
}
@Test
fun nthChildFunctionalTest() {
val styleSheet = object : StyleSheet(usePrefix = false) {
val someClass by style {
color(Color.red)
nthChild(Nth.Functional(2, 3)) style {
color(Color.green)
}
nthChild(Nth.Functional(2)) style {
color(Color.green)
}
nthChild(Nth.Functional(b = 5)) style {
color(Color.green)
}
}
}
assertContentEquals(
listOf(
".someClass { color: red;}",
".someClass :nth-child(2n+3) { color: green;}",
".someClass :nth-child(2n) { color: green;}",
".someClass :nth-child(5) { color: green;}"
),
styleSheet.serializeRules()
)
}
}
Loading…
Cancel
Save