Reduce Observable to single class
This commit is contained in:
parent
dde2aa683e
commit
ea108bdbfb
1 changed files with 159 additions and 255 deletions
412
observable.js
412
observable.js
|
@ -3,15 +3,10 @@ const abortRegistry = new FinalizationRegistry(controller => controller.abort())
|
|||
|
||||
/** @param {String} string */
|
||||
const camelToKebab = string => string.replace(/([a-z])([A-Z])/g, (_, a, b) => `${a}-${b}`).toLowerCase()
|
||||
|
||||
/** @param {String} string */
|
||||
const kebabToCamel = string => string.replace(/([a-z])-([a-z])/g, (_, a, b) => a+b.toUpperCase())
|
||||
|
||||
const identity = object=>object
|
||||
|
||||
const target = Symbol("Proxy Target")
|
||||
|
||||
/* Custom Event Classes */
|
||||
|
||||
/**
|
||||
* @typedef {Object} Change
|
||||
* @property {string} property
|
||||
|
@ -20,6 +15,8 @@ const target = Symbol("Proxy Target")
|
|||
* @property {boolean} mutation - The change happened inside the value without a new assignment
|
||||
*/
|
||||
|
||||
/* Custom Event Classes */
|
||||
|
||||
/** Event fired for every change before the internal state has been updated that can be canceled. */
|
||||
export class ChangeEvent extends Event {
|
||||
/** @param {Change} change */
|
||||
|
@ -30,369 +27,276 @@ export class ChangeEvent extends Event {
|
|||
}
|
||||
|
||||
/** Event fired for one or more changed values after the internal state has been updated. */
|
||||
export class ChangedEvent extends Event {
|
||||
/** @type {any} */
|
||||
#final
|
||||
/** @type {any} */
|
||||
#values
|
||||
|
||||
export class ChangesEvent extends Event {
|
||||
/** @param {Change[]} changes */
|
||||
constructor(...changes) {
|
||||
super('changed')
|
||||
super('changes')
|
||||
this.changes = changes
|
||||
}
|
||||
|
||||
get values() {
|
||||
if (!this.#values) {
|
||||
const values = new Map()
|
||||
for (const {property, from, to} of this.changes) {
|
||||
let list = values.get(property)
|
||||
if (!list) {
|
||||
list = [from]
|
||||
values.set(property, list)
|
||||
}
|
||||
list.push(to)
|
||||
}
|
||||
this.#values = values
|
||||
}
|
||||
return this.#values
|
||||
}
|
||||
/** @return {Map<String,Change[]>} */
|
||||
get changesByProperty() {
|
||||
const properties = new Map()
|
||||
|
||||
get final() {
|
||||
if (!this.#final) {
|
||||
this.#final = new Map()
|
||||
for (const [property, list] of this.values) {
|
||||
if (list[0] !== list[list.length-1]) {
|
||||
this.#final.set(property, list[list.length-1])
|
||||
}
|
||||
for (const {property, ...change} of this.changes) {
|
||||
if (!properties.has(property)) {
|
||||
properties.set(property, [])
|
||||
}
|
||||
|
||||
properties.get(property).push(change)
|
||||
}
|
||||
return this.#final
|
||||
|
||||
Object.defineProperty(this, "changesByProperty", {value: properties})
|
||||
return properties
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @typedef {Object} Options
|
||||
* @field {boolean} children
|
||||
* @field {(a: any, b: any) => boolean} same
|
||||
*/
|
||||
|
||||
export class Observable extends EventTarget {
|
||||
#synchronous
|
||||
/** @type Change[]> */
|
||||
#queue
|
||||
#queue = []
|
||||
#abortController = new AbortController
|
||||
|
||||
#ref = new WeakRef(this)
|
||||
get ref() { return this.#ref }
|
||||
|
||||
constructor({synchronous=false}={}) {
|
||||
super()
|
||||
Object.defineProperty(this, "observable", {value: true, configurable: false, writable: false})
|
||||
|
||||
if (this.constructor === Observable) {
|
||||
throw new TypeError("Cannot instantiate abstract class")
|
||||
}
|
||||
this.#synchronous = !!synchronous
|
||||
abortRegistry.register(this, this.#abortController)
|
||||
|
||||
this.proxy = new Proxy(this.constructor.prototype.proxy, {
|
||||
get: (target, prop) => target.call(this, prop)
|
||||
})
|
||||
}
|
||||
|
||||
/** @param {Change[]} changes */
|
||||
emit(...changes) {
|
||||
this.dispatchEvent(new ChangedEvent(...changes))
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} prop
|
||||
*/
|
||||
proxy(prop, {get=undefined, set=undefined, ...options}={}) {
|
||||
const proxy = new ProxiedObservableValue(this, prop, options)
|
||||
if (get) proxy.get = get
|
||||
if (set) proxy.set = set
|
||||
return proxy
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} prop
|
||||
* @param {function(any):void} callback
|
||||
*/
|
||||
subscribe(prop, callback) {
|
||||
const controller = new AbortController()
|
||||
// @ts-ignore
|
||||
this.addEventListener("change", ({final}) => {
|
||||
if (final.has(prop)) return callback(final.get(prop))
|
||||
}, {signal: controller.signal})
|
||||
|
||||
callback(this[prop])
|
||||
return () => controller.abort()
|
||||
}
|
||||
|
||||
/** Queues up a change event
|
||||
* @param {string} property - Name of the changed property
|
||||
* @param {any} from
|
||||
* @param {any} to
|
||||
* @param {boolean} mutation - whether a change was an assignment or a mutation (nested change)
|
||||
*/
|
||||
enqueue(property, from, to, mutation=false) {
|
||||
const change = {property, from, to, mutation}
|
||||
if (!this.dispatchEvent(new ChangeEvent(change))) return false
|
||||
|
||||
if (!this.synchronous) {
|
||||
if (!this.#queue) {
|
||||
this.#queue = []
|
||||
queueMicrotask(() => {
|
||||
this.emit(...this.#queue)
|
||||
this.#queue = undefined
|
||||
})
|
||||
}
|
||||
this.#queue.push(change)
|
||||
} else {
|
||||
this.emit(change)
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
get signal() { return this.#abortController.signal }
|
||||
get synchronous() { return this.#synchronous }
|
||||
|
||||
get changesQueued() { return Boolean(this.#queue) }
|
||||
}
|
||||
|
||||
export class ObservableObject extends Observable {
|
||||
/**
|
||||
* @param {Object} target
|
||||
* @param {Object} options
|
||||
* @param {Options} options
|
||||
*/
|
||||
constructor(target={}, {shallow=true, ...options}={}) {
|
||||
super(options)
|
||||
constructor(target={}, {children=false, same}={}) {
|
||||
super()
|
||||
|
||||
Object.defineProperty(this, "observable", {value: true, configurable: false, writable: false})
|
||||
|
||||
abortRegistry.register(this, this.#abortController)
|
||||
|
||||
Object.defineProperty(this, "target", target)
|
||||
|
||||
this.values = new Proxy(target, {
|
||||
/**
|
||||
* @param {Object} target
|
||||
* @param {String} prop
|
||||
* @param {String} property
|
||||
* @param {any} value
|
||||
*/
|
||||
set: (target, prop, value) => {
|
||||
const old = target[prop]
|
||||
if (old === value) {
|
||||
return true
|
||||
} else {
|
||||
if (this.enqueue(prop, old, value)) {
|
||||
if (!shallow) {
|
||||
if (old instanceof Observable) this.disown(prop, old)
|
||||
if (value instanceof Observable) this.adopt(prop, value)
|
||||
set: (target, property, value) => {
|
||||
const old = target[property]
|
||||
|
||||
if (same ? !same(old, value) : (old !== value)) {
|
||||
if (this.enqueue({property, from: old, to: value, mutation: false})) {
|
||||
if (children) {
|
||||
if (old instanceof Observable) this.disown(property, old)
|
||||
if (value instanceof Observable) this.adopt(property, value)
|
||||
}
|
||||
target[prop] = value
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
target[property] = value
|
||||
}
|
||||
}
|
||||
return true
|
||||
},
|
||||
/**
|
||||
* @param {Object} target
|
||||
* @param {String} prop
|
||||
* @param {String} property
|
||||
*/
|
||||
get: (target, prop) => target[prop],
|
||||
get: (target, property) => target[property],
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} prop
|
||||
* @param {Object} options
|
||||
#microTaskQueued = false
|
||||
/** Queues up a change event
|
||||
* @param {Change} change
|
||||
*/
|
||||
proxy(prop, {get=undefined, set=undefined, ...options}={}) {
|
||||
const proxy = new ProxiedObservableValue(this, prop, {values: this.values, ...options})
|
||||
if (get) proxy.get = get
|
||||
if (set) proxy.set = set
|
||||
return proxy
|
||||
enqueue(change) {
|
||||
if (!this.dispatchEvent(new ChangeEvent(change))) return false
|
||||
|
||||
if (!this.#microTaskQueued) {
|
||||
this.#microTaskQueued = true
|
||||
queueMicrotask(() => {
|
||||
this.#microTaskQueued = false
|
||||
this.emitQueue()
|
||||
})
|
||||
}
|
||||
this.#queue.push(change)
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
/** @type Map<Observable, Map<String, Function>> */
|
||||
/** @param {Change[]} changes */
|
||||
emit(changes) {
|
||||
this.dispatchEvent(new ChangesEvent(...changes))
|
||||
|
||||
if (this.#signals.size || this.#promises.size) {
|
||||
for (const change of changes) {
|
||||
const {property} = change
|
||||
|
||||
if (this.#signals.has(property)) {
|
||||
throw("Fallback signals aren't implemented yet!")
|
||||
}
|
||||
|
||||
if (this.#promises.has(property)) {
|
||||
const {callback} = this.#promises.get(property)
|
||||
this.#promises.delete(property)
|
||||
callback(change)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** Synchronously emits an event with all queued changes. Does nothing when there are no events. */
|
||||
emitQueue() {
|
||||
const queue = this.#queue
|
||||
if (queue.length) {
|
||||
this.emit(queue)
|
||||
}
|
||||
queue.length = 0
|
||||
}
|
||||
|
||||
get collectedSignal() { return this.#abortController.signal }
|
||||
|
||||
/** @type {Number} */
|
||||
get changesQueued() { return this.#queue.length }
|
||||
|
||||
/** @type Map<Observable, Map<String, EventListener>> */
|
||||
#nested = new Map()
|
||||
|
||||
/** Adopts an observable to be notified of its changes
|
||||
* @param {string} prop
|
||||
* @param {string} property
|
||||
* @param {Observable} observable
|
||||
*/
|
||||
adopt(prop, observable) {
|
||||
adopt(property, observable) {
|
||||
let handlers = this.#nested.get(observable)
|
||||
if (!handlers) {
|
||||
// Actual adoption
|
||||
handlers = new Map()
|
||||
this.#nested.set(observable, handlers)
|
||||
}
|
||||
const ref = this.ref
|
||||
const handler = () => ref.deref()?.emit(prop, observable, observable, {observable: true})
|
||||
|
||||
handlers.set(prop, handler)
|
||||
observable.addEventListener("changed", handler, {signal: this.signal})
|
||||
const ref = this.ref
|
||||
|
||||
const handler = () => ref.deref()?.enqueue({property, from: observable, to: observable, mutation: true})
|
||||
|
||||
handlers.set(property, handler)
|
||||
observable.addEventListener("changed", handler, {signal: this.collectedSignal})
|
||||
}
|
||||
|
||||
/** Undoes the adoption of a nested observable, cancelling the associated event hook
|
||||
* @param {string} prop
|
||||
* @param {string} property
|
||||
* @param {Observable} observable
|
||||
*/
|
||||
disown(prop, observable) {
|
||||
disown(property, observable) {
|
||||
const handlers = this.#nested.get(observable)
|
||||
const handler = handlers.get(prop)
|
||||
const handler = handlers.get(property)
|
||||
|
||||
observable.removeEventListener("changed", handler)
|
||||
handlers.delete(prop)
|
||||
|
||||
handlers.delete(property)
|
||||
if (handlers.size == 0) {
|
||||
this.#nested.delete(observable)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export class ObservableValue extends Observable {
|
||||
#value
|
||||
/** @type {Map<String,{promise: Promise, callback: (value: any)=>void}>} */
|
||||
#promises = new Map()
|
||||
// Can't be weak refs because promises are often given callbacks and then forgotten
|
||||
|
||||
/**
|
||||
* @param {any} value
|
||||
* @param {Object} options
|
||||
*/
|
||||
constructor(value, options) {
|
||||
super(options)
|
||||
this.#value = value
|
||||
/** @param {String} property */
|
||||
when(property) {
|
||||
const cached = this.#promises.get(property)
|
||||
if (cached) return cached[0]
|
||||
|
||||
let callback = undefined
|
||||
const promise = new Promise(accept => { callback = accept })
|
||||
|
||||
this.#promises.set(property, {promise, callback})
|
||||
|
||||
return promise
|
||||
}
|
||||
|
||||
get value() { return this.#value }
|
||||
set value(value) {
|
||||
if (this.enqueue("value", this.#value, value)) {
|
||||
this.#value = value
|
||||
}
|
||||
}
|
||||
/** @type {Map<String,FallbackSignal>} */
|
||||
#signals = new Map()
|
||||
|
||||
/**
|
||||
* @param {(value: any) => any} func
|
||||
*/
|
||||
transform(func) {
|
||||
return new Composition(func, {}, this)
|
||||
}
|
||||
/** @param {String} property */
|
||||
signal(property) {
|
||||
const cached = this.#signals.get(property)
|
||||
if (cached) return cached
|
||||
|
||||
proxy(methods) {
|
||||
const signal = new FallbackSignal(this, property)
|
||||
this.#signals.set(property, signal)
|
||||
return signal
|
||||
}
|
||||
}
|
||||
|
||||
class ProxiedObservableValue extends ObservableValue {
|
||||
#values
|
||||
#prop
|
||||
|
||||
class FallbackSignal {
|
||||
/**
|
||||
* @param {Observable} backend
|
||||
* @param {string} prop
|
||||
* @param {Observable} _observable
|
||||
* @param {String} _property
|
||||
*/
|
||||
constructor(backend, prop, {values=backend, ...options}={}) {
|
||||
super(options)
|
||||
this.#values = values
|
||||
this.#prop = prop
|
||||
|
||||
const ref = this.ref
|
||||
backend.addEventListener("change", event => {
|
||||
const {property, from, to, ...rest} = event.change
|
||||
if (property == this.#prop) {
|
||||
ref.deref()?.enqueue({
|
||||
property,
|
||||
from: this.get(from),
|
||||
to: this.get(to),
|
||||
...rest
|
||||
})
|
||||
}
|
||||
}, { signal: this.signal })
|
||||
constructor(_observable, _property) {
|
||||
throw("Fallback signals aren't implemented yet!")
|
||||
}
|
||||
|
||||
get = identity
|
||||
set = identity
|
||||
|
||||
get value() { return this.get(this.#values[this.#prop]) }
|
||||
set value(value) { this.#values[this.#prop] = this.set(value) }
|
||||
}
|
||||
|
||||
/** @type {WeakMap<Element, Observable>} */
|
||||
const componentInstanceStates = new WeakMap()
|
||||
|
||||
const attributeObserver = new MutationObserver(mutations => {
|
||||
for (const {type, target, attributeName: name} of mutations) {
|
||||
if (type == "attributes" && target instanceof HTMLElement) {
|
||||
const next = target.getAttribute(name)
|
||||
const camelName = kebabToCamel(name)
|
||||
if (String(target.state.values[camelName]) !== next)
|
||||
target.state.values[camelName] = next
|
||||
const state = componentInstanceStates.get(target)
|
||||
if (String(state.values[camelName]) !== next)
|
||||
state.values[camelName] = next
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
/**
|
||||
* @param {String} name
|
||||
* @param {(this: HTMLElement, state: Observable) => Node} generator
|
||||
* @param {Object<String,Function>} methods
|
||||
*/
|
||||
export const component = (name, generator, methods) => {
|
||||
if (typeof name === "function") {
|
||||
methods = generator
|
||||
generator = name
|
||||
name = camelToKebab(generator.name)
|
||||
}
|
||||
|
||||
const jsName = kebabToCamel(name)
|
||||
component[jsName] = class extends HTMLElement{
|
||||
/** @type {ObservableObject} */
|
||||
/** @type {Observable} */
|
||||
state
|
||||
|
||||
constructor() {
|
||||
super()
|
||||
const target = Object.fromEntries([...this.attributes].map(attribute => [kebabToCamel(attribute.name), attribute.value]))
|
||||
this.state = new ObservableObject(target)
|
||||
this.state = new Observable(target)
|
||||
|
||||
this.state.addEventListener("changed", event => {
|
||||
if (event instanceof ChangedEvent)
|
||||
if (event instanceof ChangesEvent)
|
||||
for (const {property, to: value} of event.changes) {
|
||||
const kebabName = camelToKebab(property)
|
||||
if (this.getAttribute(kebabName) !== String(value))
|
||||
this.setAttribute(kebabName, value)
|
||||
}
|
||||
})
|
||||
|
||||
attributeObserver.observe(this, {attributes: true})
|
||||
const content = generator.call(this, this.state)
|
||||
if (content) this.replaceChildren(content)
|
||||
}
|
||||
}
|
||||
|
||||
const element = component[jsName]
|
||||
if (methods) {
|
||||
Object.defineProperties(element.prototype, Object.getOwnPropertyDescriptors(methods))
|
||||
}
|
||||
|
||||
customElements.define(name, element)
|
||||
return element;
|
||||
}
|
||||
|
||||
class Composition extends ObservableValue {
|
||||
#func
|
||||
#states
|
||||
|
||||
/**
|
||||
* @param {(...values: any[]) => any} func
|
||||
* @param {Object} options
|
||||
* @param {Observable[]} states
|
||||
*/
|
||||
constructor(func, options, ...obesrvables) {
|
||||
super(options)
|
||||
|
||||
this.#func = func
|
||||
this.#states = obesrvables
|
||||
|
||||
const abortController = new AbortController()
|
||||
abortRegistry.register(this, abortController)
|
||||
const ref = new WeakRef(this)
|
||||
|
||||
obesrvables.forEach(state => {
|
||||
state.addEventListener("changed", () => {
|
||||
ref.deref()?.update()
|
||||
}, {signal: abortController.signal})
|
||||
})
|
||||
|
||||
this.update()
|
||||
}
|
||||
|
||||
update() {
|
||||
const value = this.#func(...this.#states.map(state => state.value))
|
||||
this.value = value
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Function} func
|
||||
*/
|
||||
export const compose = func =>
|
||||
/**
|
||||
* @param {Observable[]} observables
|
||||
*/
|
||||
(...observables) =>
|
||||
new Composition(func, {}, ...observables)
|
||||
|
|
Loading…
Reference in a new issue