This commit is contained in:
NAME
2026-05-16 14:02:06 +00:00
parent 6a7856065a
commit e506996855
2 changed files with 283 additions and 60 deletions
+66 -15
View File
@@ -1,6 +1,6 @@
console.log('[XAI Background] ✅ Service worker started');
// ===== MENU =====
// ===== TẠO MENU =====
chrome.runtime.onInstalled.addListener(() => {
chrome.contextMenus.create({
id: 'writeComment',
@@ -8,25 +8,43 @@ chrome.runtime.onInstalled.addListener(() => {
contexts: ['all'],
documentUrlPatterns: ['https://x.com/*']
});
chrome.contextMenus.create({
id: 'translateText',
title: '🌐 Dịch văn bản',
contexts: ['selection'],
documentUrlPatterns: ['https://x.com/*', 'http://*/*', 'https://*/*']
});
});
// FIRE & FORGET — không đợi content trả lời
// ===== CONTEXT MENU CLICK =====
chrome.contextMenus.onClicked.addListener((info, tab) => {
if (info.menuItemId !== 'writeComment' || !tab?.id) return;
chrome.tabs.sendMessage(tab.id, { action: 'OPEN_FORM' }).catch(() => {});
if (!tab?.id) return;
if (info.menuItemId === 'writeComment') {
chrome.tabs.sendMessage(tab.id, { action: 'OPEN_FORM' }).catch(() => {});
}
if (info.menuItemId === 'translateText' && info.selectionText) {
chrome.tabs.sendMessage(tab.id, { action: 'OPEN_TRANSLATE_FORM', text: info.selectionText }).catch(() => {});
}
});
// LUÔN GỌI sendResponse(), KHÔNG BAO GIỜ return true
// ===== MESSAGE LISTENER =====
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.action === 'GENERATE_COMMENT') {
handleGenerate(request.data, sender.tab.id);
sendResponse({ received: true });
return false;
}
if (request.action === 'TRANSLATE_TEXT') {
handleTranslate(request.data, sender.tab.id);
sendResponse({ received: true });
return false;
}
sendResponse({ unknown: true });
return false;
});
// ===== COMMENT API =====
async function handleGenerate({ text, lang, tone, angle }, tabId) {
const cfg = await chrome.storage.local.get(['apiUrl', 'apiKey']);
if (!cfg.apiUrl || !cfg.apiKey) {
@@ -38,26 +56,59 @@ async function handleGenerate({ text, lang, tone, angle }, tabId) {
}
try {
const payload = {
originalPost: text,
language: lang,
tone: tone?tone.toLowerCase():undefined,
angle: angle?angle.toLowerCase():undefined,
};
const res = await fetch(cfg.apiUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${cfg.apiKey}`
},
body: JSON.stringify(payload)
body: JSON.stringify({ tweet_text: text, lang, tone, angle })
});
const data = await res.json();
if (!res.ok) throw new Error(`HTTP ${res.status}`);
const comment = data.comment || data.text || JSON.stringify(data);
const model = data.model || '';
await chrome.tabs.sendMessage(tabId, { action: 'SHOW_RESULT', comment , model}).catch(() => {});
await chrome.tabs.sendMessage(tabId, {
action: 'SHOW_RESULT',
comment: data.comment || data.text || JSON.stringify(data),
model: data.model || '',
commentTransVi: data.commentTransVi || ''
}).catch(() => {});
} catch (err) {
await chrome.tabs.sendMessage(tabId, { action: 'SHOW_ERROR', error: err.message }).catch(() => {});
}
}
// ===== TRANSLATE API =====
async function handleTranslate({ text, target_lang }, tabId) {
const cfg = await chrome.storage.local.get(['apiUrl','apiKey','translateUrl','translateKey']);
const url = cfg.translateUrl || cfg.apiUrl;
const key = cfg.translateKey || cfg.apiKey;
if (!url || !key) {
await chrome.tabs.sendMessage(tabId, {
action: 'SHOW_TRANSLATE_ERROR',
error: '⚠️ Chưa cấu hình API.\n\n👉 Vào tab ⚙️ Config để nhập URL và Key.'
}).catch(() => {});
return;
}
try {
const res = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${key}`
},
body: JSON.stringify({ text, target_lang })
});
const data = await res.json();
if (!res.ok) throw new Error(`HTTP ${res.status}`);
await chrome.tabs.sendMessage(tabId, {
action: 'SHOW_TRANSLATE_RESULT',
content: data.content || data.text || data.translation || JSON.stringify(data)
}).catch(() => {});
} catch (err) {
await chrome.tabs.sendMessage(tabId, { action: 'SHOW_TRANSLATE_ERROR', error: err.message }).catch(() => {});
}
}