First pass at typescript support
Oh man did this end up requiring a *ton* of other work as well.
There's still a few typing issues I still can't quite work out,
and others I'd like to improve when I have time. In fact, this version
doesn't even really work, it has a stack overflow error caused by
a tooltip for some reason have a tree inside it, which in turn has
another tooltip, etc. There's also 17 errors that I *really* feel like
shouldn't be there, but they are, and 113 warnings - mostly using !
to assert that things are non-null. Lots of work left to do, to sum up.
The reason I'm committing this now is because I really need to get to
work on my game jam, and since it won't use a tree or really many of
TMT-X's features, I can get away with using a broken engine :)
2021-08-17 04:30:54 +00:00
|
|
|
import Decimal from "./bignum";
|
|
|
|
|
2022-01-14 04:25:47 +00:00
|
|
|
export const ProxyState = Symbol("ProxyState");
|
|
|
|
export const ProxyPath = Symbol("ProxyPath");
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
export type ProxiedWithState<T> = NonNullable<T> extends Record<PropertyKey, any>
|
|
|
|
? NonNullable<T> extends Decimal
|
|
|
|
? T
|
|
|
|
: {
|
|
|
|
[K in keyof T]: ProxiedWithState<T[K]>;
|
|
|
|
} & {
|
|
|
|
[ProxyState]: T;
|
|
|
|
[ProxyPath]: string[];
|
|
|
|
}
|
|
|
|
: T;
|
|
|
|
|
2022-02-27 19:49:34 +00:00
|
|
|
// Takes a function that returns an object and pretends to be that object
|
|
|
|
// Note that the object is lazily calculated
|
|
|
|
export function createLazyProxy<T extends object>(objectFunc: () => T): T {
|
|
|
|
const obj: T | Record<string, never> = {};
|
|
|
|
let calculated = false;
|
|
|
|
function calculateObj(): T {
|
|
|
|
if (!calculated) {
|
|
|
|
Object.assign(obj, objectFunc());
|
|
|
|
calculated = true;
|
First pass at typescript support
Oh man did this end up requiring a *ton* of other work as well.
There's still a few typing issues I still can't quite work out,
and others I'd like to improve when I have time. In fact, this version
doesn't even really work, it has a stack overflow error caused by
a tooltip for some reason have a tree inside it, which in turn has
another tooltip, etc. There's also 17 errors that I *really* feel like
shouldn't be there, but they are, and 113 warnings - mostly using !
to assert that things are non-null. Lots of work left to do, to sum up.
The reason I'm committing this now is because I really need to get to
work on my game jam, and since it won't use a tree or really many of
TMT-X's features, I can get away with using a broken engine :)
2021-08-17 04:30:54 +00:00
|
|
|
}
|
2022-02-27 19:49:34 +00:00
|
|
|
return obj as T;
|
|
|
|
}
|
First pass at typescript support
Oh man did this end up requiring a *ton* of other work as well.
There's still a few typing issues I still can't quite work out,
and others I'd like to improve when I have time. In fact, this version
doesn't even really work, it has a stack overflow error caused by
a tooltip for some reason have a tree inside it, which in turn has
another tooltip, etc. There's also 17 errors that I *really* feel like
shouldn't be there, but they are, and 113 warnings - mostly using !
to assert that things are non-null. Lots of work left to do, to sum up.
The reason I'm committing this now is because I really need to get to
work on my game jam, and since it won't use a tree or really many of
TMT-X's features, I can get away with using a broken engine :)
2021-08-17 04:30:54 +00:00
|
|
|
|
2022-02-27 19:49:34 +00:00
|
|
|
return new Proxy(obj, {
|
|
|
|
get(target, key) {
|
|
|
|
if (key === ProxyState) {
|
|
|
|
return calculateObj();
|
|
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
return (calculateObj() as any)[key];
|
|
|
|
},
|
2022-04-01 03:48:11 +00:00
|
|
|
set(target, key, value) {
|
|
|
|
console.error("Layers and features are shallow readonly", key, value);
|
2022-02-27 19:49:34 +00:00
|
|
|
return false;
|
|
|
|
},
|
|
|
|
has(target, key) {
|
|
|
|
if (key === ProxyState) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return Reflect.has(calculateObj(), key);
|
|
|
|
},
|
|
|
|
ownKeys() {
|
|
|
|
return Reflect.ownKeys(calculateObj());
|
|
|
|
},
|
|
|
|
getOwnPropertyDescriptor(target, key) {
|
|
|
|
if (!calculated) {
|
|
|
|
Object.assign(obj, objectFunc());
|
|
|
|
calculated = true;
|
|
|
|
}
|
|
|
|
return Object.getOwnPropertyDescriptor(target, key);
|
First pass at typescript support
Oh man did this end up requiring a *ton* of other work as well.
There's still a few typing issues I still can't quite work out,
and others I'd like to improve when I have time. In fact, this version
doesn't even really work, it has a stack overflow error caused by
a tooltip for some reason have a tree inside it, which in turn has
another tooltip, etc. There's also 17 errors that I *really* feel like
shouldn't be there, but they are, and 113 warnings - mostly using !
to assert that things are non-null. Lots of work left to do, to sum up.
The reason I'm committing this now is because I really need to get to
work on my game jam, and since it won't use a tree or really many of
TMT-X's features, I can get away with using a broken engine :)
2021-08-17 04:30:54 +00:00
|
|
|
}
|
2022-02-27 19:49:34 +00:00
|
|
|
}) as T;
|
|
|
|
}
|