blob: d9db23b9eb2df0dd7095a8a3cfdfa504c807ab0c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
 | import { Utils } from "../Utils";
import { Types } from "../server/Message";
import { computed } from "mobx";
export function Cast<T extends Field>(field: FieldValue<Field>, ctor: { new(): T }): Opt<T> {
    if (field) {
        if (ctor && field instanceof ctor) {
            return field;
        }
    }
    return undefined;
}
export const FieldWaiting: FIELD_WAITING = null;
export type FIELD_WAITING = null;
export type FieldId = string;
export type Opt<T> = T | undefined;
export type FieldValue<T> = Opt<T> | FIELD_WAITING;
export abstract class Field {
    //FieldUpdated: TypedEvent<Opt<FieldUpdatedArgs>> = new TypedEvent<Opt<FieldUpdatedArgs>>();
    init(callback: (res: Field) => any) {
        callback(this);
    }
    private id: FieldId;
    @computed
    get Id(): FieldId {
        return this.id;
    }
    constructor(id: Opt<FieldId> = undefined) {
        this.id = id || Utils.GenerateGuid();
    }
    Dereference(): FieldValue<Field> {
        return this;
    }
    DereferenceToRoot(): FieldValue<Field> {
        return this;
    }
    DereferenceT<T extends Field = Field>(ctor: { new(): T }): FieldValue<T> {
        return Cast(this.Dereference(), ctor);
    }
    DereferenceToRootT<T extends Field = Field>(ctor: { new(): T }): FieldValue<T> {
        return Cast(this.DereferenceToRoot(), ctor);
    }
    Equals(other: Field): boolean {
        return this.id === other.id;
    }
    abstract UpdateFromServer(serverData: any): void;
    abstract ToScriptString(): string;
    abstract TrySetValue(value: any): boolean;
    abstract GetValue(): any;
    abstract Copy(): Field;
    abstract ToJson(): { _id: string, type: Types, data: any };
}
 |