-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidepanel.js
More file actions
424 lines (358 loc) · 10.6 KB
/
sidepanel.js
File metadata and controls
424 lines (358 loc) · 10.6 KB
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
// Initialize wiki parser
const parser = new WikiParser();
// DOM elements
const noteEditor = document.getElementById('noteEditor');
const preview = document.getElementById('preview');
const togglePreviewBtn = document.getElementById('togglePreview');
const clearNotesBtn = document.getElementById('clearNotes');
const toggleHelpBtn = document.getElementById('toggleHelp');
const helpSection = document.getElementById('helpSection');
const editorPane = document.getElementById('editorPane');
const previewPane = document.getElementById('previewPane');
// New DOM elements (will add to HTML)
let pageTitle;
let exportBtn;
let switchModeBtn;
// State
let isPreviewVisible = false;
let isHelpVisible = false;
let currentPageUrl = '';
let currentPageTitle = '';
let isPerPageMode = true; // Per-page or global notes mode
// Initialize
init();
async function init() {
// Get references to new UI elements
pageTitle = document.getElementById('pageTitle');
exportBtn = document.getElementById('exportBtn');
switchModeBtn = document.getElementById('switchModeBtn');
// Get current tab info
await updateCurrentPage();
// Load notes for current page
loadNotes();
// Listen for messages from background script
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
console.log('Side panel received message:', request);
if (request.action === 'addToNotes') {
addTextToNotes(request.text, request.type, request.url, request.pageTitle);
sendResponse({ success: true });
return true;
}
});
setupEventListeners();
}
// Get current active tab information
async function updateCurrentPage() {
try {
const [tab] = await chrome.tabs.query({ active: true, currentWindow: true });
if (tab) {
currentPageUrl = tab.url;
currentPageTitle = tab.title || 'Untitled';
if (pageTitle) {
pageTitle.textContent = isPerPageMode ? `Notes for: ${currentPageTitle}` : 'Global Notes';
}
}
} catch (e) {
console.error('Error getting current tab:', e);
currentPageUrl = 'global';
currentPageTitle = 'Global';
}
}
// Setup event listeners
function setupEventListeners() {
// Auto-save on input with debouncing
let saveTimeout;
noteEditor.addEventListener('input', () => {
clearTimeout(saveTimeout);
saveTimeout = setTimeout(() => {
saveNotes();
if (isPreviewVisible) {
updatePreview();
}
}, 500);
});
// Toggle preview
togglePreviewBtn.addEventListener('click', () => {
isPreviewVisible = !isPreviewVisible;
if (isPreviewVisible) {
previewPane.style.display = 'block';
editorPane.style.flex = '1';
previewPane.style.flex = '1';
updatePreview();
togglePreviewBtn.textContent = 'Preview ✓';
} else {
previewPane.style.display = 'none';
editorPane.style.flex = '1';
togglePreviewBtn.textContent = 'Preview';
}
});
// Clear notes
clearNotesBtn.addEventListener('click', () => {
const message = isPerPageMode
? 'Clear notes for this page?'
: 'Clear all global notes?';
if (confirm(message)) {
noteEditor.value = '';
saveNotes();
if (isPreviewVisible) {
updatePreview();
}
}
});
// Toggle help
toggleHelpBtn.addEventListener('click', () => {
isHelpVisible = !isHelpVisible;
helpSection.style.display = isHelpVisible ? 'block' : 'none';
toggleHelpBtn.textContent = isHelpVisible ? 'Hide Wiki Syntax Help' : 'Show Wiki Syntax Help';
});
// Export functionality
if (exportBtn) {
exportBtn.addEventListener('click', exportNotes);
}
// Switch between per-page and global mode
if (switchModeBtn) {
switchModeBtn.addEventListener('click', toggleMode);
}
// Keyboard shortcuts
noteEditor.addEventListener('keydown', (e) => {
// Ctrl/Cmd + S to save
if ((e.ctrlKey || e.metaKey) && e.key === 's') {
e.preventDefault();
saveNotes();
showSaveIndicator();
}
// Ctrl/Cmd + P to toggle preview
if ((e.ctrlKey || e.metaKey) && e.key === 'p') {
e.preventDefault();
togglePreviewBtn.click();
}
// Ctrl/Cmd + E to export
if ((e.ctrlKey || e.metaKey) && e.key === 'e') {
e.preventDefault();
exportNotes();
}
// Tab key for indentation
if (e.key === 'Tab') {
e.preventDefault();
const start = noteEditor.selectionStart;
const end = noteEditor.selectionEnd;
const value = noteEditor.value;
noteEditor.value = value.substring(0, start) + ' ' + value.substring(end);
noteEditor.selectionStart = noteEditor.selectionEnd = start + 2;
}
});
}
// Add text to notes from context menu
function addTextToNotes(text, type, url, pageTitle) {
console.log('Adding text to notes:', { text, type, url, pageTitle });
console.log('Current URL:', currentPageUrl, 'Per-page mode:', isPerPageMode);
let textToAdd = '';
if (type === 'heading') {
textToAdd = `\n== ${text} ==\n`;
} else if (type === 'paragraph') {
textToAdd = `\n${text}\n`;
} else if (type === 'highlight') {
textToAdd = `\n* ${text}\n`;
}
// Get cursor position or default to end
const cursorPos = noteEditor.selectionStart || noteEditor.value.length;
const currentValue = noteEditor.value;
// Insert text at cursor position
noteEditor.value = currentValue.substring(0, cursorPos) + textToAdd + currentValue.substring(cursorPos);
noteEditor.selectionStart = noteEditor.selectionEnd = cursorPos + textToAdd.length;
// Focus the editor
noteEditor.focus();
saveNotes();
showSaveIndicator('Text added!');
console.log('Text added successfully');
}
// Toggle between per-page and global mode
async function toggleMode() {
isPerPageMode = !isPerPageMode;
// Save current notes before switching
saveNotes();
// Update UI
await updateCurrentPage();
// Load notes for new mode
loadNotes();
if (switchModeBtn) {
switchModeBtn.textContent = isPerPageMode ? 'Per-Page' : 'Global';
}
}
// Get storage key based on current mode
function getStorageKey() {
if (isPerPageMode) {
return `notes_${hashCode(currentPageUrl)}`;
} else {
return 'wikiNotes_global';
}
}
// Save notes to Chrome storage
function saveNotes() {
const notes = noteEditor.value;
const storageKey = getStorageKey();
// Save the note with metadata
const noteData = {
content: notes,
url: currentPageUrl,
title: currentPageTitle,
timestamp: Date.now()
};
chrome.storage.local.set({ [storageKey]: noteData }, () => {
if (chrome.runtime.lastError) {
console.error('Error saving notes:', chrome.runtime.lastError);
}
});
// Also maintain an index of all pages with notes
updateNotesIndex();
}
// Maintain index of all pages with notes
function updateNotesIndex() {
chrome.storage.local.get(['notesIndex'], (result) => {
let index = result.notesIndex || {};
if (isPerPageMode) {
index[currentPageUrl] = {
title: currentPageTitle,
timestamp: Date.now()
};
}
chrome.storage.local.set({ notesIndex: index });
});
}
// Load notes from Chrome storage
function loadNotes() {
const storageKey = getStorageKey();
chrome.storage.local.get([storageKey], (result) => {
if (chrome.runtime.lastError) {
console.error('Error loading notes:', chrome.runtime.lastError);
return;
}
if (result[storageKey]) {
const noteData = result[storageKey];
noteEditor.value = noteData.content || '';
} else {
noteEditor.value = '';
}
if (isPreviewVisible) {
updatePreview();
}
});
}
// Export notes and highlights
async function exportNotes() {
try {
// Get current notes
const notes = noteEditor.value;
// Get highlights for current page
const [tab] = await chrome.tabs.query({ active: true, currentWindow: true });
let highlights = [];
if (tab && tab.id) {
try {
const response = await chrome.tabs.sendMessage(tab.id, { action: 'getHighlights' });
highlights = response.highlights || [];
} catch (e) {
console.log('Could not get highlights from page');
}
}
// Get all notes if in global mode
let allNotes = {};
if (!isPerPageMode) {
const result = await chrome.storage.local.get(null);
for (const key in result) {
if (key.startsWith('notes_')) {
allNotes[key] = result[key];
}
}
}
// Create export data
const exportData = {
exportDate: new Date().toISOString(),
mode: isPerPageMode ? 'per-page' : 'global',
currentPage: {
url: currentPageUrl,
title: currentPageTitle,
notes: notes,
highlights: highlights
},
allNotes: isPerPageMode ? null : allNotes
};
// Create downloadable file
const blob = new Blob([JSON.stringify(exportData, null, 2)], { type: 'application/json' });
const url = URL.createObjectURL(blob);
const filename = `wiki-notes-${isPerPageMode ? 'page' : 'all'}-${Date.now()}.json`;
// Download
await chrome.downloads.download({
url: url,
filename: filename,
saveAs: true
});
showSaveIndicator('Notes exported!');
} catch (e) {
console.error('Export error:', e);
alert('Error exporting notes: ' + e.message);
}
}
// Update preview
function updatePreview() {
const wikiText = noteEditor.value;
preview.innerHTML = parser.parse(wikiText);
}
// Show save indicator
function showSaveIndicator(message = 'Saved!') {
const indicator = document.createElement('div');
indicator.textContent = message;
indicator.style.cssText = `
position: fixed;
top: 70px;
right: 20px;
background: #2ecc71;
color: white;
padding: 8px 16px;
border-radius: 4px;
font-size: 14px;
font-weight: 500;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
z-index: 1000;
animation: slideIn 0.3s ease;
`;
document.body.appendChild(indicator);
setTimeout(() => {
indicator.style.animation = 'slideOut 0.3s ease';
setTimeout(() => indicator.remove(), 300);
}, 2000);
}
// Simple hash function for URLs
function hashCode(str) {
let hash = 0;
for (let i = 0; i < str.length; i++) {
const char = str.charCodeAt(i);
hash = ((hash << 5) - hash) + char;
hash = hash & hash;
}
return Math.abs(hash).toString(36);
}
// Add CSS animations
const style = document.createElement('style');
style.textContent = `
@keyframes slideIn {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideOut {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(100%);
opacity: 0;
}
}
`;
document.head.appendChild(style);