divkit.dsl.ColorVariable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-json-builder Show documentation
Show all versions of kotlin-json-builder Show documentation
DivKit is an open source Server-Driven UI (SDUI) framework. SDUI is a an emerging technique that leverage the server to build the user interfaces of their mobile app.
@file:Suppress(
"unused",
"UNUSED_PARAMETER",
)
package divkit.dsl
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonIgnore
import com.fasterxml.jackson.annotation.JsonValue
import divkit.dsl.annotation.*
import divkit.dsl.core.*
import divkit.dsl.scope.*
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* Variable — HEX color as a string.
*
* Can be created using the method [colorVariable].
*
* Required parameters: `value, type, name`.
*/
@Generated
class ColorVariable internal constructor(
@JsonIgnore
val properties: Properties,
) : Variable {
@JsonAnyGetter
internal fun getJsonProperties(): Map = properties.mergeWith(
mapOf("type" to "color")
)
operator fun plus(additive: Properties): ColorVariable = ColorVariable(
Properties(
name = additive.name ?: properties.name,
value = additive.value ?: properties.value,
)
)
class Properties internal constructor(
/**
* Variable name.
*/
val name: Property?,
/**
* Value.
*/
val value: Property?,
) {
internal fun mergeWith(properties: Map): Map {
val result = mutableMapOf()
result.putAll(properties)
result.tryPutProperty("name", name)
result.tryPutProperty("value", value)
return result
}
}
}
/**
* @param name Variable name.
* @param value Value.
*/
@Generated
fun DivScope.colorVariable(
`use named arguments`: Guard = Guard.instance,
name: String? = null,
value: Color? = null,
): ColorVariable = ColorVariable(
ColorVariable.Properties(
name = valueOrNull(name),
value = valueOrNull(value),
)
)
/**
* @param name Variable name.
* @param value Value.
*/
@Generated
fun DivScope.colorVariableProps(
`use named arguments`: Guard = Guard.instance,
name: String? = null,
value: Color? = null,
) = ColorVariable.Properties(
name = valueOrNull(name),
value = valueOrNull(value),
)
/**
* @param name Variable name.
* @param value Value.
*/
@Generated
fun TemplateScope.colorVariableRefs(
`use named arguments`: Guard = Guard.instance,
name: ReferenceProperty? = null,
value: ReferenceProperty? = null,
) = ColorVariable.Properties(
name = name,
value = value,
)
/**
* @param name Variable name.
* @param value Value.
*/
@Generated
fun ColorVariable.override(
`use named arguments`: Guard = Guard.instance,
name: String? = null,
value: Color? = null,
): ColorVariable = ColorVariable(
ColorVariable.Properties(
name = valueOrNull(name) ?: properties.name,
value = valueOrNull(value) ?: properties.value,
)
)
/**
* @param name Variable name.
* @param value Value.
*/
@Generated
fun ColorVariable.defer(
`use named arguments`: Guard = Guard.instance,
name: ReferenceProperty? = null,
value: ReferenceProperty? = null,
): ColorVariable = ColorVariable(
ColorVariable.Properties(
name = name ?: properties.name,
value = value ?: properties.value,
)
)
@Generated
fun ColorVariable.asList() = listOf(this)