theatre/packages/dataverse/src/PointerProxy.ts

62 lines
1.7 KiB
TypeScript
Raw Normal View History

2022-12-01 14:28:52 +01:00
import type {IdentityPrismProvider} from './Atom'
import {val} 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'
2022-12-01 14:47:20 +01:00
import prism from './prisms/prism/prism'
2021-06-18 13:05:06 +02:00
2022-01-19 13:06:13 +01:00
/**
* Allows creating pointer-prisms where the pointer can be switched out.
2022-01-19 13:06:13 +01:00
*
* @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 {}>
2022-12-01 14:28:52 +01:00
implements IdentityPrismProvider
2021-06-18 13:05:06 +02:00
{
2022-01-19 13:06:13 +01:00
/**
* @internal
*/
2022-12-01 14:28:52 +01:00
readonly $$isIdentityPrismProvider = true
2021-06-18 13:05:06 +02:00
private readonly _currentPointerBox: IBox<Pointer<O>>
2022-01-19 13:06:13 +01:00
/**
* Convenience pointer pointing to the root of this PointerProxy.
*
* @remarks
2022-12-01 14:26:17 +01:00
* Allows convenient use of {@link pointerToPrism} and {@link val}.
2022-01-19 13:06:13 +01:00
*/
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
/**
2022-12-01 14:41:46 +01:00
* Returns a prism of the value at the provided sub-path of the proxied pointer.
2022-01-19 13:06:13 +01:00
*
2022-12-01 14:41:46 +01:00
* @param path - The path to create the prism at.
2022-01-19 13:06:13 +01:00
*/
2022-12-01 14:28:52 +01:00
getIdentityPrism(path: Array<string | number>) {
return prism(() => {
2022-12-01 14:41:46 +01:00
const currentPointer = this._currentPointerBox.prism.getValue()
2021-06-18 13:05:06 +02:00
const subPointer = path.reduce(
(pointerSoFar, pathItem) => (pointerSoFar as $IntentionalAny)[pathItem],
currentPointer,
2021-06-18 13:05:06 +02:00
)
return val(subPointer)
2021-06-18 13:05:06 +02:00
})
}
}