aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DiagramBox.tsx
blob: 32969fa539d5079d1e09d86de59d2bfd40baff28 (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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import mermaid from 'mermaid';
import { action, makeObservable, observable, reaction } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { Doc, DocListCast } from '../../../fields/Doc';
import { List } from '../../../fields/List';
import { RichTextField } from '../../../fields/RichTextField';
import { DocCast, NumCast } from '../../../fields/Types';
import { GPTCallType, gptAPICall } from '../../apis/gpt/GPT';
import { DocumentType } from '../../documents/DocumentTypes';
import { Docs } from '../../documents/Documents';
import { DocumentManager } from '../../util/DocumentManager';
import { LinkManager } from '../../util/LinkManager';
import { ViewBoxAnnotatableComponent } from '../DocComponent';
import { InkingStroke } from '../InkingStroke';
import './DiagramBox.scss';
import { FieldView, FieldViewProps } from './FieldView';

@observer
export class DiagramBox extends ViewBoxAnnotatableComponent<FieldViewProps>() {
    public static LayoutString(fieldKey: string) {
        return FieldView.LayoutString(DiagramBox, fieldKey);
    }
    private _ref: React.RefObject<HTMLDivElement> = React.createRef();
    private _dragRef = React.createRef<HTMLDivElement>();
    constructor(props: FieldViewProps) {
        super(props);
        makeObservable(this);
    }

    @observable inputValue = '';
    @observable loading = false;
    @observable errorMessage = '';
    @observable mermaidCode = '';

    @action handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
        this.inputValue = e.target.value;
    };
    async componentDidMount() {
        this._props.setContentViewBox?.(this);
        mermaid.initialize({
            securityLevel: 'loose',
            startOnLoad: true,
            flowchart: { useMaxWidth: true, htmlLabels: true, curve: 'cardinal' },
        });
        this.mermaidCode = 'asdasdasd';
        const docArray: Doc[] = DocListCast(this.Document.data);
        let mermaidCodeDoc = docArray.filter(doc => doc.type === 'rich text');
        mermaidCodeDoc = mermaidCodeDoc.filter(doc => (doc.text as RichTextField).Text === 'mermaidCodeTitle');
        if (mermaidCodeDoc[0]) {
            if (typeof mermaidCodeDoc[0].title === 'string') {
                console.log(mermaidCodeDoc[0].title);
                if (mermaidCodeDoc[0].title !== '') {
                    this.renderMermaidAsync(mermaidCodeDoc[0].title);
                }
            }
        }
        // this will create a text doc far away where the user cant to save the mermaid code, where it will then be accessed when flipped to the diagram box side
        // the code is stored in the title since it is much easier to change than in the text
        else {
            DocumentManager.Instance.AddViewRenderedCb(this.Document, docViewForYourCollection => {
                if (docViewForYourCollection && docViewForYourCollection.ComponentView) {
                    if (docViewForYourCollection.ComponentView.addDocument && docViewForYourCollection.ComponentView.removeDocument) {
                        const newDoc = Docs.Create.TextDocument('mermaidCodeTitle', { title: '', x: 9999 + NumCast(this.layoutDoc._width), y: 9999 });
                        docViewForYourCollection.ComponentView?.addDocument(newDoc);
                    }
                }
            });
        }
        console.log(this.Document.title);
        // this is so that ever time a new doc, text node or ink node, is created, this.createMermaidCode will run which will create a save
        reaction(
            () => DocListCast(this.Document.data),
            () => this.convertDrawingToMermaidCode(),
            { fireImmediately: true }
        );
    }
    renderMermaid = async (str: string) => {
        try {
            const { svg, bindFunctions } = await this.mermaidDiagram(str);
            return { svg, bindFunctions };
        } catch (error) {
            console.error('Error rendering mermaid diagram:', error);
            return { svg: '', bindFunctions: undefined };
        }
    };
    mermaidDiagram = async (str: string) => mermaid.render('graph' + Date.now(), str);

    async renderMermaidAsync(mermaidCode: string) {
        try {
            const { svg, bindFunctions } = await this.renderMermaid(mermaidCode);
            const dashDiv = document.getElementById('dashDiv' + this.Document.title);
            if (dashDiv) {
                dashDiv.innerHTML = svg;
                if (bindFunctions) {
                    bindFunctions(dashDiv);
                }
            }
        } catch (error) {
            console.error('Error rendering Mermaid:', error);
        }
    }
    @action handleRenderClick = () => {
        this.generateMermaidCode();
    };
    @action async generateMermaidCode() {
        console.log('Generating Mermaid Code');
        this.loading = true;
        let prompt = '';
        // let docArray: Doc[] = DocListCast(this.Document.data);
        // let mermaidCodeDoc = docArray.filter(doc => doc.type == 'rich text')
        // mermaidCodeDoc=mermaidCodeDoc.filter(doc=>(doc.text as RichTextField).Text=='mermaidCodeTitle')
        // if(mermaidCodeDoc[0]){
        //     console.log(mermaidCodeDoc[0].title)
        //     if(typeof mermaidCodeDoc[0].title=='string'){
        //         console.log(mermaidCodeDoc[0].title)
        //         if(mermaidCodeDoc[0].title!=""){
        //             prompt="Edit this code "+this.inputValue+": "+mermaidCodeDoc[0].title
        //             console.log("you have to see me")
        //         }
        //     }
        // }
        // else{
        prompt = 'Write this in mermaid code and only give me the mermaid code: ' + this.inputValue;
        console.log('there is no text save');
        // }
        const res = await gptAPICall(prompt, GPTCallType.MERMAID);
        this.loading = false;
        if (res === 'Error connecting with API.') {
            // If GPT call failed
            console.error('GPT call failed');
            this.errorMessage = 'GPT call failed; please try again.';
        } else if (res !== null) {
            // If GPT call succeeded, set htmlCode;;; TODO: check if valid html
            if (this.isValidCode(res)) {
                this.mermaidCode = res;
                console.log('GPT call succeeded:' + res);
                this.errorMessage = '';
            } else {
                console.error('GPT call succeeded but invalid html; please try again.');
                this.errorMessage = 'GPT call succeeded but invalid html; please try again.';
            }
        }
        this.renderMermaidAsync.call(this, this.removeWords(this.mermaidCode));
        this.loading = false;
    }
    isValidCode = (html: string) => true;
    removeWords(inputStrIn: string) {
        const inputStr = inputStrIn.replace('```mermaid', '');
        return inputStr.replace('```', '');
    }
    // method to convert the drawings on collection node side the mermaid code
    async convertDrawingToMermaidCode() {
        let mermaidCode = '';
        let diagramExists = false;
        if (this.Document.data instanceof List) {
            const docArray: Doc[] = DocListCast(this.Document.data);
            const rectangleArray = docArray.filter(doc => doc.title === 'rectangle' || doc.title === 'circle');
            const lineArray = docArray.filter(doc => doc.title === 'line' || doc.title === 'stroke');
            const textArray = docArray.filter(doc => doc.type === 'rich text');
            const timeoutPromise = () =>
                new Promise(resolve => {
                    setTimeout(resolve, 0);
                });
            await timeoutPromise();
            const inkStrokeArray = lineArray.map(doc => DocumentManager.Instance.getDocumentView(doc, this.DocumentView?.())).filter(inkView => inkView?.ComponentView instanceof InkingStroke);
            console.log(inkStrokeArray.length);
            console.log(lineArray.length);
            if (inkStrokeArray[0] && inkStrokeArray.length === lineArray.length) {
                mermaidCode = 'graph TD;';
                const inkingStrokeArray = inkStrokeArray.map(stroke => stroke?.ComponentView);
                for (let i = 0; i < rectangleArray.length; i++) {
                    const rectangle = rectangleArray[i];
                    for (let j = 0; j < lineArray.length; j++) {
                        const inkScaleX = (inkingStrokeArray[j] as InkingStroke)?.inkScaledData().inkScaleX;
                        const inkScaleY = (inkingStrokeArray[j] as InkingStroke)?.inkScaledData().inkScaleY;
                        const inkStrokeXArray = (inkingStrokeArray[j] as InkingStroke)
                            ?.inkScaledData()
                            .inkData.map(coord => coord.X)
                            .map(doc => doc * inkScaleX);
                        const inkStrokeYArray = (inkingStrokeArray[j] as InkingStroke)
                            ?.inkScaledData()
                            .inkData.map(coord => coord.Y)
                            .map(doc => doc * inkScaleY);
                        console.log(inkingStrokeArray.length);
                        console.log(lineArray.length);
                        // need to minX and minY to since the inkStroke.x and.y is not relative to the doc. so I have to do some calcluations
                        const minX: number = Math.min(...inkStrokeXArray);
                        const minY: number = Math.min(...inkStrokeYArray);
                        const startX = inkStrokeXArray[0] - minX + (lineArray[j]?.x as number);
                        const startY = inkStrokeYArray[0] - minY + (lineArray[j]?.y as number);
                        const endX = inkStrokeXArray[inkStrokeXArray.length - 1] - minX + (lineArray[j].x as number);
                        const endY = inkStrokeYArray[inkStrokeYArray.length - 1] - minY + (lineArray[j].y as number);
                        if (this.isPointInBox(rectangle, [startX, startY])) {
                            for (let k = 0; k < rectangleArray.length; k++) {
                                const rectangle2 = rectangleArray[k];
                                if (this.isPointInBox(rectangle2, [endX, endY]) && typeof rectangle.x === 'number' && typeof rectangle2.x === 'number') {
                                    diagramExists = true;
                                    const linkedDocs: Doc[] = LinkManager.Instance.getAllRelatedLinks(lineArray[j]).map(d => DocCast(LinkManager.getOppositeAnchor(d, lineArray[j])));
                                    console.log(linkedDocs.length);
                                    if (linkedDocs.length !== 0) {
                                        const linkedText = (linkedDocs[0].text as RichTextField).Text;
                                        mermaidCode += Math.abs(rectangle.x) + this.getTextInBox(rectangle, textArray) + '-->|' + linkedText + '|' + Math.abs(rectangle2.x) + this.getTextInBox(rectangle2, textArray) + ';';
                                    } else {
                                        mermaidCode += Math.abs(rectangle.x) + this.getTextInBox(rectangle, textArray) + '-->' + Math.abs(rectangle2.x) + this.getTextInBox(rectangle2, textArray) + ';';
                                    }
                                }
                            }
                        }
                    }
                }
                // this will save the text
                DocumentManager.Instance.AddViewRenderedCb(this.Document, docViewForYourCollection => {
                    if (docViewForYourCollection && docViewForYourCollection.ComponentView) {
                        if (docViewForYourCollection.ComponentView.addDocument && docViewForYourCollection.ComponentView.removeDocument) {
                            let docs: Doc[] = DocListCast(this.Document.data);
                            docs = docs.filter(doc => doc.type === 'rich text');
                            const mermaidCodeDoc = docs.filter(doc => (doc.text as RichTextField).Text === 'mermaidCodeTitle');
                            if (mermaidCodeDoc[0]) {
                                if (diagramExists) {
                                    mermaidCodeDoc[0].title = mermaidCode;
                                } else {
                                    mermaidCodeDoc[0].title = '';
                                }
                            }
                        }
                    }
                });
            }
        }
    }
    testInkingStroke = () => {
        if (this.Document.data instanceof List) {
            const docArray: Doc[] = DocListCast(this.Document.data);
            const lineArray = docArray.filter(doc => doc.title === 'line' || doc.title === 'stroke');
            setTimeout(() => {
                const inkStrokeArray = lineArray.map(doc => DocumentManager.Instance.getDocumentView(doc, this.DocumentView?.())).filter(inkView => inkView?.ComponentView instanceof InkingStroke);
                console.log(inkStrokeArray);
            });
        }
    };
    getTextInBox = (box: Doc, richTextArray: Doc[]): string => {
        for (let i = 0; i < richTextArray.length; i++) {
            const textDoc = richTextArray[i];
            if (typeof textDoc.x === 'number' && typeof textDoc.y === 'number' && typeof box.x === 'number' && typeof box.height === 'number' && typeof box.width === 'number' && typeof box.y === 'number') {
                if (textDoc.x > box.x && textDoc.x < box.x + box.width && textDoc.y > box.y && textDoc.y < box.y + box.height) {
                    if (box.title === 'rectangle') {
                        return '(' + ((textDoc.text as RichTextField)?.Text ?? '') + ')';
                    }
                    if (box.title === 'circle') {
                        return '((' + ((textDoc.text as RichTextField)?.Text ?? '') + '))';
                    }
                }
            }
        }
        return '( )';
    };
    isPointInBox = (box: Doc, line: number[]): boolean => {
        if (typeof line[0] === 'number' && typeof box.x === 'number' && typeof box.width === 'number' && typeof box.height === 'number' && typeof box.y === 'number' && typeof line[1] === 'number') {
            return line[0] < box.x + box.width && line[0] > box.x && line[1] > box.y && line[1] < box.y + box.height;
        }
        return false;
    };

    render() {
        return (
            <div ref={this._ref} className="DIYNodeBox">
                <div ref={this._dragRef} className="DIYNodeBox-wrapper">
                    <div className="search-bar">
                        <input type="text" value={this.inputValue} onChange={this.handleInputChange} />
                        <button type="button" onClick={this.handleRenderClick}>
                            Generate
                        </button>
                    </div>
                    <div className="content">
                        {this.mermaidCode ? (
                            <div id={'dashDiv' + this.Document.title} className="diagramBox" />
                        ) : (
                            <div>{this.loading ? <div className="loading-circle" /> : <div>{this.errorMessage ? this.errorMessage : 'Insert prompt to generate diagram'}</div>}</div>
                        )}
                    </div>
                </div>
            </div>
        );
    }
}

Docs.Prototypes.TemplateMap.set(DocumentType.DIAGRAM, {
    layout: { view: DiagramBox, dataField: 'dadta' },
    options: { _height: 300, _layout_fitWidth: true, _layout_nativeDimEditable: true, _layout_reflowVertical: true, waitForDoubleClickToClick: 'always', systemIcon: 'BsGlobe' },
});