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
|
import React = require('react');
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { Tooltip } from '@material-ui/core';
import { action, computed, IReactionDisposer, observable, ObservableMap, reaction } from 'mobx';
import { observer } from 'mobx-react';
import { ColorState } from 'react-color';
import { Doc, Opt } from '../../../fields/Doc';
import { returnFalse, setupMoveUpEvents, unimplementedFunction, Utils } from '../../../Utils';
import { SelectionManager } from '../../util/SelectionManager';
import { AntimodeMenu, AntimodeMenuProps } from '../AntimodeMenu';
import { LinkPopup } from '../linking/LinkPopup';
import { ButtonDropdown } from '../nodes/formattedText/RichTextMenu';
import { gptAPICall, GPTCallType } from '../../apis/gpt/GPT';
import { GPTPopup, GPTPopupMode } from './GPTPopup/GPTPopup';
import { LightboxView } from '../LightboxView';
import { EditorView } from 'prosemirror-view';
import './AnchorMenu.scss';
@observer
export class AnchorMenu extends AntimodeMenu<AntimodeMenuProps> {
static Instance: AnchorMenu;
private _disposer: IReactionDisposer | undefined;
private _disposer2: IReactionDisposer | undefined;
private _commentCont = React.createRef<HTMLButtonElement>();
private _palette = [
'rgba(208, 2, 27, 0.8)',
'rgba(238, 0, 0, 0.8)',
'rgba(245, 166, 35, 0.8)',
'rgba(248, 231, 28, 0.8)',
'rgba(245, 230, 95, 0.616)',
'rgba(139, 87, 42, 0.8)',
'rgba(126, 211, 33, 0.8)',
'rgba(65, 117, 5, 0.8)',
'rgba(144, 19, 254, 0.8)',
'rgba(238, 169, 184, 0.8)',
'rgba(224, 187, 228, 0.8)',
'rgba(225, 223, 211, 0.8)',
'rgba(255, 255, 255, 0.8)',
'rgba(155, 155, 155, 0.8)',
'rgba(0, 0, 0, 0.8)',
];
@observable private highlightColor: string = 'rgba(245, 230, 95, 0.616)';
@observable private _showLinkPopup: boolean = false;
@observable public Status: 'marquee' | 'annotation' | '' = '';
// GPT additions
@observable private GPTpopupText: string = '';
@observable private loadingGPT: boolean = false;
@observable private showGPTPopup: boolean = false;
@observable private GPTMode: GPTPopupMode = GPTPopupMode.SUMMARY;
@observable private selectedText: string = '';
@observable private editorView?: EditorView;
@observable private textDoc?: Doc;
@observable private highlightRange: number[] | undefined;
private selectionRange: number[] | undefined;
@action
setGPTPopupVis = (vis: boolean) => {
this.showGPTPopup = vis;
};
@action
setGPTMode = (mode: GPTPopupMode) => {
this.GPTMode = mode;
};
@action
setGPTPopupText = (txt: string) => {
this.GPTpopupText = txt;
};
@action
setLoading = (loading: boolean) => {
this.loadingGPT = loading;
};
@action
setHighlightRange(r: number[] | undefined) {
this.highlightRange = r;
}
@action
public setSelectedText = (txt: string) => {
this.selectedText = txt;
};
@action
public setEditorView = (editor: EditorView) => {
this.editorView = editor;
};
@action
public setTextDoc = (textDoc: Doc) => {
this.textDoc = textDoc;
};
public onMakeAnchor: () => Opt<Doc> = () => undefined; // Method to get anchor from text search
public OnCrop: (e: PointerEvent) => void = unimplementedFunction;
public OnClick: (e: PointerEvent) => void = unimplementedFunction;
public OnAudio: (e: PointerEvent) => void = unimplementedFunction;
public StartDrag: (e: PointerEvent, ele: HTMLElement) => void = unimplementedFunction;
public StartCropDrag: (e: PointerEvent, ele: HTMLElement) => void = unimplementedFunction;
public Highlight: (color: string, isTargetToggler: boolean, savedAnnotations?: ObservableMap<number, HTMLDivElement[]>, addAsAnnotation?: boolean) => Opt<Doc> = (color: string, isTargetToggler: boolean) => undefined;
public GetAnchor: (savedAnnotations: Opt<ObservableMap<number, HTMLDivElement[]>>, addAsAnnotation: boolean) => Opt<Doc> = (savedAnnotations: Opt<ObservableMap<number, HTMLDivElement[]>>, addAsAnnotation: boolean) => undefined;
public Delete: () => void = unimplementedFunction;
public PinToPres: () => void = unimplementedFunction;
public MakeTargetToggle: () => void = unimplementedFunction;
public ShowTargetTrail: () => void = unimplementedFunction;
public IsTargetToggler: () => boolean = returnFalse;
public get Active() {
return this._left > 0;
}
constructor(props: Readonly<{}>) {
super(props);
AnchorMenu.Instance = this;
AnchorMenu.Instance._canFade = false;
}
componentWillUnmount() {
this._disposer?.();
this._disposer2?.();
}
componentDidMount() {
this._disposer2 = reaction(
() => this._opacity,
opacity => {
if (!opacity) {
this._showLinkPopup = false;
this.setGPTPopupVis(false);
this.setGPTPopupText('');
}
},
{ fireImmediately: true }
);
this._disposer = reaction(
() => SelectionManager.Views().slice(),
selected => {
this._showLinkPopup = false;
this.setGPTPopupVis(false);
this.setGPTPopupText('');
AnchorMenu.Instance.fadeOut(true);
}
);
}
/**
* Invokes the API with the selected text and stores it in the summarized text.
* @param e pointer down event
*/
gptSummarize = async (e: React.PointerEvent) => {
this.setHighlightRange(undefined);
this.setGPTPopupVis(true);
this.setGPTMode(GPTPopupMode.SUMMARY);
this.setLoading(true);
try {
const res = await gptAPICall(this.selectedText, GPTCallType.SUMMARY);
if (res) {
this.setGPTPopupText(res);
} else {
this.setGPTPopupText('Something went wrong.');
}
} catch (err) {
console.error(err);
}
this.setLoading(false);
};
/**
* Makes a GPT call to edit selected text.
* @returns nothing
*/
gptEdit = async () => {
if (!this.editorView) return;
this.setHighlightRange(undefined);
const state = this.editorView.state;
const sel = state.selection;
const fullText = state.doc.textBetween(0, this.editorView.state.doc.content.size, ' \n');
const selectedText = state.doc.textBetween(sel.from, sel.to);
this.setGPTPopupVis(true);
this.setGPTMode(GPTPopupMode.EDIT);
this.setLoading(true);
try {
let res = await gptAPICall(selectedText, GPTCallType.EDIT);
// let res = await this.mockGPTCall();
if (!res) return;
res = res.trim();
const resultText = fullText.slice(0, sel.from - 1) + res + fullText.slice(sel.to - 1);
if (res) {
this.setGPTPopupText(resultText);
this.setHighlightRange([sel.from - 1, sel.from - 1 + res.length]);
} else {
this.setGPTPopupText('Something went wrong.');
}
} catch (err) {
console.error(err);
}
this.setLoading(false);
};
/**
* Replaces text suggestions from GPT.
*/
replaceText = (replacement: string) => {
if (!this.editorView || !this.textDoc) return;
this.textDoc.text = replacement;
};
pointerDown = (e: React.PointerEvent) => {
setupMoveUpEvents(
this,
e,
(e: PointerEvent) => {
this.StartDrag(e, this._commentCont.current!);
return true;
},
returnFalse,
e => this.OnClick?.(e)
);
};
audioDown = (e: React.PointerEvent) => {
setupMoveUpEvents(this, e, returnFalse, returnFalse, e => this.OnAudio?.(e));
};
cropDown = (e: React.PointerEvent) => {
setupMoveUpEvents(
this,
e,
(e: PointerEvent) => {
this.StartCropDrag(e, this._commentCont.current!);
return true;
},
returnFalse,
e => this.OnCrop?.(e)
);
};
@action
highlightClicked = (e: React.MouseEvent) => {
this.Highlight(this.highlightColor, false, undefined, true);
AnchorMenu.Instance.fadeOut(true);
};
@action
toggleLinkPopup = (e: React.MouseEvent) => {
//ignore the potential null type error because this method cannot be called unless the user selects text and clicks the link button
//change popup visibility field to visible
this._showLinkPopup = !this._showLinkPopup;
};
@computed get highlighter() {
const button = (
<button className="antimodeMenu-button anchor-color-preview-button" title="" key="highlighter-button" onClick={this.highlightClicked}>
<div className="anchor-color-preview">
<FontAwesomeIcon icon="highlighter" size="lg" style={{ transition: 'transform 0.1s', transform: 'rotate(-45deg)' }} />
<div className="color-preview" style={{ backgroundColor: this.highlightColor }}></div>
</div>
</button>
);
const dropdownContent = (
<div className="dropdown">
<p>Change highlighter color:</p>
<div className="color-wrapper">
{this._palette.map(color => {
if (color) {
return this.highlightColor === color ? (
<button className="color-button active" key={`active ${color}`} style={{ backgroundColor: color }} onPointerDown={e => this.changeHighlightColor(color, e)}></button>
) : (
<button className="color-button" key={`inactive ${color}`} style={{ backgroundColor: color }} onPointerDown={e => this.changeHighlightColor(color, e)}></button>
);
}
})}
</div>
</div>
);
return (
<Tooltip key="highlighter" title={<div className="dash-tooltip">{'Click to Highlight'}</div>}>
<div className="anchorMenu-highlighter">
<ButtonDropdown key={'highlighter'} button={button} dropdownContent={dropdownContent} pdf={true} />
</div>
</Tooltip>
);
}
@action changeHighlightColor = (color: string, e: React.PointerEvent) => {
const col: ColorState = {
hex: color,
hsl: { a: 0, h: 0, s: 0, l: 0, source: '' },
hsv: { a: 0, h: 0, s: 0, v: 0, source: '' },
rgb: { a: 0, r: 0, b: 0, g: 0, source: '' },
oldHue: 0,
source: '',
};
e.preventDefault();
e.stopPropagation();
this.highlightColor = Utils.colorString(col);
};
/**
* Returns whether the selected text can be summarized. The goal is to have
* all selected text available to summarize but its only supported for pdf and web ATM.
* @returns Whether the GPT icon for summarization should appear
*/
canSummarize = (): boolean => {
const docs = SelectionManager.Docs();
if (docs.length > 0) {
return docs.some(doc => doc.type === 'pdf' || doc.type === 'web');
}
return false;
};
/**
* Returns whether the selected text can be edited.
* @returns Whether the GPT icon for summarization should appear
*/
canEdit = (): boolean => {
const docs = SelectionManager.Docs();
if (docs.length > 0) {
return docs.some(doc => doc.type === 'rtf');
}
return false;
};
render() {
const buttons =
this.Status === 'marquee' ? (
<>
{this.highlighter}
<Tooltip key="annotate" title={<div className="dash-tooltip">Drag to Place Annotation</div>}>
<button className="antimodeMenu-button annotate" ref={this._commentCont} onPointerDown={this.pointerDown} style={{ cursor: 'grab' }}>
<FontAwesomeIcon icon="comment-alt" size="lg" />
</button>
</Tooltip>
{/* GPT Summarize icon only shows up when text is highlighted, not on marquee selection*/}
{AnchorMenu.Instance.StartCropDrag === unimplementedFunction && this.canSummarize() && (
<Tooltip key="gpt" title={<div className="dash-tooltip">Summarize with AI</div>}>
<button className="antimodeMenu-button annotate" onPointerDown={this.gptSummarize} style={{ cursor: 'grab' }}>
<FontAwesomeIcon icon="comment-dots" size="lg" />
</button>
</Tooltip>
)}
<GPTPopup
key="gptpopup"
visible={this.showGPTPopup}
text={this.GPTpopupText}
highlightRange={this.highlightRange}
loading={this.loadingGPT}
callSummaryApi={this.gptSummarize}
callEditApi={this.gptEdit}
replaceText={this.replaceText}
mode={this.GPTMode}
/>
{AnchorMenu.Instance.OnAudio === unimplementedFunction ? null : (
<Tooltip key="annoaudiotate" title={<div className="dash-tooltip">Click to Record Annotation</div>}>
<button className="antimodeMenu-button annotate" onPointerDown={this.audioDown} style={{ cursor: 'grab' }}>
<FontAwesomeIcon icon="microphone" size="lg" />
</button>
</Tooltip>
)}
{this.canEdit() && (
<Tooltip key="gpttextedit" title={<div className="dash-tooltip">AI edit suggestions</div>}>
<button className="antimodeMenu-button annotate" onPointerDown={this.gptEdit} style={{ cursor: 'grab' }}>
<FontAwesomeIcon icon="pencil-alt" size="lg" />
</button>
</Tooltip>
)}
<Tooltip key="link" title={<div className="dash-tooltip">Find document to link to selected text</div>}>
<button className="antimodeMenu-button link" onPointerDown={this.toggleLinkPopup}>
<FontAwesomeIcon style={{ position: 'absolute', transform: 'scale(1.5)' }} icon={'search'} size="lg" />
<FontAwesomeIcon style={{ position: 'absolute', transform: 'scale(0.5)', transformOrigin: 'top left', top: 12, left: 12 }} icon={'link'} size="lg" />
</button>
</Tooltip>
<LinkPopup key="popup" showPopup={this._showLinkPopup} linkCreateAnchor={this.onMakeAnchor} />,
{AnchorMenu.Instance.StartCropDrag === unimplementedFunction ? null : (
<Tooltip key="crop" title={<div className="dash-tooltip">Click/Drag to create cropped image</div>}>
<button className="antimodeMenu-button annotate" onPointerDown={this.cropDown} style={{ cursor: 'grab' }}>
<FontAwesomeIcon icon="image" size="lg" />
</button>
</Tooltip>
)}
</>
) : (
<>
<Tooltip key="trash" title={<div className="dash-tooltip">Remove Link Anchor</div>}>
<button className="antimodeMenu-button" style={{ display: this.Delete === returnFalse ? 'none' : undefined }} onPointerDown={this.Delete}>
<FontAwesomeIcon icon="trash-alt" size="lg" />
</button>
</Tooltip>
<Tooltip key="Pin" title={<div className="dash-tooltip">Pin to Presentation</div>}>
<button className="antimodeMenu-button" style={{ display: this.PinToPres === returnFalse ? 'none' : undefined }} onPointerDown={this.PinToPres}>
<FontAwesomeIcon icon="map-pin" size="lg" />
</button>
</Tooltip>
<Tooltip key="trail" title={<div className="dash-tooltip">Show Linked Trail</div>}>
<button className="antimodeMenu-button" style={{ display: this.ShowTargetTrail === returnFalse ? 'none' : undefined }} onPointerDown={this.ShowTargetTrail}>
<FontAwesomeIcon icon="taxi" size="lg" />
</button>
</Tooltip>
<Tooltip key="toggle" title={<div className="dash-tooltip">make target visibility toggle on click</div>}>
<button
className="antimodeMenu-button"
style={{ display: this.IsTargetToggler === returnFalse ? 'none' : undefined, color: this.IsTargetToggler() ? 'black' : 'white', backgroundColor: this.IsTargetToggler() ? 'white' : 'black' }}
onPointerDown={this.MakeTargetToggle}>
<FontAwesomeIcon icon="thumbtack" size="lg" />
</button>
</Tooltip>
</>
);
return this.getElement(buttons);
}
}
|