aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/ScriptBox.tsx
blob: c2fbef5a58139060f47efbc3627080c0248c948c (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
148
149
150
151
152
import { action, makeObservable, observable } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { emptyFunction } from '../../Utils';
import { Doc, Opt } from '../../fields/Doc';
import { ScriptField } from '../../fields/ScriptField';
import { ScriptCast } from '../../fields/Types';
import { DragManager } from '../util/DragManager';
import { CompileScript } from '../util/Scripting';
import { EditableView } from './EditableView';
import { OverlayView } from './OverlayView';
import './ScriptBox.scss';
import { DocumentIconContainer } from './nodes/DocumentIcon';

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

@observer
export class ScriptBox extends React.Component<ScriptBoxProps> {
    @observable
    private _scriptText: string;
    overlayDisposer?: () => void;

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

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

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

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

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

    render() {
        let onFocus: Opt<() => void>;
        let onBlur: Opt<() => void>;
        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?.(value.split(' ').filter(s => s !== ' '));
                    return 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} />
                    <div style={{ background: 'beige' }}>{params}</div>
                </div>
                <div className="scriptBox-toolbar">
                    <button
                        type="button"
                        onClick={e => {
                            this.props.onSave(this._scriptText, this.onError);
                            e.stopPropagation();
                        }}>
                        Save
                    </button>
                    <button
                        type="button"
                        onClick={e => {
                            this.props.onCancel && this.props.onCancel();
                            e.stopPropagation();
                        }}>
                        Cancel
                    </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 }, defaultScript?: ScriptField) {
        let overlayDisposer: () => void = emptyFunction;
        const script = ScriptCast(doc[fieldKey]) || defaultScript;
        let originalText: string | 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 compScript = CompileScript(text, {
                            params: { this: Doc.name, ...contextParams },
                            typecheck: false,
                            editable: true,
                            transformer: DocumentIconContainer.getTransformer(),
                        });
                        if (!compScript.compiled) {
                            onError(compScript.errors.map(error => error.messageText).join('\n'));
                            return;
                        }

                        const div = document.createElement('div');
                        div.style.width = '90px';
                        div.style.height = '20px';
                        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, () => {}, clientX, clientY);

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