aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/ScriptBox.tsx
blob: cafa09f41297f91c5aee05291d49b51453f22caf (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import * as React from "react";
import { observer } from "mobx-react";
import { observable, action } from "mobx";

import "./ScriptBox.scss";
import { OverlayView } from "./OverlayView";
import { DocumentIconContainer } from "./nodes/DocumentIcon";
import { Opt, Doc } from "../../new_fields/Doc";
import { emptyFunction } from "../../Utils";
import { ScriptCast } from "../../new_fields/Types";
import { CompileScript } from "../util/Scripting";
import { ScriptField } from "../../new_fields/ScriptField";
import { DragManager } from "../util/DragManager";
import { EditableView } from "./EditableView";
import { FieldView, FieldViewProps } from "./nodes/FieldView";
import { DocAnnotatableComponent } from "./DocComponent";
import { makeInterface } from "../../new_fields/Schema";
import { documentSchema } from "../../new_fields/documentSchemas";
import { CompileResult } from "../northstar/model/idea/idea";

export interface ScriptBoxProps {
    onSave?: (text: string, onError: (error: string) => void) => void;
    onCancel?: () => void;
    initialText?: string;
    showDocumentIcons?: boolean;
    setParams?: (p: string[]) => void;
}

type ScriptDocument = makeInterface<[typeof documentSchema]>;
const ScriptDocument = makeInterface(documentSchema);

@observer
export class ScriptBox extends DocAnnotatableComponent<FieldViewProps & ScriptBoxProps, ScriptDocument>(ScriptDocument) {
    protected multiTouchDisposer?: import("../util/InteractionUtils").InteractionUtils.MultiTouchEventDisposer | undefined;
    public static LayoutString(fieldStr: string) { return FieldView.LayoutString(ScriptBox, fieldStr); }

    @observable
    private _scriptText: string;

    constructor(props: ScriptBoxProps) {
        super(props);
        this._scriptText = props.initialText || "";
    }

    @action
    onChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
        this._scriptText = e.target.value;
    }

    @action
    onError = (error: string) => {
        console.log(error);
    }

    overlayDisposer?: () => void;
    onFocus = () => {
        if (this.overlayDisposer) {
            this.overlayDisposer();
        }
        this.overlayDisposer = OverlayView.Instance.addElement(<DocumentIconContainer />, { x: 0, y: 0 });
    }

    onBlur = () => {
        this.overlayDisposer && this.overlayDisposer();
    }

    onCompile = () => {
        const result = CompileScript(this._scriptText, {});
        if (result.compiled) {
            // this automatically saves
            this.props.Document.data = new ScriptField(result);
        }
        else {
            // error message
        }
    }

    render() {
        let onFocus: Opt<() => void> = undefined, onBlur: Opt<() => void> = undefined;
        //if (this.props.showDocumentIcons) {
        onFocus = this.onFocus;
        onBlur = this.onBlur;
        // }
        const params = <EditableView
            contents={""}
            display={"block"}
            maxHeight={72}
            height={35}
            fontSize={28}
            GetValue={() => ""}
            SetValue={(value: string) => this.props.setParams && this.props.setParams(value.split(" ").filter(s => s !== " ")) ? true : true}
        />;
        return (
            <div className="scriptBox-outerDiv">
                <div style={{ display: "flex", flexDirection: "column", height: "100%" }}>
                    <textarea className="scriptBox-textarea" onChange={this.onChange} value={this._scriptText} onFocus={onFocus} onBlur={onBlur}></textarea>
                    <div style={{ background: "beige" }} >{params}</div>
                </div>
                <div className="scriptBox-toolbar">
                    <button onPointerDown={e => { this.onCompile(); e.stopPropagation(); }}>Compile</button>
                </div>
            </div>
        );
    }
    //let l = docList(this.source[0].data).length; if (l) { let ind = this.target[0].index !== undefined ? (this.target[0].index+1) % l : 0;  this.target[0].index = ind;  this.target[0].proto = getProto(docList(this.source[0].data)[ind]);}
    public static EditButtonScript(title: string, doc: Doc, fieldKey: string, clientX: number, clientY: number, contextParams?: { [name: string]: string }) {
        let overlayDisposer: () => void = emptyFunction;
        const script = ScriptCast(doc[fieldKey]);
        let originalText: string | undefined = undefined;
        if (script) {
            originalText = script.script.originalScript;
        }
        // tslint:disable-next-line: no-unnecessary-callback-wrapper
        const params: string[] = [];
        const setParams = (p: string[]) => params.splice(0, params.length, ...p);
        const scriptingBox = <ScriptBox initialText={originalText} setParams={setParams} onCancel={overlayDisposer} onSave={(text, onError) => {
            if (!text) {
                doc[fieldKey] = undefined;
            } else {
                const script = CompileScript(text, {
                    params: { this: Doc.name, ...contextParams },
                    typecheck: false,
                    editable: true,
                    transformer: DocumentIconContainer.getTransformer()
                });
                if (!script.compiled) {
                    onError(script.errors.map(error => error.messageText).join("\n"));
                    return;
                }

                const div = document.createElement("div");
                div.style.width = "90";
                div.style.height = "20";
                div.style.background = "gray";
                div.style.position = "absolute";
                div.style.display = "inline-block";
                div.style.transform = `translate(${clientX}px, ${clientY}px)`;
                div.innerHTML = "button";
                params.length && DragManager.StartButtonDrag([div], text, doc.title + "-instance", {}, params, (button: Doc) => { }, clientX, clientY);

                doc[fieldKey] = new ScriptField(script);
                overlayDisposer();
            }
        }} showDocumentIcons />;
        overlayDisposer = OverlayView.Instance.addWindow(scriptingBox, { x: 400, y: 200, width: 500, height: 400, title: title });
    }
}