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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
|
/* eslint-disable jsx-a11y/label-has-associated-control */
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { Button, IconButton, Type } from 'browndash-components';
import { action, makeObservable, observable } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { CgClose } from 'react-icons/cg';
import ReactLoading from 'react-loading';
import { TypeAnimation } from 'react-type-animation';
import { ClientUtils } from '../../../../ClientUtils';
import { Doc } from '../../../../fields/Doc';
import { NumCast, StrCast } from '../../../../fields/Types';
import { Networking } from '../../../Network';
import { GPTCallType, gptAPICall, gptImageCall } from '../../../apis/gpt/GPT';
import { Docs } from '../../../documents/Documents';
import { DocUtils } from '../../../documents/DocUtils';
import { ObservableReactComponent } from '../../ObservableReactComponent';
import { AnchorMenu } from '../AnchorMenu';
import './GPTPopup.scss';
import { SettingsManager } from '../../../util/SettingsManager';
import { SnappingManager } from '../../../util/SnappingManager';
export enum GPTPopupMode {
SUMMARY,
EDIT,
IMAGE,
FLASHCARD,
DATA,
SORT,
}
interface GPTPopupProps {}
@observer
export class GPTPopup extends ObservableReactComponent<GPTPopupProps> {
// eslint-disable-next-line no-use-before-define
static Instance: GPTPopup;
@observable private chatMode: boolean = false;
private correlatedColumns: string[] = [];
@observable
public visible: boolean = false;
@action
public setVisible = (vis: boolean) => {
this.visible = vis;
};
@observable
public loading: boolean = false;
@action
public setLoading = (loading: boolean) => {
this.loading = loading;
};
@observable
public text: string = '';
@action
public setText = (text: string) => {
this.text = text;
};
@observable
public selectedText: string = '';
@action
public setSelectedText = (text: string) => {
this.selectedText = text;
};
@observable
public dataJson: string = '';
public dataChatPrompt: string | null = null;
@action
public setDataJson = (text: string) => {
if (text === '') this.dataChatPrompt = '';
this.dataJson = text;
};
@observable
public imgDesc: string = '';
@action
public setImgDesc = (text: string) => {
this.imgDesc = text;
};
@observable
public imgUrls: string[][] = [];
@action
public setImgUrls = (imgs: string[][]) => {
this.imgUrls = imgs;
};
@observable
public mode: GPTPopupMode = GPTPopupMode.SUMMARY;
@action
public setMode = (mode: GPTPopupMode) => {
this.mode = mode;
};
@observable
public highlightRange: number[] = [];
@action callSummaryApi = () => {};
@observable
private done: boolean = false;
@action
public setDone = (done: boolean) => {
this.done = done;
this.chatMode = false;
};
@observable
private sortDone: boolean = false; // this is so redundant but the og done variable was causing weird unknown problems and im just a girl
@action
public setSortDone = (done: boolean) => {
this.sortDone = done;
};
// change what can be a ref into a ref
@observable
private sidebarId: string = '';
@action
public setSidebarId = (id: string) => {
this.sidebarId = id;
};
@observable
private imgTargetDoc: Doc | undefined;
@action
public setImgTargetDoc = (anchor: Doc) => {
this.imgTargetDoc = anchor;
};
@observable
private textAnchor: Doc | undefined;
@action
public setTextAnchor = (anchor: Doc) => {
this.textAnchor = anchor;
};
@observable
public sortDesc: string = '';
@action public setSortDesc = (t: string) => {
this.sortDesc = t;
};
@observable onSortComplete?: (sortResult: string) => void;
@observable cardsDoneLoading = false;
@action setCardsDoneLoading(done: boolean) {
console.log(done + 'HI HIHI');
this.cardsDoneLoading = done;
}
public addDoc: (doc: Doc | Doc[], sidebarKey?: string | undefined) => boolean = () => false;
public createFilteredDoc: (axes?: any) => boolean = () => false;
public addToCollection: ((doc: Doc | Doc[], annotationKey?: string | undefined) => boolean) | undefined;
/**
* Sorts cards in the CollectionCardDeckView
*/
generateSort = async () => {
this.setLoading(true);
this.setSortDone(false);
try {
const res = await gptAPICall(this.sortDesc, GPTCallType.SORT);
// Trigger the callback with the result
if (this.onSortComplete) {
this.onSortComplete(res || 'Something went wrong :(');
console.log(res);
}
} catch (err) {
console.error(err);
}
this.setLoading(false);
this.setSortDone(true);
};
/**
* Generates a Dalle image and uploads it to the server.
*/
generateImage = async () => {
if (this.imgDesc === '') return undefined;
this.setImgUrls([]);
this.setMode(GPTPopupMode.IMAGE);
this.setVisible(true);
this.setLoading(true);
try {
const imageUrls = await gptImageCall(this.imgDesc);
if (imageUrls && imageUrls[0]) {
const [result] = await Networking.PostToServer('/uploadRemoteImage', { sources: [imageUrls[0]] });
const source = ClientUtils.prepend(result.accessPaths.agnostic.client);
this.setImgUrls([[imageUrls[0], source]]);
}
} catch (err) {
console.error(err);
}
this.setLoading(false);
return undefined;
};
/**
* Completes an API call to generate a summary of
* this.selectedText in the popup.
*/
generateSummary = async () => {
GPTPopup.Instance.setVisible(true);
GPTPopup.Instance.setMode(GPTPopupMode.SUMMARY);
GPTPopup.Instance.setLoading(true);
try {
const res = await gptAPICall(this.selectedText, GPTCallType.SUMMARY);
GPTPopup.Instance.setText(res || 'Something went wrong.');
} catch (err) {
console.error(err);
}
GPTPopup.Instance.setLoading(false);
};
/**
* Completes an API call to generate an analysis of
* this.dataJson in the popup.
*/
generateDataAnalysis = async () => {
GPTPopup.Instance.setVisible(true);
GPTPopup.Instance.setLoading(true);
try {
const res = await gptAPICall(this.dataJson, GPTCallType.DATA, this.dataChatPrompt);
const json = JSON.parse(res! as string);
const keys = Object.keys(json);
this.correlatedColumns = [];
this.correlatedColumns.push(json[keys[0]]);
this.correlatedColumns.push(json[keys[1]]);
GPTPopup.Instance.setText(json[keys[2]] || 'Something went wrong.');
} catch (err) {
console.error(err);
}
GPTPopup.Instance.setLoading(false);
};
/**
* Transfers the summarization text to a sidebar annotation text document.
*/
private transferToText = () => {
const newDoc = Docs.Create.TextDocument(this.text.trim(), {
_width: 200,
_height: 50,
_layout_fitWidth: true,
_layout_autoHeight: true,
});
this.addDoc(newDoc, this.sidebarId);
// newDoc.data = 'Hello world';
const anchor = AnchorMenu.Instance?.GetAnchor(undefined, false);
if (anchor) {
DocUtils.MakeLink(newDoc, anchor, {
link_relationship: 'GPT Summary',
});
}
};
/**
* Creates a histogram to show the correlation relationship that was found
*/
private createVisualization = () => {
this.createFilteredDoc(this.correlatedColumns);
};
/**
* Transfers the image urls to actual image docs
*/
private transferToImage = (source: string) => {
const textAnchor = this.imgTargetDoc;
if (!textAnchor) return;
const newDoc = Docs.Create.ImageDocument(source, {
x: NumCast(textAnchor.x) + NumCast(textAnchor._width) + 10,
y: NumCast(textAnchor.y),
_height: 200,
_width: 200,
data_nativeWidth: 1024,
data_nativeHeight: 1024,
});
if (Doc.IsInMyOverlay(textAnchor)) {
newDoc.overlayX = textAnchor.x;
newDoc.overlayY = NumCast(textAnchor.y) + NumCast(textAnchor._height);
Doc.AddToMyOverlay(newDoc);
} else {
this.addToCollection?.(newDoc);
}
// Create link between prompt and image
DocUtils.MakeLink(textAnchor, newDoc, { link_relationship: 'Image Prompt' });
};
/**
* Creates a chatbox for analyzing data so that users can ask specific questions.
*/
private chatWithAI = () => {
this.chatMode = true;
};
dataPromptChanged = action((e: React.ChangeEvent<HTMLInputElement>) => {
this.dataChatPrompt = e.target.value;
});
private getPreviewUrl = (source: string) => source.split('.').join('_m.');
constructor(props: GPTPopupProps) {
super(props);
makeObservable(this);
GPTPopup.Instance = this;
}
componentDidUpdate = () => {
if (this.loading) {
this.setDone(false);
}
};
sortBox = () => (
<>
<div>
{this.heading('SORTING')}
{this.loading ? (
<div className="content-wrapper">
<div className="loading-spinner">
<ReactLoading type="spin" color={StrCast(Doc.UserDoc().userVariantColor)} height={30} width={30} />
<span>Loading...</span>
</div>
</div>
) : (
<>
{!this.cardsDoneLoading ? (
<div className="content-wrapper">
<div className="loading-spinner">
<ReactLoading type="spin" color={StrCast(Doc.UserDoc().userVariantColor)} height={30} width={30} />
<span>Reading Cards...</span>
</div>
</div>
) : (
!this.sortDone && (
<div className="btns-wrapper-gpt">
<Button
tooltip="Have ChatGPT sort your cards for you!"
text="Sort!"
onClick={this.generateSort}
color={StrCast(Doc.UserDoc().userVariantColor)}
type={Type.TERT}
style={{
width: '90%', // Almost as wide as the container
textAlign: 'center',
color: '#ffffff', // White text
fontSize: '16px', // Adjust font size as needed
}}
/>
</div>
)
)}
{this.sortDone && (
<div>
<div className="content-wrapper">
<p>{this.text === 'Something went wrong :(' ? 'Something went wrong :(' : 'Sorting done! Feel free to move things around / regenerate :) !'}</p>
<IconButton tooltip="Generate Again" onClick={() => this.setSortDone(false)} icon={<FontAwesomeIcon icon="redo-alt" size="lg" />} color={StrCast(Doc.UserDoc().userVariantColor)} />
</div>
</div>
)}
</>
)}
</div>
</>
);
imageBox = () => (
<div style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>
{this.heading('GENERATED IMAGE')}
<div className="image-content-wrapper">
{this.imgUrls.map(rawSrc => (
<div className="img-wrapper">
<div className="img-container">
<img key={rawSrc[0]} src={rawSrc[0]} width={150} height={150} alt="dalle generation" />
</div>
<div className="btn-container">
<Button text="Save Image" onClick={() => this.transferToImage(rawSrc[1])} color={StrCast(Doc.UserDoc().userColor)} type={Type.TERT} />
</div>
</div>
))}
</div>
{!this.loading && <IconButton tooltip="Generate Again" onClick={this.generateImage} icon={<FontAwesomeIcon icon="redo-alt" size="lg" />} color={StrCast(Doc.UserDoc().userVariantColor)} />}
</div>
);
summaryBox = () => (
<>
<div>
{this.heading('SUMMARY')}
<div className="content-wrapper">
{!this.loading &&
(!this.done ? (
<TypeAnimation
speed={50}
sequence={[
this.text,
() => {
setTimeout(() => {
this.setDone(true);
}, 500);
},
]}
/>
) : (
this.text
))}
</div>
</div>
{!this.loading && (
<div className="btns-wrapper">
{this.done ? (
<>
<IconButton tooltip="Generate Again" onClick={this.generateSummary /* this.callSummaryApi */} icon={<FontAwesomeIcon icon="redo-alt" size="lg" />} color={StrCast(SettingsManager.userVariantColor)} />
<Button tooltip="Transfer to text" text="Transfer To Text" onClick={this.transferToText} color={StrCast(SettingsManager.userVariantColor)} type={Type.TERT} />
</>
) : (
<div className="summarizing">
<span>Summarizing</span>
<ReactLoading type="bubbles" color="#bcbcbc" width={20} height={20} />
<Button
text="Stop Animation"
onClick={() => {
this.setDone(true);
}}
color={StrCast(SettingsManager.userVariantColor)}
type={Type.TERT}
/>
</div>
)}
</div>
)}
</>
);
dataAnalysisBox = () => (
<>
<div>
{this.heading('ANALYSIS')}
<div className="content-wrapper">
{!this.loading &&
(!this.done ? (
<TypeAnimation
speed={50}
sequence={[
this.text,
() => {
setTimeout(() => {
this.setDone(true);
}, 500);
},
]}
/>
) : (
this.text
))}
</div>
</div>
{!this.loading && (
<div className="btns-wrapper">
{this.done ? (
this.chatMode ? (
<input
defaultValue=""
autoComplete="off"
onChange={this.dataPromptChanged}
onKeyDown={e => {
e.key === 'Enter' ? this.generateDataAnalysis() : null;
e.stopPropagation();
}}
type="text"
placeholder="Ask GPT a question about the data..."
id="search-input"
className="searchBox-input"
style={{ width: '100%' }}
/>
) : (
<>
<Button tooltip="Transfer to text" text="Transfer To Text" onClick={this.transferToText} color={StrCast(SnappingManager.userVariantColor)} type={Type.TERT} />
<Button tooltip="Chat with AI" text="Chat with AI" onClick={this.chatWithAI} color={StrCast(SnappingManager.userVariantColor)} type={Type.TERT} />
</>
)
) : (
<div className="summarizing">
<span>Summarizing</span>
<ReactLoading type="bubbles" color="#bcbcbc" width={20} height={20} />
<Button
text="Stop Animation"
onClick={() => {
this.setDone(true);
}}
color={StrCast(SnappingManager.userVariantColor)}
type={Type.TERT}
/>
</div>
)}
</div>
)}
</>
);
aiWarning = () =>
this.done ? (
<div className="ai-warning">
<FontAwesomeIcon icon="exclamation-circle" size="sm" style={{ paddingRight: '5px' }} />
AI generated responses can contain inaccurate or misleading content.
</div>
) : null;
heading = (headingText: string) => (
<div className="summary-heading">
<label className="summary-text">{headingText}</label>
{this.loading ? <ReactLoading type="spin" color="#bcbcbc" width={14} height={14} /> : <IconButton color={StrCast(SettingsManager.userVariantColor)} tooltip="close" icon={<CgClose size="16px" />} onClick={() => this.setVisible(false)} />}
</div>
);
render() {
return (
<div className="summary-box" style={{ display: this.visible ? 'flex' : 'none' }}>
{this.mode === GPTPopupMode.SUMMARY ? this.summaryBox() : this.mode === GPTPopupMode.DATA ? this.dataAnalysisBox() : this.mode === GPTPopupMode.IMAGE ? this.imageBox() : this.mode === GPTPopupMode.SORT ? this.sortBox() : null}
</div>
);
}
}
|