All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.woojiahao.style.css.CssAttributes.kt Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.github.woojiahao.style.css

class CssAttributes {
  private val attributes = mutableMapOf()

  val attrs
    get() = attributes.toMap()

  fun append(attributes: CssAttributes) = this.attributes.putAll(attributes.attributes)

  fun  add(name: String, value: T?): CssAttributes {
    addAttribute(name, value)
    return this
  }

  fun remove(name: String): CssAttributes {
    attributes.remove(name)
    return this
  }

  infix fun  String.to(value: T?) = addAttribute(this, value)

  fun toCss() =
    attributes
      .entries
      .filter { it.value != null }
      .joinToString("\n") { "\t${it.key}: ${it.value.toString()};" }

  private fun  addAttribute(name: String, value: T?) {
    attributes[name] = value?.toString()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy