Compare commits
No commits in common. "d457c386e0b509ce50d7b22e7a667471daf52ec0" and "ce416d994b485708cea8594d7fcd0666c7af5dd9" have entirely different histories.
d457c386e0
...
ce416d994b
2 changed files with 24 additions and 14 deletions
|
@ -38,7 +38,7 @@ export class ChangedEvent extends Event {
|
||||||
|
|
||||||
/** @param {Change[]} changes */
|
/** @param {Change[]} changes */
|
||||||
constructor(...changes) {
|
constructor(...changes) {
|
||||||
super('changed')
|
super('change')
|
||||||
this.changes = changes
|
this.changes = changes
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -134,7 +134,6 @@ export class Observable extends EventTarget {
|
||||||
enqueue(property, from, to, mutation=false) {
|
enqueue(property, from, to, mutation=false) {
|
||||||
const change = {property, from, to, mutation}
|
const change = {property, from, to, mutation}
|
||||||
if (!this.dispatchEvent(new ChangeEvent(change))) return false
|
if (!this.dispatchEvent(new ChangeEvent(change))) return false
|
||||||
|
|
||||||
if (!this.synchronous) {
|
if (!this.synchronous) {
|
||||||
if (!this.#queue) {
|
if (!this.#queue) {
|
||||||
this.#queue = []
|
this.#queue = []
|
||||||
|
@ -261,14 +260,9 @@ export class ObservableValue extends Observable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** @param {Change[]} changes */
|
||||||
* @param {(value: any) => any} func
|
emit(...changes) {
|
||||||
*/
|
this.dispatchEvent(new ChangedEvent(...changes))
|
||||||
compose(func) {
|
|
||||||
return new Composition(func, {}, this)
|
|
||||||
}
|
|
||||||
|
|
||||||
proxy(methods) {
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -371,17 +365,34 @@ class Composition extends ObservableValue {
|
||||||
const ref = new WeakRef(this)
|
const ref = new WeakRef(this)
|
||||||
|
|
||||||
obesrvables.forEach(state => {
|
obesrvables.forEach(state => {
|
||||||
state.addEventListener("changed", () => {
|
state.addEventListener("change", () => {
|
||||||
ref.deref()?.update()
|
ref.deref()?.scheduleUpdate()
|
||||||
}, {signal: abortController.signal})
|
}, {signal: abortController.signal})
|
||||||
})
|
})
|
||||||
|
|
||||||
this.update()
|
this.update()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#microtaskQueued = false
|
||||||
|
scheduleUpdate() {
|
||||||
|
if (this.synchronous) {
|
||||||
|
this.update()
|
||||||
|
} else {
|
||||||
|
if (!this.#microtaskQueued) {
|
||||||
|
queueMicrotask(() => {
|
||||||
|
this.#microtaskQueued = false
|
||||||
|
this.update()
|
||||||
|
})
|
||||||
|
this.#microtaskQueued = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
update() {
|
update() {
|
||||||
const value = this.#func(...this.#states.map(state => state.value))
|
const value = this.#func(...this.#states.map(state => state.value))
|
||||||
|
const change = {property: "value", from: this.value, to: value}
|
||||||
this.value = value
|
this.value = value
|
||||||
|
this.emit(change)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -204,7 +204,7 @@ export class DomRenderer extends Renderer {
|
||||||
if (observable.value instanceof DocumentFragment) {
|
if (observable.value instanceof DocumentFragment) {
|
||||||
throw "Failed to create reactive element: Document fragments cannot be replaced dynamically"
|
throw "Failed to create reactive element: Document fragments cannot be replaced dynamically"
|
||||||
}
|
}
|
||||||
const element = this.toElement(observable.value) || document.createComment("Reactive element Placeholder")
|
const element = this.toElement(observable.value)
|
||||||
untilDeathDoThemPart(element, observable)
|
untilDeathDoThemPart(element, observable)
|
||||||
let ref = new WeakRef(element)
|
let ref = new WeakRef(element)
|
||||||
|
|
||||||
|
@ -217,7 +217,6 @@ export class DomRenderer extends Renderer {
|
||||||
if (element?.dispatchEvent(new BeforeReplaceEvent(next))) {
|
if (element?.dispatchEvent(new BeforeReplaceEvent(next))) {
|
||||||
element.replaceWith(next)
|
element.replaceWith(next)
|
||||||
next.dispatchEvent(new ReplacedEvent(element))
|
next.dispatchEvent(new ReplacedEvent(element))
|
||||||
untilDeathDoThemPart(next, observable)
|
|
||||||
element.dispatchEvent(new AfterReplaceEvent(next))
|
element.dispatchEvent(new AfterReplaceEvent(next))
|
||||||
ref = new WeakRef(next)
|
ref = new WeakRef(next)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue