-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.js
235 lines (183 loc) · 8.23 KB
/
popup.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
import { GoogleGenerativeAI } from "@google/generative-ai";
import { Readability } from "@mozilla/readability";
import {marked} from 'marked';
import * as DOMPurify from 'dompurify';
marked.setOptions({
sanitize: true,
sanitizer: function(html) {
// Use a library like DOMPurify to sanitize HTML
return DOMPurify.sanitize(html);
}
});
document.addEventListener('DOMContentLoaded', function() {
const targetInput = document.getElementById('targetInput');
const searchResults = document.getElementById('searchResults');
const apiKeyInput = document.getElementById('apiKey');
const saveApiKeyButton = document.getElementById('saveApiKey');
const savePersonaKeyButton = document.getElementById('savePersona');
const summarizeButton = document.getElementById('summarizeButton');
const loadPersonasButton = document.getElementById('loadPersonasButton');
let searchTimeout;
// Load saved API key
chrome.storage.sync.get('apiKey', function(data) {
if (data.apiKey) {
apiKeyInput.value = data.apiKey;
}
});
// Save the API key
saveApiKeyButton.addEventListener('click', function() {
chrome.storage.sync.set({'apiKey': apiKeyInput.value}, function() {
alert('API Key saved');
});
});
loadPersonasButton.addEventListener('click', function(){
loadAndProcessPersonas(createOption);
});
savePersonaKeyButton.addEventListener('click', function() {
chrome.storage.sync.set({'apiKey': apiKeyInput.value}, function() {
alert('API Key saved');
});
const personaName = document.getElementById('personaName').value
const personaDescription = document.getElementById('customPrompt').value
storePersona(personaName, personaDescription);
createOption(personaName, personaDescription);
});
// TODO: add load all personas
summarizeButton.addEventListener('click', function() {
const customPrompt = document.getElementById('customPrompt').value;
const predefinedPrompt = document.getElementById('predefinedPrompts').value;
const prompt = customPrompt || predefinedPrompt;
summarizeSelectedPages(prompt);
});
summarizeButton.addEventListener('click', function() {
const customPrompt = document.getElementById('customPrompt').value;
const predefinedPrompt = document.getElementById('predefinedPrompts').value;
const prompt = customPrompt || predefinedPrompt;
summarizeSelectedPages(prompt);
});
function appendResult(url) {
const resultElement = document.createElement('div');
const checkbox = document.createElement('input');
checkbox.type = 'checkbox';
checkbox.value = url;
resultElement.appendChild(checkbox);
const text = document.createTextNode(` ${url}`);
resultElement.appendChild(text);
searchResults.appendChild(resultElement);
}
async function summarizeSelectedPages(prompt) {
// const selectedURLs = Array.from(searchResults.querySelectorAll('input[type="checkbox"]:checked'))
// .map(checkbox => checkbox.value);
// if (selectedURLs.length === 0) {
// alert('Please select at least one page to process.');
// return;
// }
let summarizedContent = '';
const summariesContainer = document.getElementById('summaries');
summariesContainer.innerHTML = 'Processing...';
let apiKey = await getApiKey();
try {
// get the content from the content field aka old search bar
const content = document.getElementById('targetInput').value
// bodyText should contain the target email insereted by the user,
// and than the prefix should be the text extracted from the json file
const summary = await getSummaryFromGeminiPro(content, apiKey, prompt); // First-level summary
summarizedContent += ` ${summary}\n\n`;
displaySummary('Results: \n', summarizedContent, summariesContainer);
} catch (error) {
console.error('Error summarizing content:', error);
summariesContainer.innerHTML += `<div>Error occurred while processing.</div>`;
}
}
function getContentFromStorage(url) {
return new Promise((resolve, reject) => {
chrome.storage.local.get(url, function(items) {
if (chrome.runtime.lastError) {
return reject(chrome.runtime.lastError);
}
resolve(items[url]);
});
});
}
async function getMainContent(htmlContent) {
const parser = new DOMParser();
const doc = parser.parseFromString(htmlContent, 'text/html');
const readability = new Readability(doc);
const article = readability.parse();
return article.textContent; // or article.content for HTML content
}
async function getSummaryFromGeminiPro(content, apiKey, prefix) {
const genAI = new GoogleGenerativeAI(apiKey);
const model = genAI.getGenerativeModel({ model: "gemini-pro" });
const fullContent = prefix + content;
try {
const result = await model.generateContent(fullContent);
const response = await result.response;
return await response.text();
} catch (error) {
console.error('Error generating processing:', error);
throw new Error('Processing failed');
}
}
function getApiKey() {
return new Promise((resolve, reject) => {
chrome.storage.sync.get('apiKey', function(data) {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
} else {
resolve(data.apiKey);
}
});
});
}
function displaySummary(url, summary, container) {
const summaryElement = document.createElement('div');
summaryElement.innerHTML = `<b>Processing for ${url}:</b> ${marked(summary)}`;
container.appendChild(summaryElement);
}
//
function storePersona(persona, personaContent) {
// Load existing personas
chrome.storage.local.get("personas", function(result) {
if (chrome.runtime.lastError) {
console.error("Error loading personas:", chrome.runtime.lastError.message);
return;
}
// Extract existing personas or initialize an empty object
const existingPersonas = result.personas || {};
// Append the new persona
existingPersonas[persona] = personaContent;
// Store combined personas
chrome.storage.local.set({ "personas": existingPersonas }, function() {
if (chrome.runtime.lastError) {
console.error("Error storing personas:", chrome.runtime.lastError.message);
} else {
console.log("Persona stored successfully:", persona);
}
});
});
}
//
// Loading all the saved personas
function loadAndProcessPersonas(processPersonaFunction) {
chrome.storage.local.get("personas", function(result) {
if (chrome.runtime.lastError) {
console.error("Error loading personas:", chrome.runtime.lastError.message);
return;
}
const personas = result.personas || {};
// Iterate through each persona and call the processPersonaFunction for each
Object.keys(personas).forEach(personaName => {
const personaDescription = personas[personaName];
processPersonaFunction(personaName, personaDescription);
});
});
}
function createOption(personaName, personaContent){
let select = document.getElementById('predefinedPrompts');
let opt = document.createElement('option');
opt.value = personaContent;
opt.innerHTML = personaName;
select.appendChild(opt);
}
});