1 Commits

Author SHA1 Message Date
e82c4b2091 Common code initial 2022-10-14 16:56:21 +02:00
15 changed files with 126 additions and 200 deletions

View File

@@ -1,19 +1,19 @@
plugins { plugins {
kotlin("multiplatform") version "1.9.23" kotlin("multiplatform") version "1.7.20"
id("maven-publish") `maven-publish`
id("signing") signing
id("org.jetbrains.dokka") version "1.5.31" id("org.jetbrains.dokka") version "1.5.31"
} }
group = "nl.astraeus" group = "nl.astraeus"
version = "1.2.3-SNAPSHOT" version = "1.0.8-SNAPSHOT"
repositories { repositories {
mavenCentral() mavenCentral()
} }
kotlin { kotlin {
js(IR) { js(BOTH) {
browser { browser {
testTask { testTask {
useKarma { useKarma {
@@ -22,37 +22,20 @@ kotlin {
} }
} }
} }
/*
@OptIn(ExperimentalWasmDsl::class)
wasmJs {
//moduleName = project.name
browser()
mavenPublication {
groupId = group as String
pom { name = "${project.name}-wasm-js" }
}
}
@OptIn(ExperimentalKotlinGradlePluginApi::class)
applyDefaultHierarchyTemplate {
common {
group("jsCommon") {
withJs()
// TODO: switch to `withWasmJs()` after upgrade to Kotlin 2.0
withWasm()
}
}
}
*/
sourceSets { sourceSets {
val commonMain by getting { val commonMain by getting {
dependencies { dependencies {
api("org.jetbrains.kotlinx:kotlinx-html:0.11.0") implementation(kotlin("stdlib-common"))
api("org.jetbrains.kotlinx:kotlinx-html-js:0.7.3")
}
}
val jsMain by getting {
dependencies {
implementation(kotlin("stdlib-js"))
} }
} }
val jsMain by getting
val jsTest by getting { val jsTest by getting {
dependencies { dependencies {
implementation(kotlin("test-js")) implementation(kotlin("test-js"))
@@ -88,25 +71,25 @@ publishing {
maven { maven {
name = "releases" name = "releases"
// change to point to your repo, e.g. http://my.org/repo // change to point to your repo, e.g. http://my.org/repo
setUrl("https://reposilite.astraeus.nl/releases") setUrl("https://nexus.astraeus.nl/nexus/content/repositories/releases")
credentials { credentials {
val reposiliteUsername: String? by project val nexusUsername: String? by project
val reposilitePassword: String? by project val nexusPassword: String? by project
username = reposiliteUsername username = nexusUsername
password = reposilitePassword password = nexusPassword
} }
} }
maven { maven {
name = "snapshots" name = "snapshots"
// change to point to your repo, e.g. http://my.org/repo // change to point to your repo, e.g. http://my.org/repo
setUrl("https://reposilite.astraeus.nl/snapshots") setUrl("https://nexus.astraeus.nl/nexus/content/repositories/snapshots")
credentials { credentials {
val reposiliteUsername: String? by project val nexusUsername: String? by project
val reposilitePassword: String? by project val nexusPassword: String? by project
username = reposiliteUsername username = nexusUsername
password = reposilitePassword password = nexusPassword
} }
} }
maven { maven {
@@ -153,23 +136,3 @@ publishing {
signing { signing {
sign(publishing.publications) sign(publishing.publications)
} }
tasks.named<Task>("signJsPublication") {
dependsOn(tasks.named<Task>("publishKotlinMultiplatformPublicationToMavenLocal"))
}
tasks.named<Task>("publishJsPublicationToReleasesRepository") {
dependsOn(tasks.named<Task>("signKotlinMultiplatformPublication"))
}
tasks.named<Task>("publishKotlinMultiplatformPublicationToMavenLocalRepository") {
dependsOn(tasks.named<Task>("signJsPublication"))
}
tasks.named<Task>("publishKotlinMultiplatformPublicationToReleasesRepository") {
dependsOn(tasks.named<Task>("signJsPublication"))
}
tasks.named<Task>("publishKotlinMultiplatformPublicationToSonatypeRepository") {
dependsOn(tasks.named<Task>("signJsPublication"))
}

View File

@@ -56,7 +56,7 @@ fun greet() = "world"
Replace the code in the file with the following for a simple click app: Replace the code in the file with the following for a simple click app:
```kotlin ```koltin
import kotlinx.browser.document import kotlinx.browser.document
import kotlinx.html.button import kotlinx.html.button
import kotlinx.html.div import kotlinx.html.div
@@ -144,4 +144,4 @@ the data changes, that would look like this:
In that case you can remove the requestUpdate call from the onClickFunction. In that case you can remove the requestUpdate call from the onClickFunction.
You can find a working repository of this example here: [kotlin-komponent-start](https://github.com/rnentjes/kotlin-komponent-start) You can find a working repository of this example here: [example]()

View File

@@ -3,4 +3,3 @@
* [Home](home.md) * [Home](home.md)
* [Getting started](getting-started.md) * [Getting started](getting-started.md)
* [How it works](how-it-works.md) * [How it works](how-it-works.md)

View File

@@ -15,8 +15,8 @@ This way there will not be double updates of the same komponent.
The render call will be invoked and every html builder function (div, span etc.) will call the The render call will be invoked and every html builder function (div, span etc.) will call the
different HtmlBuilder functions like onTagStart, onTagAttributeChange etc. different HtmlBuilder functions like onTagStart, onTagAttributeChange etc.
In these functions the HtmlBuilder will compare the dom against the call being made, and it will update the DOM In these functions the HtmlBuilder will compare the dom against the call being made and it will update the DOM
as needed. if needed.

View File

Before

Width:  |  Height:  |  Size: 184 KiB

After

Width:  |  Height:  |  Size: 184 KiB

View File

@@ -1,5 +1,5 @@
#Wed Mar 04 13:29:12 CET 2020 #Wed Mar 04 13:29:12 CET 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

View File

@@ -9,5 +9,3 @@ See the komp-todo repository for a basic example here: [komp-todo](https://githu
For a more complete example take a look at the simple-password-manager repository: [simple-password-manager](https://github.com/rnentjes/simple-password-manager) For a more complete example take a look at the simple-password-manager repository: [simple-password-manager](https://github.com/rnentjes/simple-password-manager)
Available on maven central: "nl.astraeus:kotlin-komponent-js:1.0.0" Available on maven central: "nl.astraeus:kotlin-komponent-js:1.0.0"
Some getting started documentation can be found [here](docs/getting-started.md)

View File

@@ -0,0 +1 @@
package nl.astraeus.komp

View File

@@ -1,9 +1,8 @@
package nl.astraeus.komp package nl.astraeus.komp
import org.w3c.dom.events.Event
import org.w3c.dom.Element import org.w3c.dom.Element
import org.w3c.dom.HTMLInputElement import org.w3c.dom.HTMLInputElement
import org.w3c.dom.events.EventListener import org.w3c.dom.events.Event
import org.w3c.dom.get import org.w3c.dom.get
private fun Int.asSpaces(): String { private fun Int.asSpaces(): String {

View File

@@ -1,64 +0,0 @@
package nl.astraeus.komp
import org.w3c.dom.Node
import org.w3c.dom.get
data class ElementIndex(
val parent: Node,
var childIndex: Int,
var setAttr: MutableSet<String> = mutableSetOf()
) {
override fun toString(): String {
return "${parent.nodeName}[$childIndex]"
}
}
fun ArrayList<ElementIndex>.currentParent(): Node {
this.lastOrNull()?.let {
return it.parent
}
throw IllegalStateException("currentParent should never be null!")
}
fun ArrayList<ElementIndex>.currentElement(): Node? {
this.lastOrNull()?.let {
return it.parent.childNodes[it.childIndex]
}
return null
}
fun ArrayList<ElementIndex>.currentPosition(): ElementIndex? {
return if (this.size < 2) {
null
} else {
this[this.size - 2]
}
}
fun ArrayList<ElementIndex>.nextElement() {
this.lastOrNull()?.let {
it.setAttr.clear()
it.childIndex++
}
}
fun ArrayList<ElementIndex>.pop() {
this.removeLast()
}
fun ArrayList<ElementIndex>.push(element: Node) {
this.add(ElementIndex(element, 0))
}
fun ArrayList<ElementIndex>.replace(new: Node) {
if (this.currentElement() != null) {
this.currentElement()?.parentElement?.replaceChild(
new,
this.currentElement()!!
)
} else {
this.last().parent.appendChild(new)
}
}

View File

@@ -13,6 +13,7 @@ import org.w3c.dom.HTMLInputElement
import org.w3c.dom.HTMLSpanElement import org.w3c.dom.HTMLSpanElement
import org.w3c.dom.Node import org.w3c.dom.Node
import org.w3c.dom.asList import org.w3c.dom.asList
import org.w3c.dom.events.Event
import org.w3c.dom.get import org.w3c.dom.get
private var currentElement: Element? = null private var currentElement: Element? = null
@@ -26,6 +27,62 @@ interface HtmlConsumer : TagConsumer<Element> {
fun FlowOrMetaDataOrPhrasingContent.currentElement(): Element = fun FlowOrMetaDataOrPhrasingContent.currentElement(): Element =
currentElement ?: error("No current element defined!") currentElement ?: error("No current element defined!")
private data class ElementIndex(
val parent: Node,
var childIndex: Int,
var setAttr: MutableSet<String> = mutableSetOf()
)
private fun ArrayList<ElementIndex>.currentParent(): Node {
this.lastOrNull()?.let {
return it.parent
}
throw IllegalStateException("currentParent should never be null!")
}
private fun ArrayList<ElementIndex>.currentElement(): Node? {
this.lastOrNull()?.let {
return it.parent.childNodes[it.childIndex]
}
return null
}
private fun ArrayList<ElementIndex>.currentPosition(): ElementIndex? {
return if (this.size < 2) {
null
} else {
this[this.size - 2]
}
}
private fun ArrayList<ElementIndex>.nextElement() {
this.lastOrNull()?.let {
it.setAttr.clear()
it.childIndex++
}
}
private fun ArrayList<ElementIndex>.pop() {
this.removeLast()
}
private fun ArrayList<ElementIndex>.push(element: Node) {
this.add(ElementIndex(element, 0))
}
private fun ArrayList<ElementIndex>.replace(new: Node) {
if (this.currentElement() != null) {
this.currentElement()?.parentElement?.replaceChild(
new,
this.currentElement()!!
)
} else {
this.last().parent.appendChild(new)
}
}
private fun Node.asElement() = this as? HTMLElement private fun Node.asElement() = this as? HTMLElement
class HtmlBuilder( class HtmlBuilder(
@@ -37,7 +94,6 @@ class HtmlBuilder(
private var inDebug = false private var inDebug = false
private var exceptionThrown = false private var exceptionThrown = false
private var currentNode: Node? = null private var currentNode: Node? = null
private var firstTag: Boolean = true
var root: Element? = null var root: Element? = null
init { init {
@@ -56,13 +112,6 @@ class HtmlBuilder(
) )
} }
} else { } else {
// current element should become parent
/*
val ce = komponent.element
if (ce != null) {
append(ce as Element)
}
*/
komponent.create( komponent.create(
currentPosition.last().parent as Element, currentPosition.last().parent as Element,
currentPosition.last().childIndex currentPosition.last().childIndex
@@ -97,7 +146,7 @@ class HtmlBuilder(
override fun onTagStart(tag: Tag) { override fun onTagStart(tag: Tag) {
logReplace { logReplace {
"onTagStart, [${tag.tagName}, ${tag.namespace ?: ""}], currentPosition: $currentPosition" "onTagStart, [${tag.tagName}, ${tag.namespace}], currentPosition: $currentPosition"
} }
currentNode = currentPosition.currentElement() currentNode = currentPosition.currentElement()
@@ -110,7 +159,7 @@ class HtmlBuilder(
document.createElement(tag.tagName) document.createElement(tag.tagName)
} }
logReplace { "onTagStart, currentElement1.1: $currentNode" } //logReplace"onTagStart, currentElement1.1: $currentNode")
currentPosition.currentParent().appendChild(currentNode!!) currentPosition.currentParent().appendChild(currentNode!!)
} else if ( } else if (
!currentNode?.asElement()?.tagName.equals(tag.tagName, true) || !currentNode?.asElement()?.tagName.equals(tag.tagName, true) ||
@@ -138,18 +187,17 @@ class HtmlBuilder(
currentElement = currentNode as? Element ?: currentElement currentElement = currentNode as? Element ?: currentElement
if (currentNode is Element) { if (currentNode is Element) {
if (firstTag) { if (root == null) {
logReplace { "Setting root: $currentNode" } //logReplace"Setting root: $currentNode")
root = currentNode as Element root = currentNode as Element
firstTag = false
} }
currentElement?.clearKompEvents() currentElement?.clearKompEvents()
// if currentElement = checkbox make sure it's cleared
(currentElement as? HTMLInputElement)?.checked = false (currentElement as? HTMLInputElement)?.checked = false
currentPosition.lastOrNull()?.setAttr?.clear() currentPosition.lastOrNull()?.setAttr?.clear()
// if currentElement = checkbox make sure it's cleared
for (entry in tag.attributesEntries) { for (entry in tag.attributesEntries) {
currentElement!!.setKompAttribute(entry.key, entry.value) currentElement!!.setKompAttribute(entry.key, entry.value)
currentPosition.lastOrNull()?.setAttr?.add(entry.key) currentPosition.lastOrNull()?.setAttr?.add(entry.key)
@@ -159,14 +207,14 @@ class HtmlBuilder(
currentPosition.push(currentNode!!) currentPosition.push(currentNode!!)
} }
private fun checkTag(source: String, tag: Tag) { private fun checkTag(tag: Tag) {
check(currentElement != null) { check(currentElement != null) {
js("debugger;") js("debugger")
"No current tag ($source)" "No current tag"
} }
check(currentElement?.tagName.equals(tag.tagName, ignoreCase = true)) { check(currentElement?.tagName.equals(tag.tagName, ignoreCase = true)) {
js("debugger;") js("debugger")
"Wrong current tag ($source), got: ${tag.tagName} expected ${currentElement?.tagName}" "Wrong current tag"
} }
} }
@@ -178,7 +226,7 @@ class HtmlBuilder(
logReplace { "onTagAttributeChange, ${tag.tagName} [$attribute, $value]" } logReplace { "onTagAttributeChange, ${tag.tagName} [$attribute, $value]" }
if (Komponent.enableAssertions) { if (Komponent.enableAssertions) {
checkTag("onTagAttributeChange", tag) checkTag(tag)
} }
currentElement?.setKompAttribute(attribute, value) currentElement?.setKompAttribute(attribute, value)
@@ -192,22 +240,18 @@ class HtmlBuilder(
override fun onTagEvent( override fun onTagEvent(
tag: Tag, tag: Tag,
event: String, event: String,
value: (kotlinx.html.org.w3c.dom.events.Event) -> Unit value: (Event) -> Unit
) { ) {
logReplace { "onTagEvent, ${tag.tagName} [$event, $value]" } logReplace { "onTagEvent, ${tag.tagName} [$event, $value]" }
if (Komponent.enableAssertions) { if (Komponent.enableAssertions) {
checkTag("onTagEvent", tag) checkTag(tag)
} }
currentElement?.setKompEvent(event.lowercase(), value.asDynamic()) currentElement?.setKompEvent(event.toLowerCase(), value)
} }
override fun onTagEnd(tag: Tag) { override fun onTagEnd(tag: Tag) {
logReplace {
"onTagEnd, [${tag.tagName}, ${tag.namespace}], currentPosition: $currentPosition"
}
if (exceptionThrown) { if (exceptionThrown) {
return return
} }
@@ -219,7 +263,7 @@ class HtmlBuilder(
} }
if (Komponent.enableAssertions) { if (Komponent.enableAssertions) {
checkTag("onTagEnd", tag) checkTag(tag)
} }
if (currentElement != null) { if (currentElement != null) {
@@ -351,7 +395,7 @@ class HtmlBuilder(
currentPosition.nextElement() currentPosition.nextElement()
} }
fun onTagError(tag: Tag, exception: Throwable) { override fun onTagError(tag: Tag, exception: Throwable) {
exceptionThrown = true exceptionThrown = true
if (exception !is KomponentException) { if (exception !is KomponentException) {

View File

@@ -111,25 +111,8 @@ abstract class Komponent {
* *
* HTMLBuilder.render() is called 1st time the component is rendered, after that this * HTMLBuilder.render() is called 1st time the component is rendered, after that this
* method will be called * method will be called
*
* @deprecated
*/ */
@Deprecated( open fun update() {
"Deprecated to avoid confusing with requestUpdate, use renderUpdate instead",
ReplaceWith("renderUpdate"),
level = DeprecationLevel.WARNING
)
protected fun update() {
refresh()
}
/**
* This function can be overwritten if you know how to update the Komponent yourself
*
* HTMLBuilder.render() is called 1st time the component is rendered, after that this
* method will be called
*/
open fun renderUpdate() {
refresh() refresh()
} }
@@ -245,7 +228,7 @@ abstract class Komponent {
if (next.memoizeChanged()) { if (next.memoizeChanged()) {
next.onBeforeUpdate() next.onBeforeUpdate()
next.renderUpdate() next.update()
next.updateMemoizeHash() next.updateMemoizeHash()
next.onAfterUpdate() next.onAfterUpdate()
} else if (logRenderEvent) { } else if (logRenderEvent) {

View File

@@ -31,7 +31,7 @@ class MutableCollectionStateDelegate<T>(
} }
// todo: return iterator wrapper to update at changes? // todo: return iterator wrapper to update at changes?
//override fun iterator(): MutableIterator<T> = collection.iterator() // override fun iterator(): MutableIterator<T> = collection.iterator()
override fun remove(element: T): Boolean { override fun remove(element: T): Boolean {
komponent.requestUpdate() komponent.requestUpdate()

View File

@@ -14,9 +14,9 @@ interface Delegate<T> {
property: KProperty<*>, property: KProperty<*>,
value: T value: T
) )
} }
open class StateDelegate<T>( open class StateDelegate<T>(
val komponent: Komponent, val komponent: Komponent,
initialValue: T initialValue: T
@@ -51,6 +51,6 @@ open class StateDelegate<T>(
inline fun <reified T> Komponent.state( inline fun <reified T> Komponent.state(
initialValue: T initialValue: T
): Delegate<T> = StateDelegate( ): Delegate<T> = StateDelegate(
this, this,
initialValue initialValue
) )

View File

@@ -1,7 +1,6 @@
package nl.astraeus.komp package nl.astraeus.komp
import kotlinx.browser.document import kotlinx.browser.document
import kotlinx.html.DIV
import kotlinx.html.InputType import kotlinx.html.InputType
import kotlinx.html.classes import kotlinx.html.classes
import kotlinx.html.div import kotlinx.html.div
@@ -126,7 +125,7 @@ class IncludeKomponent(
} }
class ReplaceKomponent : Komponent() { class ReplaceKomponent : Komponent() {
val includeKomponent = IncludeKomponent("Other text") val includeKomponent = IncludeKomponent()
var includeSpan = true var includeSpan = true
override fun generateMemoizeHash(): Int = includeSpan.hashCode() * 7 + includeKomponent.generateMemoizeHash() override fun generateMemoizeHash(): Int = includeSpan.hashCode() * 7 + includeKomponent.generateMemoizeHash()
@@ -137,8 +136,20 @@ class ReplaceKomponent : Komponent() {
div { div {
if (includeSpan) { if (includeSpan) {
for (index in 0 ..< 3) { span {
extracted(index) i("fas fa-eye") {
+"span1"
}
}
span {
i("fas fa-eye") {
+"span2"
}
}
span {
i("fas fa-eye") {
+"span3"
}
} }
} }
@@ -146,14 +157,6 @@ class ReplaceKomponent : Komponent() {
} }
} }
} }
private fun HtmlBuilder.extracted(index: Int) {
span {
i("fas fa-eye") {
+ ("span" + (index+1))
}
}
}
} }
class TestUpdate { class TestUpdate {