theatre/packages/dataverse/src/PointerProxy.ts

60 lines
1.7 KiB
TypeScript
Raw Normal View History

2021-06-18 13:05:06 +02:00
import type {IdentityDerivationProvider} from './Atom'
import type {Pointer} from './pointer'
2021-06-18 13:05:06 +02:00
import pointer from './pointer'
import type {IBox} from './Box'
2021-06-18 13:05:06 +02:00
import Box from './Box'
import type {$FixMe, $IntentionalAny} from './types'
import {valueDerivation} from './Atom'
2021-06-18 13:05:06 +02:00
2022-01-19 13:06:13 +01:00
/**
* Allows creating pointer-derivations where the pointer can be switched out.
*
* @remarks
* This allows reacting not just to value changes at a certain pointer, but changes
* to the proxied pointer too.
*/
2021-06-18 13:05:06 +02:00
export default class PointerProxy<O extends {}>
implements IdentityDerivationProvider
{
2022-01-19 13:06:13 +01:00
/**
* @internal
*/
2021-06-18 13:05:06 +02:00
readonly $$isIdentityDerivationProvider = true
private readonly _currentPointerBox: IBox<Pointer<O>>
2022-01-19 13:06:13 +01:00
/**
* Convenience pointer pointing to the root of this PointerProxy.
*
* @remarks
* Allows convenient use of {@link valueDerivation} and {@link val}.
*/
2021-06-18 13:05:06 +02:00
readonly pointer: Pointer<O>
constructor(currentPointer: Pointer<O>) {
this._currentPointerBox = new Box(currentPointer)
this.pointer = pointer({root: this as $FixMe, path: []})
}
2022-01-19 13:06:13 +01:00
/**
* Sets the underlying pointer.
2022-02-23 22:53:39 +01:00
* @param p - The pointer to be proxied.
2022-01-19 13:06:13 +01:00
*/
2021-06-18 13:05:06 +02:00
setPointer(p: Pointer<O>) {
this._currentPointerBox.set(p)
}
2022-01-19 13:06:13 +01:00
/**
* Returns a derivation of the value at the provided sub-path of the proxied pointer.
*
2022-02-23 22:53:39 +01:00
* @param path - The path to create the derivation at.
2022-01-19 13:06:13 +01:00
*/
2021-06-18 13:05:06 +02:00
getIdentityDerivation(path: Array<string | number>) {
return this._currentPointerBox.derivation.flatMap((p) => {
const subPointer = path.reduce(
(pointerSoFar, pathItem) => (pointerSoFar as $IntentionalAny)[pathItem],
p,
)
return valueDerivation(subPointer)
})
}
}