mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-09 04:29:09 +03:00
chore: refactor
This commit is contained in:
628
src/popup/PopupController.ts
Normal file
628
src/popup/PopupController.ts
Normal file
@@ -0,0 +1,628 @@
|
||||
import { HighlightList, HighlightWord, ExportData } from '../types.js';
|
||||
import { StorageService } from '../services/StorageService.js';
|
||||
import { MessageService } from '../services/MessageService.js';
|
||||
import { DOMUtils } from '../utils/DOMUtils.js';
|
||||
|
||||
export class PopupController {
|
||||
private lists: HighlightList[] = [];
|
||||
private currentListIndex = 0;
|
||||
private selectedCheckboxes = new Set<number>();
|
||||
private globalHighlightEnabled = true;
|
||||
private wordSearchQuery = '';
|
||||
private matchCaseEnabled = false;
|
||||
private matchWholeEnabled = false;
|
||||
private exceptionsList: string[] = [];
|
||||
private currentTabHost = '';
|
||||
private sectionStates: Record<string, boolean> = {};
|
||||
|
||||
async initialize(): Promise<void> {
|
||||
await this.loadData();
|
||||
await this.getCurrentTab();
|
||||
this.loadSectionStates();
|
||||
this.initializeSectionStates();
|
||||
this.setupEventListeners();
|
||||
this.render();
|
||||
}
|
||||
|
||||
private async loadData(): Promise<void> {
|
||||
const data = await StorageService.get();
|
||||
this.lists = data.lists || [];
|
||||
this.globalHighlightEnabled = data.globalHighlightEnabled ?? true;
|
||||
this.matchCaseEnabled = data.matchCaseEnabled ?? false;
|
||||
this.matchWholeEnabled = data.matchWholeEnabled ?? false;
|
||||
this.exceptionsList = data.exceptionsList || [];
|
||||
|
||||
if (this.lists.length === 0) {
|
||||
this.lists.push({
|
||||
id: Date.now(),
|
||||
name: chrome.i18n.getMessage('default_list_name') || 'Default List',
|
||||
background: '#ffff00',
|
||||
foreground: '#000000',
|
||||
active: true,
|
||||
words: []
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
private async getCurrentTab(): Promise<void> {
|
||||
try {
|
||||
const [tab] = await chrome.tabs.query({ active: true, currentWindow: true });
|
||||
if (tab?.url) {
|
||||
const url = new URL(tab.url);
|
||||
this.currentTabHost = url.hostname;
|
||||
}
|
||||
} catch (e) {
|
||||
console.warn('Could not get current tab:', e);
|
||||
}
|
||||
}
|
||||
|
||||
private loadSectionStates(): void {
|
||||
const saved = localStorage.getItem('goose-highlighter-section-states');
|
||||
if (saved) {
|
||||
try {
|
||||
this.sectionStates = JSON.parse(saved);
|
||||
} catch {
|
||||
this.sectionStates = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private saveSectionStates(): void {
|
||||
localStorage.setItem('goose-highlighter-section-states', JSON.stringify(this.sectionStates));
|
||||
}
|
||||
|
||||
private initializeSectionStates(): void {
|
||||
Object.keys(this.sectionStates).forEach(sectionName => {
|
||||
const section = document.querySelector(`[data-section="${sectionName}"]`);
|
||||
if (section && this.sectionStates[sectionName]) {
|
||||
section.classList.add('collapsed');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private setupEventListeners(): void {
|
||||
this.setupSectionToggles();
|
||||
this.setupListManagement();
|
||||
this.setupWordManagement();
|
||||
this.setupSettings();
|
||||
this.setupExceptions();
|
||||
this.setupImportExport();
|
||||
this.setupTheme();
|
||||
}
|
||||
|
||||
private setupSectionToggles(): void {
|
||||
document.querySelectorAll('.collapse-toggle').forEach(button => {
|
||||
button.addEventListener('click', (e) => {
|
||||
e.stopPropagation();
|
||||
const targetSection = (button as HTMLElement).getAttribute('data-target');
|
||||
if (targetSection) this.toggleSection(targetSection);
|
||||
});
|
||||
});
|
||||
|
||||
document.querySelectorAll('.section-header').forEach(header => {
|
||||
header.addEventListener('click', (e) => {
|
||||
if ((e.target as HTMLElement).tagName === 'BUTTON' ||
|
||||
(e.target as HTMLElement).tagName === 'INPUT' ||
|
||||
(e.target as HTMLElement).closest('button')) {
|
||||
return;
|
||||
}
|
||||
const section = (header as HTMLElement).closest('.section');
|
||||
const sectionName = section?.getAttribute('data-section');
|
||||
if (sectionName) this.toggleSection(sectionName);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
private toggleSection(sectionName: string): void {
|
||||
const section = document.querySelector(`[data-section="${sectionName}"]`);
|
||||
if (!section) return;
|
||||
|
||||
const isCollapsed = section.classList.contains('collapsed');
|
||||
|
||||
if (isCollapsed) {
|
||||
section.classList.remove('collapsed');
|
||||
this.sectionStates[sectionName] = false;
|
||||
} else {
|
||||
section.classList.add('collapsed');
|
||||
this.sectionStates[sectionName] = true;
|
||||
}
|
||||
|
||||
this.saveSectionStates();
|
||||
}
|
||||
|
||||
private setupListManagement(): void {
|
||||
const listSelect = document.getElementById('listSelect') as HTMLSelectElement;
|
||||
const listName = document.getElementById('listName') as HTMLInputElement;
|
||||
const listBg = document.getElementById('listBg') as HTMLInputElement;
|
||||
const listFg = document.getElementById('listFg') as HTMLInputElement;
|
||||
const listActive = document.getElementById('listActive') as HTMLInputElement;
|
||||
|
||||
listSelect.addEventListener('change', () => {
|
||||
this.selectedCheckboxes.clear();
|
||||
this.currentListIndex = +listSelect.value;
|
||||
this.renderWords();
|
||||
this.updateListForm();
|
||||
});
|
||||
|
||||
listName.addEventListener('input', () => {
|
||||
this.lists[this.currentListIndex].name = listName.value;
|
||||
this.save();
|
||||
});
|
||||
|
||||
listBg.addEventListener('input', () => {
|
||||
this.lists[this.currentListIndex].background = listBg.value;
|
||||
this.save();
|
||||
});
|
||||
|
||||
listFg.addEventListener('input', () => {
|
||||
this.lists[this.currentListIndex].foreground = listFg.value;
|
||||
this.save();
|
||||
});
|
||||
|
||||
listActive.addEventListener('change', () => {
|
||||
this.lists[this.currentListIndex].active = listActive.checked;
|
||||
this.save();
|
||||
});
|
||||
|
||||
document.getElementById('newListBtn')?.addEventListener('click', () => {
|
||||
this.lists.push({
|
||||
id: Date.now(),
|
||||
name: chrome.i18n.getMessage('new_list_name') || 'New List',
|
||||
background: '#ffff00',
|
||||
foreground: '#000000',
|
||||
active: true,
|
||||
words: []
|
||||
});
|
||||
this.currentListIndex = this.lists.length - 1;
|
||||
this.save();
|
||||
});
|
||||
|
||||
document.getElementById('deleteListBtn')?.addEventListener('click', () => {
|
||||
if (confirm(chrome.i18n.getMessage('confirm_delete_list') || 'Delete this list?')) {
|
||||
this.lists.splice(this.currentListIndex, 1);
|
||||
this.currentListIndex = Math.max(0, this.currentListIndex - 1);
|
||||
this.save();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private setupWordManagement(): void {
|
||||
const bulkPaste = document.getElementById('bulkPaste') as HTMLTextAreaElement;
|
||||
const wordList = document.getElementById('wordList') as HTMLDivElement;
|
||||
const wordSearch = document.getElementById('wordSearch') as HTMLInputElement;
|
||||
|
||||
document.getElementById('addWordsBtn')?.addEventListener('click', () => {
|
||||
const words = bulkPaste.value.split(/\n+/).map(w => w.trim()).filter(Boolean);
|
||||
const list = this.lists[this.currentListIndex];
|
||||
for (const w of words) {
|
||||
list.words.push({
|
||||
wordStr: w,
|
||||
background: '',
|
||||
foreground: '',
|
||||
active: true
|
||||
});
|
||||
}
|
||||
bulkPaste.value = '';
|
||||
this.save();
|
||||
});
|
||||
|
||||
this.setupWordListEvents(wordList);
|
||||
this.setupWordSelection();
|
||||
|
||||
wordSearch.addEventListener('input', (e) => {
|
||||
this.wordSearchQuery = (e.target as HTMLInputElement).value;
|
||||
this.renderWords();
|
||||
});
|
||||
}
|
||||
|
||||
private setupWordListEvents(wordList: HTMLDivElement): void {
|
||||
wordList.addEventListener('change', (e) => {
|
||||
const target = e.target as HTMLInputElement;
|
||||
if (target.type === 'checkbox') {
|
||||
if (target.dataset.index != null) {
|
||||
const index = +target.dataset.index;
|
||||
if (target.checked) {
|
||||
this.selectedCheckboxes.add(index);
|
||||
} else {
|
||||
this.selectedCheckboxes.delete(index);
|
||||
}
|
||||
this.renderWords();
|
||||
} else if (target.dataset.activeEdit != null) {
|
||||
const index = +target.dataset.activeEdit;
|
||||
this.lists[this.currentListIndex].words[index].active = target.checked;
|
||||
this.save();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
wordList.addEventListener('input', (e) => {
|
||||
const target = e.target as HTMLInputElement;
|
||||
const index = +(target.dataset.wordEdit ?? target.dataset.bgEdit ?? target.dataset.fgEdit ?? -1);
|
||||
if (index === -1) return;
|
||||
|
||||
const word = this.lists[this.currentListIndex].words[index];
|
||||
if (target.dataset.wordEdit != null) word.wordStr = target.value;
|
||||
if (target.dataset.bgEdit != null) word.background = target.value;
|
||||
if (target.dataset.fgEdit != null) word.foreground = target.value;
|
||||
|
||||
this.save();
|
||||
});
|
||||
|
||||
let scrollTimeout: number;
|
||||
wordList.addEventListener('scroll', () => {
|
||||
if (scrollTimeout) return;
|
||||
scrollTimeout = window.setTimeout(() => {
|
||||
requestAnimationFrame(() => this.renderWords());
|
||||
scrollTimeout = 0;
|
||||
}, 16);
|
||||
});
|
||||
}
|
||||
|
||||
private setupWordSelection(): void {
|
||||
document.getElementById('selectAllBtn')?.addEventListener('click', () => {
|
||||
const list = this.lists[this.currentListIndex];
|
||||
list.words.forEach((_, index) => {
|
||||
this.selectedCheckboxes.add(index);
|
||||
});
|
||||
this.renderWords();
|
||||
});
|
||||
|
||||
document.getElementById('deselectAllBtn')?.addEventListener('click', () => {
|
||||
this.selectedCheckboxes.clear();
|
||||
this.renderWords();
|
||||
});
|
||||
|
||||
document.getElementById('deleteSelectedBtn')?.addEventListener('click', () => {
|
||||
if (confirm(chrome.i18n.getMessage('confirm_delete_words') || 'Delete selected words?')) {
|
||||
const list = this.lists[this.currentListIndex];
|
||||
const toDelete = Array.from(this.selectedCheckboxes);
|
||||
this.lists[this.currentListIndex].words = list.words.filter((_, i) => !toDelete.includes(i));
|
||||
this.selectedCheckboxes.clear();
|
||||
this.save();
|
||||
this.renderWords();
|
||||
}
|
||||
});
|
||||
|
||||
document.getElementById('enableSelectedBtn')?.addEventListener('click', () => {
|
||||
const list = this.lists[this.currentListIndex];
|
||||
this.selectedCheckboxes.forEach(index => {
|
||||
list.words[index].active = true;
|
||||
});
|
||||
this.save();
|
||||
this.renderWords();
|
||||
});
|
||||
|
||||
document.getElementById('disableSelectedBtn')?.addEventListener('click', () => {
|
||||
const list = this.lists[this.currentListIndex];
|
||||
this.selectedCheckboxes.forEach(index => {
|
||||
list.words[index].active = false;
|
||||
});
|
||||
this.save();
|
||||
this.renderWords();
|
||||
});
|
||||
}
|
||||
|
||||
private setupSettings(): void {
|
||||
const globalToggle = document.getElementById('globalHighlightToggle') as HTMLInputElement;
|
||||
const matchCase = document.getElementById('matchCase') as HTMLInputElement;
|
||||
const matchWhole = document.getElementById('matchWhole') as HTMLInputElement;
|
||||
|
||||
globalToggle.addEventListener('change', () => {
|
||||
this.globalHighlightEnabled = globalToggle.checked;
|
||||
this.updateGlobalToggleState();
|
||||
});
|
||||
|
||||
matchCase.addEventListener('change', () => {
|
||||
this.matchCaseEnabled = matchCase.checked;
|
||||
this.save();
|
||||
});
|
||||
|
||||
matchWhole.addEventListener('change', () => {
|
||||
this.matchWholeEnabled = matchWhole.checked;
|
||||
this.save();
|
||||
});
|
||||
}
|
||||
|
||||
private setupExceptions(): void {
|
||||
document.getElementById('toggleExceptionBtn')?.addEventListener('click', () => {
|
||||
if (!this.currentTabHost) return;
|
||||
|
||||
const isException = this.exceptionsList.includes(this.currentTabHost);
|
||||
|
||||
if (isException) {
|
||||
this.exceptionsList = this.exceptionsList.filter(domain => domain !== this.currentTabHost);
|
||||
} else {
|
||||
this.exceptionsList.push(this.currentTabHost);
|
||||
}
|
||||
|
||||
this.updateExceptionButton();
|
||||
this.renderExceptions();
|
||||
this.save();
|
||||
});
|
||||
|
||||
document.getElementById('manageExceptionsBtn')?.addEventListener('click', () => {
|
||||
const panel = document.getElementById('exceptionsPanel');
|
||||
if (panel) {
|
||||
const isVisible = panel.style.display !== 'none';
|
||||
panel.style.display = isVisible ? 'none' : 'block';
|
||||
}
|
||||
});
|
||||
|
||||
document.getElementById('clearExceptionsBtn')?.addEventListener('click', () => {
|
||||
if (confirm(chrome.i18n.getMessage('confirm_clear_exceptions') || 'Clear all exceptions?')) {
|
||||
this.exceptionsList = [];
|
||||
this.updateExceptionButton();
|
||||
this.renderExceptions();
|
||||
this.save();
|
||||
}
|
||||
});
|
||||
|
||||
document.getElementById('exceptionsList')?.addEventListener('click', (e) => {
|
||||
const target = e.target as HTMLElement;
|
||||
if (target.classList.contains('exception-remove')) {
|
||||
const domain = target.dataset.domain!;
|
||||
this.exceptionsList = this.exceptionsList.filter(d => d !== domain);
|
||||
this.updateExceptionButton();
|
||||
this.renderExceptions();
|
||||
this.save();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private setupImportExport(): void {
|
||||
const importInput = document.getElementById('importInput') as HTMLInputElement;
|
||||
|
||||
document.getElementById('exportBtn')?.addEventListener('click', () => {
|
||||
const exportData: ExportData = {
|
||||
lists: this.lists,
|
||||
exceptionsList: this.exceptionsList
|
||||
};
|
||||
const blob = new Blob([JSON.stringify(exportData, null, 2)], { type: 'application/json' });
|
||||
const url = URL.createObjectURL(blob);
|
||||
const a = document.createElement('a');
|
||||
a.href = url;
|
||||
a.download = 'highlight-lists.json';
|
||||
a.click();
|
||||
URL.revokeObjectURL(url);
|
||||
});
|
||||
|
||||
document.getElementById('importBtn')?.addEventListener('click', () => {
|
||||
importInput.click();
|
||||
});
|
||||
|
||||
importInput.addEventListener('change', (e) => {
|
||||
const file = (e.target as HTMLInputElement).files?.[0];
|
||||
if (!file) return;
|
||||
|
||||
const reader = new FileReader();
|
||||
reader.onload = (e) => {
|
||||
try {
|
||||
const data = JSON.parse(e.target?.result as string);
|
||||
|
||||
if (Array.isArray(data)) {
|
||||
this.lists = data;
|
||||
} else if (data && typeof data === 'object') {
|
||||
if (Array.isArray(data.lists)) {
|
||||
this.lists = data.lists;
|
||||
}
|
||||
if (Array.isArray(data.exceptionsList)) {
|
||||
this.exceptionsList = data.exceptionsList;
|
||||
}
|
||||
}
|
||||
|
||||
this.currentListIndex = 0;
|
||||
this.updateExceptionButton();
|
||||
this.renderExceptions();
|
||||
this.save();
|
||||
} catch (err) {
|
||||
alert(chrome.i18n.getMessage('invalid_json_error') + ': ' + (err as Error).message);
|
||||
}
|
||||
};
|
||||
reader.readAsText(file);
|
||||
});
|
||||
}
|
||||
|
||||
private setupTheme(): void {
|
||||
const toggle = document.getElementById('themeToggle') as HTMLInputElement;
|
||||
const body = document.body;
|
||||
|
||||
const savedTheme = localStorage.getItem('theme');
|
||||
if (savedTheme === 'light') {
|
||||
body.classList.remove('dark');
|
||||
body.classList.add('light');
|
||||
toggle.checked = false;
|
||||
} else {
|
||||
body.classList.add('dark');
|
||||
body.classList.remove('light');
|
||||
toggle.checked = true;
|
||||
}
|
||||
|
||||
toggle.addEventListener('change', () => {
|
||||
if (toggle.checked) {
|
||||
body.classList.add('dark');
|
||||
body.classList.remove('light');
|
||||
localStorage.setItem('theme', 'dark');
|
||||
} else {
|
||||
body.classList.remove('dark');
|
||||
body.classList.add('light');
|
||||
localStorage.setItem('theme', 'light');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private async save(): Promise<void> {
|
||||
await StorageService.set({
|
||||
lists: this.lists,
|
||||
globalHighlightEnabled: this.globalHighlightEnabled,
|
||||
matchCaseEnabled: this.matchCaseEnabled,
|
||||
matchWholeEnabled: this.matchWholeEnabled,
|
||||
exceptionsList: this.exceptionsList
|
||||
});
|
||||
|
||||
this.render();
|
||||
MessageService.sendToAllTabs({ type: 'WORD_LIST_UPDATED' });
|
||||
MessageService.sendToAllTabs({
|
||||
type: 'GLOBAL_TOGGLE_UPDATED',
|
||||
enabled: this.globalHighlightEnabled
|
||||
});
|
||||
MessageService.sendToAllTabs({
|
||||
type: 'MATCH_OPTIONS_UPDATED',
|
||||
matchCase: this.matchCaseEnabled,
|
||||
matchWhole: this.matchWholeEnabled
|
||||
});
|
||||
MessageService.sendToAllTabs({ type: 'EXCEPTIONS_LIST_UPDATED' });
|
||||
}
|
||||
|
||||
private async updateGlobalToggleState(): Promise<void> {
|
||||
await StorageService.update('globalHighlightEnabled', this.globalHighlightEnabled);
|
||||
MessageService.sendToAllTabs({
|
||||
type: 'GLOBAL_TOGGLE_UPDATED',
|
||||
enabled: this.globalHighlightEnabled
|
||||
});
|
||||
}
|
||||
|
||||
private render(): void {
|
||||
this.renderLists();
|
||||
this.renderWords();
|
||||
this.renderExceptions();
|
||||
this.updateExceptionButton();
|
||||
this.updateFormValues();
|
||||
}
|
||||
|
||||
private renderLists(): void {
|
||||
const listSelect = document.getElementById('listSelect') as HTMLSelectElement;
|
||||
listSelect.innerHTML = this.lists.map((list, index) =>
|
||||
`<option value="${index}">${DOMUtils.escapeHtml(list.name)}</option>`
|
||||
).join('');
|
||||
listSelect.value = this.currentListIndex.toString();
|
||||
this.updateListForm();
|
||||
}
|
||||
|
||||
private updateListForm(): void {
|
||||
const list = this.lists[this.currentListIndex];
|
||||
(document.getElementById('listName') as HTMLInputElement).value = list.name;
|
||||
(document.getElementById('listBg') as HTMLInputElement).value = list.background;
|
||||
(document.getElementById('listFg') as HTMLInputElement).value = list.foreground;
|
||||
(document.getElementById('listActive') as HTMLInputElement).checked = list.active;
|
||||
}
|
||||
|
||||
private renderWords(): void {
|
||||
const list = this.lists[this.currentListIndex];
|
||||
const wordList = document.getElementById('wordList') as HTMLDivElement;
|
||||
|
||||
let filteredWords = list.words;
|
||||
if (this.wordSearchQuery.trim()) {
|
||||
const q = this.wordSearchQuery.trim().toLowerCase();
|
||||
filteredWords = list.words.filter(w => w.wordStr.toLowerCase().includes(q));
|
||||
}
|
||||
|
||||
const itemHeight = 32;
|
||||
const containerHeight = wordList.clientHeight;
|
||||
const scrollTop = wordList.scrollTop;
|
||||
const startIndex = Math.floor(scrollTop / itemHeight);
|
||||
const endIndex = Math.min(
|
||||
startIndex + Math.ceil(containerHeight / itemHeight) + 2,
|
||||
filteredWords.length
|
||||
);
|
||||
|
||||
wordList.innerHTML = '';
|
||||
|
||||
const spacer = document.createElement('div');
|
||||
spacer.style.position = 'relative';
|
||||
spacer.style.height = `${filteredWords.length * itemHeight}px`;
|
||||
spacer.style.width = '100%';
|
||||
|
||||
for (let i = startIndex; i < endIndex; i++) {
|
||||
const w = filteredWords[i];
|
||||
if (!w) continue;
|
||||
|
||||
const realIndex = list.words.indexOf(w);
|
||||
const container = this.createWordItem(w, realIndex, i, itemHeight);
|
||||
spacer.appendChild(container);
|
||||
}
|
||||
|
||||
wordList.appendChild(spacer);
|
||||
|
||||
const wordCount = document.getElementById('wordCount');
|
||||
if (wordCount) {
|
||||
wordCount.textContent = filteredWords.length.toString();
|
||||
}
|
||||
}
|
||||
|
||||
private createWordItem(word: HighlightWord, realIndex: number, displayIndex: number, itemHeight: number): HTMLDivElement {
|
||||
const container = document.createElement('div');
|
||||
container.style.cssText = `
|
||||
height: ${itemHeight}px;
|
||||
position: absolute;
|
||||
top: ${displayIndex * itemHeight}px;
|
||||
width: calc(100% - 8px);
|
||||
left: 4px;
|
||||
right: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 0 4px;
|
||||
box-sizing: border-box;
|
||||
background: var(--highlight-tag);
|
||||
border: 1px solid var(--highlight-tag-border);
|
||||
`;
|
||||
|
||||
const list = this.lists[this.currentListIndex];
|
||||
|
||||
container.innerHTML = `
|
||||
<input type="checkbox" class="word-checkbox" data-index="${realIndex}" ${this.selectedCheckboxes.has(realIndex) ? 'checked' : ''}>
|
||||
<input type="text" value="${DOMUtils.escapeHtml(word.wordStr)}" data-word-edit="${realIndex}" style="flex-grow: 1; min-width: 0; padding: 4px 8px; border-radius: 4px; border: 1px solid var(--input-border); background-color: var(--input-bg); color: var(--text-color);">
|
||||
<input type="color" value="${word.background || list.background}" data-bg-edit="${realIndex}" style="width: 24px; height: 24px; flex-shrink: 0;">
|
||||
<input type="color" value="${word.foreground || list.foreground}" data-fg-edit="${realIndex}" style="width: 24px; height: 24px; flex-shrink: 0;">
|
||||
<label class="word-active" style="display: flex; align-items: center; gap: 4px; flex-shrink: 0;">
|
||||
<input type="checkbox" ${word.active !== false ? 'checked' : ''} data-active-edit="${realIndex}" class="switch">
|
||||
</label>
|
||||
`;
|
||||
|
||||
return container;
|
||||
}
|
||||
|
||||
private updateExceptionButton(): void {
|
||||
const toggleBtn = document.getElementById('toggleExceptionBtn');
|
||||
const btnText = document.getElementById('exceptionBtnText');
|
||||
|
||||
if (!toggleBtn || !btnText || !this.currentTabHost) return;
|
||||
|
||||
const isException = this.exceptionsList.includes(this.currentTabHost);
|
||||
|
||||
if (isException) {
|
||||
btnText.textContent = chrome.i18n.getMessage('remove_exception') || 'Remove from Exceptions';
|
||||
toggleBtn.className = 'danger';
|
||||
const icon = toggleBtn.querySelector('i');
|
||||
if (icon) icon.className = 'fa-solid fa-check';
|
||||
} else {
|
||||
btnText.textContent = chrome.i18n.getMessage('add_exception') || 'Add to Exceptions';
|
||||
toggleBtn.className = '';
|
||||
const icon = toggleBtn.querySelector('i');
|
||||
if (icon) icon.className = 'fa-solid fa-ban';
|
||||
}
|
||||
}
|
||||
|
||||
private renderExceptions(): void {
|
||||
const container = document.getElementById('exceptionsList');
|
||||
if (!container) return;
|
||||
|
||||
if (this.exceptionsList.length === 0) {
|
||||
container.innerHTML = '<div class="exception-item">No exceptions</div>';
|
||||
return;
|
||||
}
|
||||
|
||||
container.innerHTML = this.exceptionsList.map(domain =>
|
||||
`<div class="exception-item">
|
||||
<span class="exception-domain">${DOMUtils.escapeHtml(domain)}</span>
|
||||
<button class="exception-remove" data-domain="${DOMUtils.escapeHtml(domain)}">${chrome.i18n.getMessage('remove') || 'Remove'}</button>
|
||||
</div>`
|
||||
).join('');
|
||||
}
|
||||
|
||||
private updateFormValues(): void {
|
||||
(document.getElementById('globalHighlightToggle') as HTMLInputElement).checked = this.globalHighlightEnabled;
|
||||
(document.getElementById('matchCase') as HTMLInputElement).checked = this.matchCaseEnabled;
|
||||
(document.getElementById('matchWhole') as HTMLInputElement).checked = this.matchWholeEnabled;
|
||||
}
|
||||
}
|
||||
@@ -1,638 +1,22 @@
|
||||
// @ts-nocheck
|
||||
const listSelect = document.getElementById('listSelect');
|
||||
const listName = document.getElementById('listName');
|
||||
const listBg = document.getElementById('listBg');
|
||||
const listFg = document.getElementById('listFg');
|
||||
const listActive = document.getElementById('listActive');
|
||||
const bulkPaste = document.getElementById('bulkPaste');
|
||||
const wordList = document.getElementById('wordList');
|
||||
const importInput = document.getElementById('importInput');
|
||||
const matchCase = document.getElementById('matchCase');
|
||||
const matchWhole = document.getElementById('matchWhole');
|
||||
let lists = [];
|
||||
let currentListIndex = 0;
|
||||
let selectedCheckboxes = new Set();
|
||||
let globalHighlightEnabled = true;
|
||||
let wordSearchQuery = '';
|
||||
let matchCaseEnabled = false;
|
||||
let matchWholeEnabled = false;
|
||||
let exceptionsList = [];
|
||||
let currentTabHost = '';
|
||||
let sectionStates = {};
|
||||
import { PopupController } from './PopupController.js';
|
||||
|
||||
function loadSectionStates() {
|
||||
const saved = localStorage.getItem('goose-highlighter-section-states');
|
||||
if (saved) {
|
||||
try {
|
||||
sectionStates = JSON.parse(saved);
|
||||
} catch {
|
||||
sectionStates = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function saveSectionStates() {
|
||||
localStorage.setItem('goose-highlighter-section-states', JSON.stringify(sectionStates));
|
||||
}
|
||||
|
||||
function toggleSection(sectionName) {
|
||||
const section = document.querySelector(`[data-section="${sectionName}"]`);
|
||||
if (!section) return;
|
||||
|
||||
const isCollapsed = section.classList.contains('collapsed');
|
||||
|
||||
if (isCollapsed) {
|
||||
section.classList.remove('collapsed');
|
||||
sectionStates[sectionName] = false;
|
||||
} else {
|
||||
section.classList.add('collapsed');
|
||||
sectionStates[sectionName] = true;
|
||||
}
|
||||
|
||||
saveSectionStates();
|
||||
}
|
||||
|
||||
function initializeSectionStates() {
|
||||
loadSectionStates();
|
||||
|
||||
// Apply saved states
|
||||
Object.keys(sectionStates).forEach(sectionName => {
|
||||
const section = document.querySelector(`[data-section="${sectionName}"]`);
|
||||
if (section && sectionStates[sectionName]) {
|
||||
section.classList.add('collapsed');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function escapeHtml(str) {
|
||||
return str.replace(/[&<>"']/g, function (m) {
|
||||
return ({
|
||||
'&': '&',
|
||||
'<': '<',
|
||||
'>': '>',
|
||||
'"': '"',
|
||||
'\'': '''
|
||||
})[m];
|
||||
});
|
||||
}
|
||||
|
||||
async function save() {
|
||||
await chrome.storage.local.set({
|
||||
lists: lists,
|
||||
globalHighlightEnabled: globalHighlightEnabled,
|
||||
matchCaseEnabled,
|
||||
matchWholeEnabled,
|
||||
exceptionsList
|
||||
});
|
||||
renderLists();
|
||||
renderWords();
|
||||
|
||||
chrome.tabs.query({}, function (tabs) {
|
||||
for (let tab of tabs) {
|
||||
if (tab.id) {
|
||||
chrome.tabs.sendMessage(tab.id, { type: 'WORD_LIST_UPDATED' });
|
||||
chrome.tabs.sendMessage(tab.id, {
|
||||
type: 'GLOBAL_TOGGLE_UPDATED',
|
||||
enabled: globalHighlightEnabled
|
||||
});
|
||||
chrome.tabs.sendMessage(tab.id, {
|
||||
type: 'MATCH_OPTIONS_UPDATED',
|
||||
matchCase: matchCaseEnabled,
|
||||
matchWhole: matchWholeEnabled
|
||||
});
|
||||
chrome.tabs.sendMessage(tab.id, { type: 'EXCEPTIONS_LIST_UPDATED' });
|
||||
function localizePage(): void {
|
||||
const elements = document.querySelectorAll('[data-i18n]');
|
||||
elements.forEach(element => {
|
||||
const message = (element as HTMLElement).dataset.i18n!;
|
||||
const localizedText = chrome.i18n.getMessage(message);
|
||||
if (localizedText) {
|
||||
if (element.tagName === 'INPUT' && (element as HTMLInputElement).hasAttribute('placeholder')) {
|
||||
(element as HTMLInputElement).placeholder = localizedText;
|
||||
} else {
|
||||
element.textContent = localizedText;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
async function updateGlobalToggleState() {
|
||||
await chrome.storage.local.set({ globalHighlightEnabled: globalHighlightEnabled });
|
||||
chrome.tabs.query({}, function (tabs) {
|
||||
for (let tab of tabs) {
|
||||
if (tab.id) {
|
||||
chrome.tabs.sendMessage(tab.id, {
|
||||
type: 'GLOBAL_TOGGLE_UPDATED',
|
||||
enabled: globalHighlightEnabled
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
async function load() {
|
||||
const res = await chrome.storage.local.get({
|
||||
lists: [],
|
||||
globalHighlightEnabled: true,
|
||||
matchCaseEnabled: false,
|
||||
matchWholeEnabled: false,
|
||||
exceptionsList: []
|
||||
});
|
||||
lists = res.lists;
|
||||
globalHighlightEnabled = res.globalHighlightEnabled !== false;
|
||||
matchCaseEnabled = !!res.matchCaseEnabled;
|
||||
matchWholeEnabled = !!res.matchWholeEnabled;
|
||||
exceptionsList = res.exceptionsList || [];
|
||||
matchCase.checked = matchCaseEnabled;
|
||||
matchWhole.checked = matchWholeEnabled;
|
||||
|
||||
try {
|
||||
const [tab] = await chrome.tabs.query({ active: true, currentWindow: true });
|
||||
if (tab && tab.url) {
|
||||
const url = new URL(tab.url);
|
||||
currentTabHost = url.hostname;
|
||||
updateExceptionButton();
|
||||
}
|
||||
} catch (e) {
|
||||
console.warn('Could not get current tab:', e);
|
||||
}
|
||||
|
||||
if (!lists.length) {
|
||||
lists.push({
|
||||
id: Date.now(),
|
||||
name: chrome.i18n.getMessage('default_list_name'),
|
||||
background: '#ffff00',
|
||||
foreground: '#000000',
|
||||
active: true,
|
||||
words: []
|
||||
});
|
||||
}
|
||||
renderLists();
|
||||
renderWords();
|
||||
renderExceptions();
|
||||
|
||||
document.getElementById('globalHighlightToggle').checked = globalHighlightEnabled;
|
||||
}
|
||||
|
||||
function renderLists() {
|
||||
listSelect.innerHTML = lists.map((list, index) =>
|
||||
`<option value="${index}">${escapeHtml(list.name)}</option>`
|
||||
).join('');
|
||||
listSelect.value = currentListIndex;
|
||||
updateListForm();
|
||||
}
|
||||
|
||||
function updateListForm() {
|
||||
const list = lists[currentListIndex];
|
||||
listName.value = list.name;
|
||||
listBg.value = list.background;
|
||||
listFg.value = list.foreground;
|
||||
listActive.checked = list.active;
|
||||
}
|
||||
|
||||
function renderWords() {
|
||||
const list = lists[currentListIndex];
|
||||
|
||||
let filteredWords = list.words;
|
||||
if (wordSearchQuery.trim()) {
|
||||
const q = wordSearchQuery.trim().toLowerCase();
|
||||
filteredWords = list.words.filter(w => w.wordStr.toLowerCase().includes(q));
|
||||
}
|
||||
|
||||
const itemHeight = 32;
|
||||
const containerHeight = wordList.clientHeight;
|
||||
const scrollTop = wordList.scrollTop;
|
||||
const startIndex = Math.floor(scrollTop / itemHeight);
|
||||
const endIndex = Math.min(
|
||||
startIndex + Math.ceil(containerHeight / itemHeight) + 2,
|
||||
filteredWords.length
|
||||
);
|
||||
|
||||
wordList.innerHTML = '';
|
||||
|
||||
const spacer = document.createElement('div');
|
||||
spacer.style.position = 'relative';
|
||||
spacer.style.height = `${filteredWords.length * itemHeight}px`;
|
||||
spacer.style.width = '100%';
|
||||
|
||||
for (let i = startIndex; i < endIndex; i++) {
|
||||
const w = filteredWords[i];
|
||||
if (!w) continue;
|
||||
const container = document.createElement('div');
|
||||
container.style.height = `${itemHeight}px`;
|
||||
container.style.position = 'absolute';
|
||||
container.style.top = `${i * itemHeight}px`;
|
||||
container.style.width = 'calc(100% - 8px)';
|
||||
container.style.left = '4px';
|
||||
container.style.right = '4px';
|
||||
container.style.display = 'flex';
|
||||
container.style.alignItems = 'center';
|
||||
container.style.gap = '6px';
|
||||
container.style.padding = '0 4px';
|
||||
container.style.boxSizing = 'border-box';
|
||||
container.style.background = 'var(--highlight-tag)';
|
||||
container.style.border = '1px solid var(--highlight-tag-border)';
|
||||
|
||||
const realIndex = list.words.indexOf(w);
|
||||
|
||||
const cbSelect = document.createElement('input');
|
||||
cbSelect.type = 'checkbox';
|
||||
cbSelect.className = 'word-checkbox';
|
||||
cbSelect.dataset.index = realIndex;
|
||||
if (selectedCheckboxes.has(realIndex)) {
|
||||
cbSelect.checked = true;
|
||||
}
|
||||
|
||||
const inputWord = document.createElement('input');
|
||||
inputWord.type = 'text';
|
||||
inputWord.value = w.wordStr;
|
||||
inputWord.dataset.wordEdit = realIndex;
|
||||
inputWord.style.flexGrow = '1';
|
||||
inputWord.style.minWidth = '0';
|
||||
inputWord.style.padding = '4px 8px';
|
||||
inputWord.style.borderRadius = '4px';
|
||||
inputWord.style.border = '1px solid var(--input-border)';
|
||||
inputWord.style.backgroundColor = 'var(--input-bg)';
|
||||
inputWord.style.color = 'var(--text-color)';
|
||||
|
||||
const inputBg = document.createElement('input');
|
||||
inputBg.type = 'color';
|
||||
inputBg.value = w.background || list.background;
|
||||
inputBg.dataset.bgEdit = realIndex;
|
||||
inputBg.style.width = '24px';
|
||||
inputBg.style.height = '24px';
|
||||
inputBg.style.flexShrink = '0';
|
||||
|
||||
const inputFg = document.createElement('input');
|
||||
inputFg.type = 'color';
|
||||
inputFg.value = w.foreground || list.foreground;
|
||||
inputFg.dataset.fgEdit = realIndex;
|
||||
inputFg.style.width = '24px';
|
||||
inputFg.style.height = '24px';
|
||||
inputFg.style.flexShrink = '0';
|
||||
|
||||
const activeContainer = document.createElement('label');
|
||||
activeContainer.className = 'word-active';
|
||||
activeContainer.style.display = 'flex';
|
||||
activeContainer.style.alignItems = 'center';
|
||||
activeContainer.style.gap = '4px';
|
||||
activeContainer.style.flexShrink = '0';
|
||||
|
||||
const cbActive = document.createElement('input');
|
||||
cbActive.type = 'checkbox';
|
||||
cbActive.checked = w.active !== false;
|
||||
cbActive.dataset.activeEdit = realIndex;
|
||||
cbActive.className = 'switch';
|
||||
|
||||
activeContainer.appendChild(cbActive);
|
||||
|
||||
container.appendChild(cbSelect);
|
||||
container.appendChild(inputWord);
|
||||
container.appendChild(inputBg);
|
||||
container.appendChild(inputFg);
|
||||
container.appendChild(activeContainer);
|
||||
|
||||
spacer.appendChild(container);
|
||||
}
|
||||
|
||||
wordList.appendChild(spacer);
|
||||
|
||||
const wordCount = document.getElementById('wordCount');
|
||||
if (wordCount) {
|
||||
wordCount.textContent = filteredWords.length;
|
||||
}
|
||||
}
|
||||
|
||||
function updateExceptionButton() {
|
||||
const toggleBtn = document.getElementById('toggleExceptionBtn');
|
||||
const btnText = document.getElementById('exceptionBtnText');
|
||||
|
||||
if (!toggleBtn || !btnText || !currentTabHost) return;
|
||||
|
||||
const isException = exceptionsList.includes(currentTabHost);
|
||||
|
||||
if (isException) {
|
||||
btnText.textContent = chrome.i18n.getMessage('remove_exception') || 'Remove from Exceptions';
|
||||
toggleBtn.className = 'danger';
|
||||
toggleBtn.querySelector('i').className = 'fa-solid fa-check';
|
||||
} else {
|
||||
btnText.textContent = chrome.i18n.getMessage('add_exception') || 'Add to Exceptions';
|
||||
toggleBtn.className = '';
|
||||
toggleBtn.querySelector('i').className = 'fa-solid fa-ban';
|
||||
}
|
||||
}
|
||||
|
||||
function renderExceptions() {
|
||||
const container = document.getElementById('exceptionsList');
|
||||
if (!container) return;
|
||||
|
||||
if (exceptionsList.length === 0) {
|
||||
container.innerHTML = '<div class="exception-item">No exceptions</div>';
|
||||
return;
|
||||
}
|
||||
|
||||
container.innerHTML = exceptionsList.map(domain =>
|
||||
`<div class="exception-item">
|
||||
<span class="exception-domain">${escapeHtml(domain)}</span>
|
||||
<button class="exception-remove" data-domain="${escapeHtml(domain)}">${chrome.i18n.getMessage('remove')}</button>
|
||||
</div>`
|
||||
).join('');
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
initializeSectionStates();
|
||||
document.addEventListener('DOMContentLoaded', async () => {
|
||||
localizePage();
|
||||
|
||||
// Add event listeners for collapse toggles
|
||||
document.querySelectorAll('.collapse-toggle').forEach(button => {
|
||||
button.addEventListener('click', (e) => {
|
||||
e.stopPropagation();
|
||||
const targetSection = button.getAttribute('data-target');
|
||||
toggleSection(targetSection);
|
||||
});
|
||||
});
|
||||
|
||||
// Also allow clicking section headers to toggle
|
||||
document.querySelectorAll('.section-header').forEach(header => {
|
||||
header.addEventListener('click', (e) => {
|
||||
// Don't toggle if clicking on a button or input within the header
|
||||
if (e.target.tagName === 'BUTTON' || e.target.tagName === 'INPUT' || e.target.closest('button')) {
|
||||
return;
|
||||
}
|
||||
const section = header.closest('.section');
|
||||
const sectionName = section.getAttribute('data-section');
|
||||
if (sectionName) {
|
||||
toggleSection(sectionName);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
document.getElementById('selectAllBtn').onclick = () => {
|
||||
const list = lists[currentListIndex];
|
||||
list.words.forEach((_, index) => {
|
||||
selectedCheckboxes.add(index);
|
||||
});
|
||||
renderWords();
|
||||
};
|
||||
|
||||
document.getElementById('globalHighlightToggle').addEventListener('change', function () {
|
||||
globalHighlightEnabled = this.checked;
|
||||
updateGlobalToggleState();
|
||||
});
|
||||
|
||||
wordList.addEventListener('change', e => {
|
||||
if (e.target.type === 'checkbox') {
|
||||
if (e.target.dataset.index != null) {
|
||||
if (e.target.checked) {
|
||||
selectedCheckboxes.add(+e.target.dataset.index);
|
||||
} else {
|
||||
selectedCheckboxes.delete(+e.target.dataset.index);
|
||||
}
|
||||
renderWords();
|
||||
} else if (e.target.dataset.activeEdit != null) {
|
||||
lists[currentListIndex].words[e.target.dataset.activeEdit].active = e.target.checked;
|
||||
save();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
let scrollTimeout;
|
||||
wordList.addEventListener('scroll', () => {
|
||||
if (scrollTimeout) {
|
||||
return;
|
||||
}
|
||||
scrollTimeout = setTimeout(() => {
|
||||
requestAnimationFrame(renderWords);
|
||||
scrollTimeout = null;
|
||||
}, 16); // ~60fps
|
||||
});
|
||||
|
||||
listSelect.onchange = () => {
|
||||
selectedCheckboxes.clear();
|
||||
currentListIndex = +listSelect.value;
|
||||
renderWords();
|
||||
updateListForm();
|
||||
};
|
||||
|
||||
document.getElementById('newListBtn').onclick = () => {
|
||||
lists.push({
|
||||
id: Date.now(),
|
||||
name: chrome.i18n.getMessage('new_list_name'),
|
||||
background: '#ffff00',
|
||||
foreground: '#000000',
|
||||
active: true,
|
||||
words: []
|
||||
});
|
||||
currentListIndex = lists.length - 1;
|
||||
save();
|
||||
};
|
||||
|
||||
document.getElementById('deleteListBtn').onclick = () => {
|
||||
if (confirm(chrome.i18n.getMessage('confirm_delete_list'))) {
|
||||
lists.splice(currentListIndex, 1);
|
||||
currentListIndex = Math.max(0, currentListIndex - 1);
|
||||
save();
|
||||
}
|
||||
};
|
||||
|
||||
listName.oninput = () => { lists[currentListIndex].name = listName.value; save(); };
|
||||
listBg.oninput = () => { lists[currentListIndex].background = listBg.value; save(); };
|
||||
listFg.oninput = () => { lists[currentListIndex].foreground = listFg.value; save(); };
|
||||
listActive.onchange = () => { lists[currentListIndex].active = listActive.checked; save(); };
|
||||
|
||||
document.getElementById('addWordsBtn').onclick = () => {
|
||||
const words = bulkPaste.value.split(/\n+/).map(w => w.trim()).filter(Boolean);
|
||||
const list = lists[currentListIndex];
|
||||
for (const w of words) list.words.push({ wordStr: w, background: '', foreground: '', active: true });
|
||||
bulkPaste.value = '';
|
||||
save();
|
||||
};
|
||||
|
||||
document.getElementById('deleteSelectedBtn').onclick = () => {
|
||||
if (confirm(chrome.i18n.getMessage('confirm_delete_words'))) {
|
||||
const list = lists[currentListIndex];
|
||||
const toDelete = Array.from(selectedCheckboxes);
|
||||
lists[currentListIndex].words = list.words.filter((_, i) => !toDelete.includes(i));
|
||||
selectedCheckboxes.clear();
|
||||
save();
|
||||
renderWords();
|
||||
}
|
||||
};
|
||||
|
||||
document.getElementById('disableSelectedBtn').onclick = () => {
|
||||
const list = lists[currentListIndex];
|
||||
selectedCheckboxes.forEach(index => {
|
||||
list.words[index].active = false;
|
||||
});
|
||||
save();
|
||||
renderWords();
|
||||
};
|
||||
|
||||
document.getElementById('enableSelectedBtn').onclick = () => {
|
||||
const list = lists[currentListIndex];
|
||||
selectedCheckboxes.forEach(index => {
|
||||
list.words[index].active = true;
|
||||
});
|
||||
save();
|
||||
renderWords();
|
||||
};
|
||||
|
||||
wordList.addEventListener('input', e => {
|
||||
const index = e.target.dataset.wordEdit ?? e.target.dataset.bgEdit ?? e.target.dataset.fgEdit;
|
||||
if (index == null) return;
|
||||
|
||||
const word = lists[currentListIndex].words[index];
|
||||
if (e.target.dataset.wordEdit != null) word.wordStr = e.target.value;
|
||||
if (e.target.dataset.bgEdit != null) word.background = e.target.value;
|
||||
if (e.target.dataset.fgEdit != null) word.foreground = e.target.value;
|
||||
|
||||
save();
|
||||
});
|
||||
|
||||
const exportBtn = document.getElementById('exportBtn');
|
||||
exportBtn.onclick = () => {
|
||||
const exportData = {
|
||||
lists: lists,
|
||||
exceptionsList: exceptionsList
|
||||
};
|
||||
const blob = new Blob([JSON.stringify(exportData, null, 2)], { type: 'application/json' });
|
||||
const url = URL.createObjectURL(blob);
|
||||
const a = document.createElement('a');
|
||||
a.href = url;
|
||||
a.download = 'highlight-lists.json';
|
||||
a.click();
|
||||
URL.revokeObjectURL(url);
|
||||
};
|
||||
|
||||
const importBtn = document.getElementById('importBtn');
|
||||
importBtn.onclick = () => importInput.click();
|
||||
|
||||
importInput.onchange = e => {
|
||||
const file = e.target.files[0];
|
||||
if (!file) return;
|
||||
const reader = new FileReader();
|
||||
reader.onload = e => {
|
||||
try {
|
||||
const data = JSON.parse(e.target.result);
|
||||
|
||||
if (Array.isArray(data)) {
|
||||
// Old format - just lists
|
||||
lists = data;
|
||||
} else if (data && typeof data === 'object') {
|
||||
// New format - object with lists and exceptions
|
||||
if (Array.isArray(data.lists)) {
|
||||
lists = data.lists;
|
||||
}
|
||||
if (Array.isArray(data.exceptionsList)) {
|
||||
exceptionsList = data.exceptionsList;
|
||||
}
|
||||
}
|
||||
|
||||
currentListIndex = 0;
|
||||
updateExceptionButton();
|
||||
renderExceptions();
|
||||
save();
|
||||
} catch (err) {
|
||||
alert(chrome.i18n.getMessage('invalid_json_error:' + err.message));
|
||||
}
|
||||
};
|
||||
reader.readAsText(file);
|
||||
};
|
||||
|
||||
function localizePage() {
|
||||
const elements = document.querySelectorAll('[data-i18n]');
|
||||
elements.forEach(element => {
|
||||
const message = element.dataset.i18n;
|
||||
const localizedText = chrome.i18n.getMessage(message);
|
||||
if (localizedText) {
|
||||
if (element.tagName === 'INPUT' && element.hasAttribute('placeholder')) {
|
||||
element.placeholder = localizedText;
|
||||
} else {
|
||||
element.textContent = localizedText;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
const toggle = document.getElementById('themeToggle');
|
||||
const body = document.body;
|
||||
|
||||
const savedTheme = localStorage.getItem('theme');
|
||||
if (savedTheme === 'light') {
|
||||
body.classList.remove('dark');
|
||||
body.classList.add('light');
|
||||
toggle.checked = false;
|
||||
} else {
|
||||
body.classList.add('dark');
|
||||
body.classList.remove('light');
|
||||
toggle.checked = true;
|
||||
}
|
||||
|
||||
toggle.addEventListener('change', () => {
|
||||
if (toggle.checked) {
|
||||
body.classList.add('dark');
|
||||
body.classList.remove('light');
|
||||
localStorage.setItem('theme', 'dark');
|
||||
} else {
|
||||
body.classList.remove('dark');
|
||||
body.classList.add('light');
|
||||
localStorage.setItem('theme', 'light');
|
||||
}
|
||||
});
|
||||
|
||||
document.getElementById('deselectAllBtn').onclick = () => {
|
||||
selectedCheckboxes.clear();
|
||||
renderWords();
|
||||
};
|
||||
|
||||
const wordSearch = document.getElementById('wordSearch');
|
||||
wordSearch.addEventListener('input', (e) => {
|
||||
wordSearchQuery = e.target.value;
|
||||
renderWords();
|
||||
});
|
||||
|
||||
matchCase.addEventListener('change', () => {
|
||||
matchCaseEnabled = matchCase.checked;
|
||||
save();
|
||||
});
|
||||
matchWhole.addEventListener('change', () => {
|
||||
matchWholeEnabled = matchWhole.checked;
|
||||
save();
|
||||
});
|
||||
|
||||
document.getElementById('toggleExceptionBtn').addEventListener('click', () => {
|
||||
if (!currentTabHost) return;
|
||||
|
||||
const isException = exceptionsList.includes(currentTabHost);
|
||||
|
||||
if (isException) {
|
||||
exceptionsList = exceptionsList.filter(domain => domain !== currentTabHost);
|
||||
} else {
|
||||
exceptionsList.push(currentTabHost);
|
||||
}
|
||||
|
||||
updateExceptionButton();
|
||||
renderExceptions();
|
||||
save();
|
||||
});
|
||||
|
||||
document.getElementById('manageExceptionsBtn').addEventListener('click', () => {
|
||||
const panel = document.getElementById('exceptionsPanel');
|
||||
if (panel.style.display === 'none') {
|
||||
panel.style.display = 'block';
|
||||
} else {
|
||||
panel.style.display = 'none';
|
||||
}
|
||||
});
|
||||
|
||||
document.getElementById('clearExceptionsBtn').addEventListener('click', () => {
|
||||
if (confirm(chrome.i18n.getMessage('confirm_clear_exceptions') || 'Clear all exceptions?')) {
|
||||
exceptionsList = [];
|
||||
updateExceptionButton();
|
||||
renderExceptions();
|
||||
save();
|
||||
}
|
||||
});
|
||||
|
||||
document.getElementById('exceptionsList').addEventListener('click', (e) => {
|
||||
if (e.target.classList.contains('exception-remove')) {
|
||||
const domain = e.target.dataset.domain;
|
||||
exceptionsList = exceptionsList.filter(d => d !== domain);
|
||||
updateExceptionButton();
|
||||
renderExceptions();
|
||||
save();
|
||||
}
|
||||
});
|
||||
|
||||
load();
|
||||
});
|
||||
const controller = new PopupController();
|
||||
await controller.initialize();
|
||||
});
|
||||
Reference in New Issue
Block a user