-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.js
2057 lines (1679 loc) · 55.5 KB
/
content.js
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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Create a cache object to store audio URLs
const audioCache = {};
// Function to fetch audio
const fetchAudio = (openAITTSApiKey, openAITTSModelName, openAITTSVoice, text) => {
// Check if audio URL for the given text is already cached
if (audioCache[text]) {
playAudio(audioCache[text]);
} else {
// Fetch audio from API
fetch('https://api.openai.com/v1/audio/speech', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${openAITTSApiKey}`
},
body: JSON.stringify({
"model": openAITTSModelName,
"input": text,
"voice": openAITTSVoice
})
})
.then(response => {
if (!response.ok) {
throw new Error('Failed to fetch from API');
}
return response.blob(); // Assuming the API returns audio data as a Blob
})
.then(audioBlob => {
// Convert audio Blob to URL
const audioUrl = URL.createObjectURL(audioBlob);
// Cache the audio URL
audioCache[text] = audioUrl;
// Play the audio
playAudio(audioUrl);
})
.catch(error => {
alert('Error:', error);
});
}
};
// Function to play audio
const playAudio = (audioUrl) => {
// Create an <audio> element to play the audio
const audioElement = new Audio(audioUrl);
// Play the audio
audioElement.play();
};
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
// if (request.type === 'getSelectedText') {
// const selectedText = window.getSelection().toString();
// sendResponse({ selectedText: selectedText });
// }
if (request.type === 'pronounce'){
chrome.storage.sync.get(['openAITTSApiKey', 'openAITTSModelName', 'openAITTSVoice'], (items) => {
const openAITTSApiKey = items.openAITTSApiKey;
const openAITTSModelName = items.openAITTSModelName;
const openAITTSVoice = items.openAITTSVoice;
try{
window.speechSynthesis.cancel();
let audioElement;
if (audioElement != null && typeof audioElement != 'undefined'){
audioElement.pause();
}
}catch{}
if (!openAITTSApiKey || !openAITTSModelName || !openAITTSVoice || request.selectionText.length > 100){
// Create a new SpeechSynthesisUtterance object
var utterance = new SpeechSynthesisUtterance();
// Set the text that you want to pronounce
utterance.text = request.selectionText;
// Use the speech synthesis API to speak the utterance
window.speechSynthesis.speak(utterance);
}
else{
fetchAudio(openAITTSApiKey, openAITTSModelName, openAITTSVoice, request.selectionText.trim());
}
});
// Keep the message channel open for the async response
sendResponse({status: 'OK'});
}
// Listen for messages from the context menu
if (request.type === 'simple-chat') {
let modal = document.querySelector('.my-extension-modal');
// Create modal if it doesn't exist
if (!modal) {
modal = createModal(request);
document.body.appendChild(modal);
}
chrome.runtime.sendMessage({ type: 'getTabItems', itemNames: ['lastSelectedCommand', 'chatMessages'] }, (storageResponse) => {
const lastSelectedCommand = storageResponse.lastSelectedCommand;
modal.shadowRoot.querySelector('.title-sub').innerText = `[${lastSelectedCommand}]`;
})
if (request.isNewChat){
clearAllMessagesHtml();
}
// Show the modal
modal.style.display = 'flex';
const maximizeButton = modal.shadowRoot.querySelector('.maximize-dialog-button');
maximizeButton.click();
modal.shadowRoot.querySelector('.chat-input').focus();
// Keep the message channel open for the async response
sendResponse({status: 'OK'});
}
// Listen for messages from the context menu
if (request.type === 'summarize' || request.type === 'translate' || request.type === 'correct-english' || request.type === 'teach-me') {
//console.log('Message received in content.js:', request);
// Forward the message to background.js
// Show loading indicator
showLoadingIndicator();
chrome.runtime.sendMessage(request, (response) => {
// Send the response back to the context menu handler
//sendResponse(response);
// Hide loading indicator when response is received
hideLoadingIndicator();
// new session
if(request.isNewChat){
clearAllMessagesHtml();
}
chrome.runtime.sendMessage({ type: 'getTabItems', itemNames: ['defaultMessages'] }, storageResponse => {
//console.log(storageResponse.value); // outputs "bar"
const defaultMessages = storageResponse.defaultMessages;
if (response.error) {
//console.error(response.error);
if (defaultMessages.length > 0){
defaultMessages.forEach((msg, idx)=>{
addMessageIntoModal(request, msg.role, msg.content, true, false);
})
}
addMessageIntoModal(request, 'assistant', response.error, false, true);
// Handle error, maybe show an error message on the page
} else {
// Display the result on the webpage
const resultText = response.result;
//console.log(resultText);
// *** CHOOSE ONE OF THESE METHODS TO DISPLAY THE RESULT ***
// Method 1: Alert (least desirable - use other methods if possible)
// alert(resultText);
// Method 2: Create a new element
// const resultDiv = document.createElement('div');
// resultDiv.textContent = resultText;
// document.body.appendChild(resultDiv);
// Method 3: Update an existing element (if you have a suitable one)
// const displayElement = document.querySelector('.my-display-element');
// if (displayElement) {
// displayElement.textContent = resultText;
// }
// Method 4: show modal
if (defaultMessages.length > 0){
defaultMessages.forEach((msg, idx)=>{
addMessageIntoModal(request, msg.role, msg.content, true, false);
})
}
addMessageIntoModal(request, 'assistant', response.result, false, false);
}
});
});
// Keep the message channel open for the async response
sendResponse({status: 'OK'});
}
});
function clearAllMessagesHtml(){
let modal = document.querySelector('.my-extension-modal');
if (!modal){
return;
}
const container = modal.shadowRoot.querySelector('.chat-messages')
container.innerHTML = '';
}
function scrollToLastMessage() {
let modal = document.querySelector('.my-extension-modal');
if (!modal){
return;
}
const container = modal.shadowRoot.querySelector('.chat-messages')
// Select all div elements with the class "chat-message"
const chatMessages = container.querySelectorAll('.chat-message');
// Scroll to the last chat message if any exist
if (chatMessages.length > 0) {
const lastChatMessage = chatMessages[chatMessages.length - 1];
lastChatMessage.scrollIntoView({ behavior: 'smooth', block: 'end' });
}
}
function printChat(elem)
{
var mywindow = window.open('', 'PRINT', 'height=700,width=900');
mywindow.document.write('<html><head><title></title>');
mywindow.document.write(`<style>
@media print
{
.no-print, .no-print *
{
display: none !important;
}
.only-print, .only-print *
{
display: block !important;
}
html {
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
}
body {
margin: 0;
}
main {
display: block;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
pre {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
a {
background-color: transparent;
}
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
b,
strong {
font-weight: bolder;
}
code,
kbd,
samp {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
img {
border-style: none;
}
button,
input,
optgroup,
select,
textarea {
font-family: inherit; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
fieldset {
padding: 0.35em 0.75em 0.625em;
}
legend {
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
}
progress {
vertical-align: baseline;
}
textarea {
overflow: auto;
}
[type="checkbox"],
[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
}
details {
display: block;
}
summary {
display: list-item;
}
template {
display: none;
}
[hidden] {
display: none;
}
body {
font-family: 'Roboto', sans-serif;
font-size: 15px;
}
table {
border-collapse: collapse;
padding: 4px;
width: 100%;
table-layout: fixed;
}
table td, table th {
border: 1px solid orange;
padding: 4px;
}
table td p, table th p {
padding: 0;
margin: 0;
}
pre{
padding: 10px;
}
pre, code{
background: #fff;
overflow-x: visible;
color: #3f3f3f;
}
.chat-messages {
overflow-y: visible;
min-height: 500px;
margin: 20px;
max-height: 60vh;
padding-bottom: 50px;
}
.chat-message {
padding: 10px;
border-radius: 8px;
position: relative;
word-break: break-word;
width: 100%;
min-width: 120px;
margin-bottom: 10px;
clear:both;
font: 1.0625rem/1.5 Segoe UI,"Segoe UI Web Regular","Segoe UI Regular WestEuropean","Segoe UI",Tahoma,Arial,Roboto,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
color: #333 !important;
font-size: 16px;
line-height: 28px;
}
.chat-message ul, .chat-message li{
font: 1.0625rem/1.5 Segoe UI,"Segoe UI Web Regular","Segoe UI Regular WestEuropean","Segoe UI",Tahoma,Arial,Roboto,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size: 16px;
line-height: 28px;
}
.chat-message.user-message {
background-color: #f2f2f2;
float:right;
width: auto;
margin-right:20px;
max-width: 80%;
clear: both;
border-right: solid 4px #ccc;
}
.chat-message.assistant-message {
background-color: #e0f2f1;
text-align: left;
float:left;
width: 80%;
clear: both;
border-left: solid 4px #ccc;
}
.chat-message.error-message{
border: solid 1px #ffa9a9;
background: #ffeeee;
clear: both;
border: dashed 42px #ccc;
}
.chat-message.default-message{
display: none;
}
.chat-message p {
margin: 0;
font: 1.0625rem/1.5 Segoe UI,"Segoe UI Web Regular","Segoe UI Regular WestEuropean","Segoe UI",Tahoma,Arial,Roboto,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size: 16px;
line-height: 28px;
}
.chat-message code {
background-color: #fff;
border-radius: 3px;
font-family: monospace;
font-size: 14px;
}
.chat-message .message-author{
font: 1.0625rem/1.5 Segoe UI,"Segoe UI Web Regular","Segoe UI Regular WestEuropean","Segoe UI",Tahoma,Arial,Roboto,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-weight: bold;
color: #5da0be;
}
</style>`);
mywindow.document.write('</head><body>');
mywindow.document.write(elem.innerHTML);
mywindow.document.write('</body></html>');
mywindow.document.close(); // necessary for IE >= 10
mywindow.focus(); // necessary for IE >= 10*/
mywindow.print();
mywindow.close();
return true;
}
function findAncestor (el, cls) {
while ((el = el.parentElement) && !el.classList.contains(cls));
return el;
}
function findNearestSiblingIndexWithClassUp(array, index, className) {
// Check if the provided index is within the valid range
if (index < 0 || index >= array.length) {
//console.error("Index out of range");
return -1;
}
// Start iterating backward from the provided index
for (let i = index - 1; i >= 0; i--) {
if (array[i] !== undefined) {
// Check if the sibling element contains the specified class name
if (array[i].classList && array[i].classList.contains(className)) {
return i;
}
}
}
// If no sibling with the specified class name is found, return null
return -1;
}
function copyTextToClipboard(text) {
navigator.clipboard.writeText(text)
.then(() => {
//console.log('Text copied to clipboard:', text);
})
.catch(err => {
//console.error('Error copying text:', err);
});
}
function removeAllButMessageActions(selectedMessageElm) {
let children = selectedMessageElm.children;
for (let i = children.length - 1; i >= 0; i--) {
if (!children[i].classList.contains('message-actions')) {
selectedMessageElm.removeChild(children[i]);
}
}
}
function addMessageIntoModal(request, role, rawMessage, hideDefaultMessage, isError) {
let modal = document.querySelector('.my-extension-modal');
// Create modal if it doesn't exist
if (!modal) {
modal = createModal(request);
document.body.appendChild(modal);
}
chrome.runtime.sendMessage({ type: 'getTabItems', itemNames: ['lastSelectedCommand', 'chatMessages'] }, (storageResponse) => {
const lastSelectedCommand = storageResponse.lastSelectedCommand;
modal.shadowRoot.querySelector('.title-sub').innerText = `[${lastSelectedCommand}]`;
})
// Convert Markdown to HTML
//const converter = new showdown.Converter();
// var converter = new showdown.Converter({extensions: ['table', 'youtube', 'prettify']});
// const htmlContent = converter.makeHtml(rawMessage);
// Configure marked with the breaks option
marked.setOptions({
breaks: true // Enable GFM line breaks
});
const htmlContent = marked.parse(rawMessage);
const newMessage = document.createElement('div');
if (hideDefaultMessage){
newMessage.classList.add("default-message");
newMessage.classList.add("no-print");
}
newMessage.classList.add("chat-message");
newMessage.classList.add(`${role}-message`);
if (isError){
newMessage.classList.add(`error-message`);
}
const msgAuthor = document.createElement('div');
msgAuthor.classList.add('message-author');
msgAuthor.classList.add("only-print");
let author = "";
switch (role){
case "user":
author = "User:"
break;
case "assistant":
author = "AI:"
break;
case "system":
author = "System:"
break;
}
msgAuthor.innerHTML = author;
newMessage.appendChild(msgAuthor);
const msgBody = document.createElement('div');
msgBody.classList.add('message-body');
msgBody.innerHTML = htmlContent;
newMessage.appendChild(msgBody);
const msgActions = document.createElement('div');
msgActions.classList.add('message-actions');
msgActions.classList.add('no-print');
// // Attach mousemove event listener
// newMessage.addEventListener('mousemove', function(event) {
// // Calculate mouse position relative to newMessage
// const mouseX = event.clientX;
// const mouseY = event.clientY;
// const rect = newMessage.getBoundingClientRect();
// const offsetX = mouseX - rect.left;
// const offsetY = mouseY - rect.top;
// // Calculate the maximum allowable position for the action div
// const maxLeft = rect.width - msgActions.offsetWidth;
// const maxTop = rect.height - msgActions.offsetHeight;
// // Calculate the adjusted position for the action div
// let adjustedLeft = offsetX + 20;
// let adjustedTop = offsetY + 20;
// // Ensure the action div stays inside the newMessage
// adjustedLeft = Math.min(adjustedLeft, maxLeft);
// adjustedTop = Math.min(adjustedTop, maxTop);
// // Position message-actions
// msgActions.style.left = adjustedLeft + 'px';
// msgActions.style.top = adjustedTop + 'px';
// // Show message-actions
// msgActions.style.display = 'block';
// });
// // Hide message-actions when mouse moves out
// newMessage.addEventListener('mouseout', function(event) {
// msgActions.style.display = 'none';
// });
// const actionEditButton = document.createElement('button');
// actionEditButton.classList.add("edit-button");
// actionEditButton.textContent = "Edit";
const actionRetryButton = document.createElement('button');
actionRetryButton.classList.add("retry-button");
actionRetryButton.textContent = "Retry";
actionRetryButton.addEventListener('click', (e) => {
const messagesArray = Array.from(modal.shadowRoot.querySelector('.chat-messages').children);
let selectedMessageElm = findAncestor(e.target, 'chat-message');
let selectedIndex = messagesArray.indexOf(selectedMessageElm);
let newestUserMessageIndex = selectedIndex;
if (selectedMessageElm.classList.contains('assistant-message')){
if (selectedIndex == 0)
{
newestUserMessageIndex = newestUserMessageIndex - 1;
}
else{
newestUserMessageIndex = findNearestSiblingIndexWithClassUp(modal.shadowRoot.querySelector('.chat-messages').children, selectedIndex, 'user-message');
}
}
if (newestUserMessageIndex >= 0){
if (messagesArray.length > 0){
for(var i = modal.shadowRoot.querySelector('.chat-messages').children.length - 1; i >= 0 ; i--){
if (i >= (newestUserMessageIndex + 1)){
modal.shadowRoot.querySelector('.chat-messages').children[i].remove();
}
else{
break;
}
}
}
}
chrome.runtime.sendMessage({ type: 'getTabItems', itemNames: ['lastSelectedCommand', 'chatMessages'] }, (storageResponse) => {
const memoryMessages = storageResponse.chatMessages;
const lastSelectedCommand = storageResponse.lastSelectedCommand;
if (messagesArray.length > 0){
memoryMessages.splice(newestUserMessageIndex + 1, memoryMessages.length - (newestUserMessageIndex + 1));
}
// if (request.type === 'simple-chat'){
// // simple chat has no predefined prompt
// if (messagesArray.length > 0){
// memoryMessages.splice(newestUserMessageIndex + 1, memoryMessages.length - (newestUserMessageIndex + 1));
// }
// }
// else{
// // for features that already has pre-defined prompt
// if (messagesArray.length > 0 && (newestUserMessageIndex + 2) >= 0){
// memoryMessages.splice(newestUserMessageIndex + 2 + 1, memoryMessages.length - (newestUserMessageIndex + 2 + 1));
// }
// }
showLoadingIndicator();
chrome.runtime.sendMessage({
type: lastSelectedCommand,
messages: memoryMessages
}, (response) => {
// Hide loading indicator when response is received
hideLoadingIndicator();
if (newestUserMessageIndex < 0){
selectedMessageElm.remove();
}
if (response.error) {
// update message list
chrome.runtime.sendMessage({ type: 'setTabItems', itemNames: {chatMessages: memoryMessages} }, (res) => {});
//console.error(response.error);
addMessageIntoModal(request, 'assistant', response.error, false, true);
// Handle error, maybe show an error message on the page
} else {
// remove last assistant response and replace new one
memoryMessages.push({
role: "assistant",
content: response.result
});
//console.log(memoryMessages);
// update message list
chrome.runtime.sendMessage({ type: 'setTabItems', itemNames: {chatMessages: memoryMessages} }, (res) => {});
// Display the result on the webpage
addMessageIntoModal(request, 'assistant', response.result, false, false);
}
});
});
});
// const actionDeleteButton = document.createElement('button');
// actionDeleteButton.classList.add("delete-button");
// actionDeleteButton.textContent = "Delete";
const actionEditButton = document.createElement('button');
actionEditButton.classList.add("edit-button");
actionEditButton.textContent = "Edit";
actionEditButton.addEventListener('click', e=>{
const chatMessagesContainer = modal.shadowRoot.querySelector('.chat-messages');
const chatMessageElements = chatMessagesContainer.children;
let selectedMessageElm = findAncestor(e.target, 'chat-message');
let messageBodyElm = selectedMessageElm.querySelector('.message-body');
let selectedIndex = Array.from(chatMessageElements).indexOf(selectedMessageElm);
if (actionEditButton.innerText == "Edit"){
selectedMessageElm.classList.add("edit-chat-message");
// Create a new input textbox element
let inputTextbox = document.createElement('textarea');
inputTextbox.addEventListener("keydown", function (event) {
event.stopPropagation();
});
inputTextbox.placeholder = "Type your message here...";
inputTextbox.rows = 4;
inputTextbox.style.width = '100%';
inputTextbox.style.minHeight = '100px';
inputTextbox.value = rawMessage.replace(/<br\s*\/?>/ig, '\n');
messageBodyElm.innerHTML = "";
// Append the input textbox to the chat-message element
messageBodyElm.appendChild(inputTextbox);
inputTextbox.focus();
if (selectedMessageElm.classList.contains('assistant-message')){
role = "assistant";
actionEditButton.textContent = "Update";
}
else if (selectedMessageElm.classList.contains('user-message')){
role = "user";
actionEditButton.textContent = "Update";
}
}
else{
selectedMessageElm.classList.remove("edit-chat-message");
marked.setOptions({
breaks: true // Enable GFM line breaks
});
let textarea = messageBodyElm.querySelector('textarea');
const newMessage = textarea.value;
rawMessage = newMessage;
const htmlContent = marked.parse(newMessage);
actionEditButton.textContent = "Edit";
//removeAllButMessageActions(selectedMessageElm);
messageBodyElm.innerHTML = htmlContent;
// Check if selectedIndex is within bounds
if (selectedIndex >= 0 && selectedIndex < chatMessageElements.length) {
// Remove all elements after selectedIndex
for (let i = chatMessageElements.length - 1; i > selectedIndex; i--) {
chatMessagesContainer.removeChild(chatMessageElements[i]);
}
} else {
console.error('Invalid index to remove');
}
// trigger send button
chrome.runtime.sendMessage({ type: 'getTabItems', itemNames: ['lastSelectedCommand', 'chatMessages'] }, (storageResponse) => {
let lastSelectedCommand = storageResponse.lastSelectedCommand;
let memoryMessages = storageResponse.chatMessages;
let role = "user";
if (selectedMessageElm.classList.contains('assistant-message')){
role = "assistant";
}
else if (selectedMessageElm.classList.contains('user-message')){
role = "user";
}
// Remove all elements after selectedIndex
for (let i = memoryMessages.length - 1; i >= selectedIndex; i--) {
memoryMessages.splice(i, 1);
}
memoryMessages.push({
role: role,
content: newMessage
});
// save new list messages into memory
chrome.runtime.sendMessage({ type: 'setTabItems', itemNames: {chatMessages: memoryMessages} }, (res) => {});
});
}
});
const actionCopyButton = document.createElement('button');
actionCopyButton.classList.add("copy-button");
actionCopyButton.textContent = "Copy";
actionCopyButton.addEventListener('click', e=>{
let selectedMessageElm = findAncestor(e.target, 'chat-message');
let bodyMessageElm = selectedMessageElm.querySelector('.message-body');
//let selectedIndex = messagesArray.indexOf(selectedMessageElm);
copyTextToClipboard(bodyMessageElm.textContent);
});
msgActions.appendChild(actionEditButton);
msgActions.appendChild(actionRetryButton);
// msgActions.appendChild(actionDeleteButton);
msgActions.appendChild(actionCopyButton);
newMessage.appendChild(msgActions);
modal.shadowRoot.querySelector('.chat-messages').appendChild(newMessage);
// Show the modal
modal.style.display = 'flex';
const maximizeButton = modal.shadowRoot.querySelector('.maximize-dialog-button');
maximizeButton.click();
scrollToLastMessage();
modal.shadowRoot.querySelector('.chat-input').focus();
}
function createModal(request) {
const modal = document.createElement('div');
modal.classList.add('my-extension-modal');
// To prevent the dialog from closing when clicking inside it, stop propagation of the click event
modal.addEventListener('click', function(event) {
event.stopPropagation();
});
// Create a shadow root
const shadow = modal.attachShadow({ mode: 'open' });
// Add styles and content to the shadow root
shadow.innerHTML = `
<style>
html {
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
}
body {
margin: 0;
}
main {
display: block;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
pre {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
a {
background-color: transparent;
}
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
b,
strong {
font-weight: bolder;
}
code,
kbd,
samp {
font-family: monospace, monospace; /* 1 */