/**
* TrendRadar 配置文件编辑器核心逻辑
* 特点:确保原始 YAML 的注释和格式 100% 保留
*/
// ==========================================
// 0. 注释高亮功能
// ==========================================
/**
* 对文本应用高亮,# 后的内容显示为灰色
*/
function applyHighlight(text) {
const escape = s => s.replace(/&/g, '&').replace(//g, '>');
return text.split('\n').map(line => {
const idx = line.indexOf('#');
if (idx === -1) return escape(line);
return escape(line.slice(0, idx)) + '';
}).join('\n');
}
/**
* 更新高亮层
*/
function updateBackdrop(textareaId, backdropId) {
const ta = document.getElementById(textareaId);
const bd = document.getElementById(backdropId);
if (ta && bd) bd.innerHTML = applyHighlight(ta.value) + '\n';
}
/**
* 同步滚动
*/
function syncScroll(textareaId, backdropId) {
const ta = document.getElementById(textareaId);
const bd = document.getElementById(backdropId);
if (ta && bd) {
bd.scrollTop = ta.scrollTop;
bd.scrollLeft = ta.scrollLeft;
}
}
// ==========================================
// 12. 支持项目弹窗逻辑
// ==========================================
/**
* 打开支持弹窗
*/
function openSupportModal() {
const modal = document.getElementById('support-modal');
if (modal) {
modal.classList.remove('hidden');
document.body.style.overflow = 'hidden'; // 禁止背景滚动
}
}
/**
* 关闭支持弹窗
*/
function closeSupportModal() {
const modal = document.getElementById('support-modal');
if (modal) {
modal.classList.add('hidden');
document.body.style.overflow = ''; // 恢复滚动
}
}
/**
* 点击外部关闭
*/
function closeSupportModalOutside(event) {
if (event.target.id === 'support-modal') {
closeSupportModal();
}
}
window.openSupportModal = openSupportModal;
window.closeSupportModal = closeSupportModal;
window.closeSupportModalOutside = closeSupportModalOutside;
const MODULE_DEFS = [
{ id: 1, name: "1. 基础设置", key: "app", editable: false },
{ id: 2, name: "2. 数据源 - 热榜平台", key: "platforms", editable: true },
{ id: 3, name: "3. 数据源 - RSS 订阅", key: "rss", editable: true },
{ id: 4, name: "4. 报告模式", key: "report", editable: true },
{ id: 5, name: "5. 推送内容控制", key: "display", editable: true },
{ id: 6, name: "6. 推送通知 (仅限时间窗口)", key: "notification", editable: true, partial: true },
{ id: 7, name: "7. 存储配置", key: "storage", editable: false },
{ id: 8, name: "8. AI 模型配置", key: "ai", editable: true },
{ id: 9, name: "9. AI 分析功能", key: "ai_analysis", editable: true },
{ id: 10, name: "10. AI 翻译功能", key: "ai_translation", editable: true },
{ id: 11, name: "11. 高级设置", key: "advanced", editable: false }
];
// 初始默认内容 (用于空状态) - 只显示提示文本
const INITIAL_YAML = `# 在此粘贴你的 config.yaml...
# 或拖拽文件到编辑器区域
# 或点击右上角"加载官网最新配置"`;
// LocalStorage 键名
const STORAGE_KEY_CONFIG = 'trendradar_config_yaml';
const STORAGE_KEY_FREQUENCY = 'trendradar_frequency_txt';
const STORAGE_KEY_CONFIG_TIME = 'trendradar_config_time';
const STORAGE_KEY_FREQUENCY_TIME = 'trendradar_frequency_time';
// 官网配置文件 URL
const REMOTE_CONFIG_URL = 'https://raw.githubusercontent.com/sansan0/TrendRadar/refs/heads/master/config/config.yaml';
const REMOTE_FREQUENCY_URL = 'https://raw.githubusercontent.com/sansan0/TrendRadar/refs/heads/master/config/frequency_words.txt';
const REMOTE_VERSION_URL = 'https://raw.githubusercontent.com/sansan0/TrendRadar/refs/heads/master/version_configs';
let currentYaml = "";
let currentFrequency = "";
let currentFrequencyData = null; // 缓存解析后的数据,避免重复解析导致索引错位
let currentTab = "config";
// ==========================================
// 2. 初始化与事件绑定
// ==========================================
// 防抖定时器
let configSaveTimer = null;
let frequencySaveTimer = null;
document.addEventListener('DOMContentLoaded', () => {
const yamlEditor = document.getElementById('yaml-editor');
const frequencyEditor = document.getElementById('frequency-editor');
// 尝试从 LocalStorage 恢复配置
const savedConfig = localStorage.getItem(STORAGE_KEY_CONFIG);
const savedFrequency = localStorage.getItem(STORAGE_KEY_FREQUENCY);
// 初始化编辑器
if (savedConfig && savedConfig.trim() && savedConfig !== INITIAL_YAML) {
yamlEditor.value = savedConfig;
currentYaml = savedConfig;
showToast('已恢复上次保存的配置', 'info');
} else {
yamlEditor.value = INITIAL_YAML;
currentYaml = INITIAL_YAML;
}
if (savedFrequency && savedFrequency.trim()) {
frequencyEditor.value = savedFrequency;
currentFrequency = savedFrequency;
} else {
frequencyEditor.value = "# 在此粘贴你的 frequency_words.txt 内容...\n# 或拖拽文件到编辑器区域\n\n[GLOBAL_FILTER]\n\n[WORD_GROUPS]\n";
currentFrequency = frequencyEditor.value;
}
// 渲染右侧模块列表
renderModules();
// 监听编辑器输入(实时同步到 UI + 防抖保存)
yamlEditor.addEventListener('input', (e) => {
currentYaml = e.target.value;
updateBackdrop('yaml-editor', 'yaml-backdrop');
syncYamlToUI();
debounceSaveConfig();
});
frequencyEditor.addEventListener('input', (e) => {
currentFrequency = e.target.value;
updateBackdrop('frequency-editor', 'frequency-backdrop');
currentFrequencyData = null;
syncFrequencyToUI();
debounceSaveFrequency();
});
// 同步滚动
yamlEditor.addEventListener('scroll', () => syncScroll('yaml-editor', 'yaml-backdrop'));
frequencyEditor.addEventListener('scroll', () => syncScroll('frequency-editor', 'frequency-backdrop'));
// 初始化拖拽上传功能
initDragAndDrop(yamlEditor, 'config');
initDragAndDrop(frequencyEditor, 'frequency');
// 页面关闭/刷新时立即保存
window.addEventListener('beforeunload', saveAllToLocalStorage);
document.addEventListener('keydown', function(e) {
if ((e.ctrlKey || e.metaKey) && e.key === 's') {
e.preventDefault();
saveAllToLocalStorage();
showToast('已手动保存配置', 'success');
}
});
syncYamlToUI();
updateBackdrop('yaml-editor', 'yaml-backdrop');
updateBackdrop('frequency-editor', 'frequency-backdrop');
updateSaveTimeDisplay();
});
// 防抖保存 config.yaml
function debounceSaveConfig() {
if (configSaveTimer) clearTimeout(configSaveTimer);
configSaveTimer = setTimeout(() => {
saveConfigToLocalStorage();
}, 1000);
}
// 防抖保存 frequency_words.txt
function debounceSaveFrequency() {
if (frequencySaveTimer) clearTimeout(frequencySaveTimer);
frequencySaveTimer = setTimeout(() => {
saveFrequencyToLocalStorage();
}, 1000);
}
// ==========================================
// 2.1 拖拽上传功能
// ==========================================
function initDragAndDrop(editor, type) {
const container = editor.parentElement;
const dropOverlay = document.createElement('div');
dropOverlay.className = 'drop-overlay hidden';
dropOverlay.innerHTML = `
释放以加载文件
${type === 'config' ? 'config.yaml' : 'frequency_words.txt'}
`;
container.style.position = 'relative';
container.appendChild(dropOverlay);
editor.addEventListener('dragover', (e) => {
e.preventDefault();
e.stopPropagation();
dropOverlay.classList.remove('hidden');
});
editor.addEventListener('dragleave', (e) => {
e.preventDefault();
e.stopPropagation();
if (!container.contains(e.relatedTarget)) {
dropOverlay.classList.add('hidden');
}
});
dropOverlay.addEventListener('dragleave', (e) => {
e.preventDefault();
e.stopPropagation();
if (!container.contains(e.relatedTarget)) {
dropOverlay.classList.add('hidden');
}
});
dropOverlay.addEventListener('dragover', (e) => {
e.preventDefault();
e.stopPropagation();
});
dropOverlay.addEventListener('drop', (e) => {
e.preventDefault();
e.stopPropagation();
dropOverlay.classList.add('hidden');
handleFileDrop(e, type);
});
editor.addEventListener('drop', (e) => {
e.preventDefault();
e.stopPropagation();
dropOverlay.classList.add('hidden');
handleFileDrop(e, type);
});
}
function handleFileDrop(e, type) {
const files = e.dataTransfer.files;
if (files.length === 0) return;
const file = files[0];
const validExtensions = type === 'config'
? ['.yaml', '.yml', '.txt']
: ['.txt', '.yaml', '.yml'];
const fileName = file.name.toLowerCase();
const isValid = validExtensions.some(ext => fileName.endsWith(ext));
if (!isValid) {
showToast(`请拖入 ${type === 'config' ? 'YAML' : 'TXT'} 文件`, 'error');
return;
}
const reader = new FileReader();
reader.onload = (event) => {
const content = event.target.result;
if (type === 'config') {
try {
jsyaml.load(content);
document.getElementById('yaml-editor').value = content;
currentYaml = content;
syncYamlToUI();
showToast(`已加载: ${file.name}`, 'success');
} catch (err) {
showToast(`YAML 语法错误: ${err.message}`, 'error');
// 仍然加载,让用户修复
document.getElementById('yaml-editor').value = content;
currentYaml = content;
}
} else {
document.getElementById('frequency-editor').value = content;
currentFrequency = content;
syncFrequencyToUI();
showToast(`已加载: ${file.name}`, 'success');
}
};
reader.onerror = () => {
showToast('文件读取失败', 'error');
};
reader.readAsText(file);
}
// ==========================================
// 2.2 LocalStorage 保存与恢复
// ==========================================
// 保存 config.yaml
function saveConfigToLocalStorage() {
try {
if (currentYaml && currentYaml.trim().length > 10) {
const now = new Date().toISOString();
localStorage.setItem(STORAGE_KEY_CONFIG, currentYaml);
localStorage.setItem(STORAGE_KEY_CONFIG_TIME, now);
updateSaveTimeDisplay();
}
} catch (e) {
console.warn('LocalStorage 保存 config 失败:', e);
}
}
// 保存 frequency_words.txt
function saveFrequencyToLocalStorage() {
try {
if (currentFrequency && currentFrequency.trim().length > 10) {
const now = new Date().toISOString();
localStorage.setItem(STORAGE_KEY_FREQUENCY, currentFrequency);
localStorage.setItem(STORAGE_KEY_FREQUENCY_TIME, now);
updateSaveTimeDisplay();
}
} catch (e) {
console.warn('LocalStorage 保存 frequency 失败:', e);
}
}
// 保存全部(页面关闭时调用)
function saveAllToLocalStorage() {
saveConfigToLocalStorage();
saveFrequencyToLocalStorage();
}
// 兼容旧调用
function saveToLocalStorage() {
saveAllToLocalStorage();
}
// 格式化时间显示
function formatSaveTime(isoString) {
if (!isoString) return '未保存';
const date = new Date(isoString);
const now = new Date();
const diffMs = now - date;
const diffMins = Math.floor(diffMs / 60000);
const diffHours = Math.floor(diffMs / 3600000);
const diffDays = Math.floor(diffMs / 86400000);
if (diffMins < 1) return '刚刚';
if (diffMins < 60) return `${diffMins} 分钟前`;
if (diffHours < 24) return `${diffHours} 小时前`;
if (diffDays < 7) return `${diffDays} 天前`;
return date.toLocaleDateString('zh-CN', { month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' });
}
// 更新保存时间显示
function updateSaveTimeDisplay() {
const configTime = localStorage.getItem(STORAGE_KEY_CONFIG_TIME);
const frequencyTime = localStorage.getItem(STORAGE_KEY_FREQUENCY_TIME);
// 更新 config.yaml 的时间显示
const configTimeEl = document.getElementById('config-save-time');
const configLabelEl = document.getElementById('config-save-label');
if (configTimeEl) {
configTimeEl.textContent = formatSaveTime(configTime);
configTimeEl.title = configTime ? new Date(configTime).toLocaleString('zh-CN') : '未保存';
if (configLabelEl) {
if (configTime) {
configLabelEl.classList.remove('hidden');
} else {
configLabelEl.classList.add('hidden');
}
}
}
// 更新 frequency_words.txt 的时间显示
const frequencyTimeEl = document.getElementById('frequency-save-time');
const frequencyLabelEl = document.getElementById('frequency-save-label');
if (frequencyTimeEl) {
frequencyTimeEl.textContent = formatSaveTime(frequencyTime);
frequencyTimeEl.title = frequencyTime ? new Date(frequencyTime).toLocaleString('zh-CN') : '未保存';
if (frequencyLabelEl) {
if (frequencyTime) {
frequencyLabelEl.classList.remove('hidden');
} else {
frequencyLabelEl.classList.add('hidden');
}
}
}
}
// ==========================================
// 2.3 加载官网最新配置
// ==========================================
window.openLoadConfigModal = function() {
// 创建选择弹窗
const modal = document.createElement('div');
modal.id = 'load-config-modal';
modal.className = 'modal-overlay';
modal.innerHTML = `
加载官网最新配置
选择要从 GitHub 加载的配置文件:
取消
加载选中
`;
document.body.appendChild(modal);
}
window.closeLoadConfigModal = function() {
const modal = document.getElementById('load-config-modal');
if (modal) modal.remove();
}
window.confirmLoadConfig = async function() {
const loadConfig = document.getElementById('load-config-yaml')?.checked;
const loadFrequency = document.getElementById('load-frequency-txt')?.checked;
if (!loadConfig && !loadFrequency) {
showToast('请至少选择一个文件', 'warning');
return;
}
closeLoadConfigModal();
showToast('正在从 GitHub 加载...', 'info');
try {
const promises = [];
if (loadConfig) promises.push(fetch(REMOTE_CONFIG_URL).then(r => ({ type: 'config', res: r })));
if (loadFrequency) promises.push(fetch(REMOTE_FREQUENCY_URL).then(r => ({ type: 'frequency', res: r })));
const results = await Promise.all(promises);
for (const { type, res } of results) {
if (!res.ok) {
throw new Error(`${type === 'config' ? 'config.yaml' : 'frequency_words.txt'} 加载失败: ${res.status}`);
}
const text = await res.text();
if (type === 'config') {
// 验证 YAML 语法
try {
jsyaml.load(text);
} catch (yamlErr) {
showToast(`YAML 语法错误: ${yamlErr.message}`, 'error');
continue;
}
document.getElementById('yaml-editor').value = text;
currentYaml = text;
updateBackdrop('yaml-editor', 'yaml-backdrop');
syncYamlToUI();
} else {
document.getElementById('frequency-editor').value = text;
currentFrequency = text;
currentFrequencyData = null;
updateBackdrop('frequency-editor', 'frequency-backdrop');
syncFrequencyToUI();
}
}
saveToLocalStorage();
const loadedFiles = [];
if (loadConfig) loadedFiles.push('config.yaml');
if (loadFrequency) loadedFiles.push('frequency_words.txt');
showToast(`已加载: ${loadedFiles.join(', ')}`, 'success');
} catch (err) {
console.error('加载远程配置失败:', err);
showToast(`加载失败: ${err.message}`, 'error');
}
}
// ==========================================
// 2.4 Toast 提示
// ==========================================
function showToast(message, type = 'info') {
// 移除已有的 toast
const existingToast = document.querySelector('.toast-notification');
if (existingToast) existingToast.remove();
const toast = document.createElement('div');
toast.className = `toast-notification toast-${type}`;
const icons = {
success: 'fa-check-circle',
error: 'fa-times-circle',
info: 'fa-info-circle',
warning: 'fa-exclamation-triangle'
};
toast.innerHTML = `
${message}
`;
document.body.appendChild(toast);
// 动画入场
requestAnimationFrame(() => {
toast.classList.add('show');
});
// 自动消失
setTimeout(() => {
toast.classList.remove('show');
setTimeout(() => toast.remove(), 300);
}, 3000);
}
// ==========================================
// 3. 渲染逻辑
// ==========================================
function renderModules() {
const container = document.getElementById('config-panel');
container.innerHTML = '';
renderModuleNav();
MODULE_DEFS.forEach(mod => {
const card = document.createElement('div');
card.className = `module-card ${mod.editable ? 'active' : 'disabled'}`;
card.id = `module-${mod.key}`;
const header = `
`;
const body = mod.editable ? `
` : '';
card.innerHTML = header + body;
container.appendChild(card);
if (mod.editable) {
renderControls(mod);
}
});
}
// 渲染模块导航栏
function renderModuleNav() {
const nav = document.getElementById('module-nav');
if (!nav) return;
nav.innerHTML = MODULE_DEFS.map(mod => `
${mod.id}
`).join('');
}
// 切换组名编辑状态
window.toggleGroupNameEdit = function(btn) {
const container = btn.parentNode;
const span = container.querySelector('span.text-sm');
const input = container.querySelector('input[type="text"]');
if (input.classList.contains('hidden')) {
// 进入编辑模式
span.classList.add('hidden');
input.classList.remove('hidden');
input.focus();
btn.innerHTML = ' ';
} else {
// 退出编辑模式
span.classList.remove('hidden');
input.classList.add('hidden');
btn.innerHTML = ' ';
// 如果内容变化,已经通过 onchange 触发更新
span.textContent = input.value;
}
}
// 跳转到左侧编辑器中对应词组的位置
window.scrollToWordGroupInEditor = function(groupIndex) {
const editor = document.getElementById('frequency-editor');
// 重新解析以确保行号准确
const data = parseFrequencyText(editor.value);
if (!data.wordGroups[groupIndex]) return;
const targetLineIndex = data.wordGroups[groupIndex].startLine;
if (targetLineIndex === undefined || targetLineIndex === -1) return;
const lines = editor.value.split('\n');
const lineHeight = 19.5;
const scrollPosition = targetLineIndex * lineHeight;
// 设置光标选区
let charCount = 0;
for (let i = 0; i < targetLineIndex; i++) {
charCount += lines[i].length + 1; // +1 for newline
}
editor.focus();
editor.setSelectionRange(charCount, charCount + lines[targetLineIndex].length);
editor.scrollTop = scrollPosition - 50;
// 高亮效果
editor.style.transition = 'background-color 0.3s';
const originalBg = editor.style.backgroundColor;
editor.style.backgroundColor = '#2d4a7c';
setTimeout(() => {
editor.style.backgroundColor = originalBg;
}, 300);
}
// 跳转到左侧编辑器中对应模块的位置
window.scrollToModuleInEditor = function(modKey) {
const editor = document.getElementById('yaml-editor');
const yaml = editor.value;
const lines = yaml.split('\n');
// 查找模块标题注释行(# N. 模块名)
let targetLineIndex = -1;
const mod = MODULE_DEFS.find(m => m.key === modKey);
if (!mod) return;
// 直接匹配包含模块编号的标题行,如:# 5. 推送内容控制
const moduleTitlePattern = new RegExp(`^#\\s*${mod.id}\\.\\s+`, 'i');
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
// 匹配模块标题行(包含编号的注释行)
if (moduleTitlePattern.test(line)) {
targetLineIndex = i;
break;
}
}
// 如果没找到标题行,尝试查找模块键名(如 platforms:)
if (targetLineIndex === -1) {
for (let i = 0; i < lines.length; i++) {
if (lines[i].match(new RegExp(`^${modKey}:\\s*`))) {
targetLineIndex = i;
break;
}
}
}
if (targetLineIndex === -1) return;
// 计算目标位置并滚动
const lineHeight = 19.5;
const scrollPosition = targetLineIndex * lineHeight;
// 设置光标位置
const textBeforeTarget = lines.slice(0, targetLineIndex).join('\n').length + (targetLineIndex > 0 ? 1 : 0);
editor.focus();
editor.setSelectionRange(textBeforeTarget, textBeforeTarget + lines[targetLineIndex].length);
editor.scrollTop = scrollPosition - 5;
// 高亮提示(闪烁效果)
editor.style.transition = 'background-color 0.3s';
const originalBg = editor.style.backgroundColor;
editor.style.backgroundColor = '#2d4a7c';
setTimeout(() => {
editor.style.backgroundColor = originalBg;
}, 300);
}
function renderControls(mod) {
const body = document.getElementById(`controls-${mod.key}`);
// 根据模块 key 定义不同的 UI 控件
let html = "";
switch(mod.key) {
case "platforms":
html = createToggleControl(mod.key, "enabled", "启用热榜抓取");
html += `平台列表 (可拖拽排序)
`;
html += `
`;
html += ``;
break;
case "rss":
html = createToggleControl(mod.key, "enabled", "启用 RSS 抓取");
html += `新鲜度过滤
`;
html += createToggleControl(mod.key, "freshness_filter.enabled", "启用新鲜度过滤");
html += createNumberControl(mod.key, "freshness_filter.max_age_days", "最大文章年龄 (天)");
html += `RSS 源列表
`;
html += ``;
html += ``;
html += `
注意: 部分海外媒体内容可能涉及敏感话题,AI 模型可能拒绝翻译或分析,建议根据实际需求筛选订阅源。
`;
break;
case "report":
html = createSelectControl(mod.key, "mode", "报告模式", ["current", "daily", "incremental"]);
html += createSelectControl(mod.key, "display_mode", "分组维度", ["keyword", "platform"]);
html += createToggleControl(mod.key, "sort_by_position_first", "按定义顺序排序");
html += createNumberControl(mod.key, "rank_threshold", "排名高亮阈值");
html += createNumberControl(mod.key, "max_news_per_keyword", "每个关键词最大显示数量");
break;
case "display":
html = `推送内容控制 (可拖拽排序)
`;
html += `
`;
html += `
提示:列表顺序决定了报告中的显示顺序
`;
// Standalone Configuration Section
html += ``;
html += `
独立展示区配置 (仅在上方开启"独立展示区"时生效)
`;
html += createNumberControl(mod.key, "standalone.max_items", "每个源最多展示条数");
html += `
选择要展示的热榜平台
`;
html += `
`;
html += `
选择要展示的 RSS 源
`;
html += `
`;
html += `
`;
setTimeout(() => {
renderDisplayRegionsList();
renderStandaloneLists();
}, 0);
break;
case "notification":
// 只有推送窗口可见
html = `推送时间窗口设置
`;
html += createToggleControl(mod.key, "push_window.enabled", "开启时间窗口");
html += `
${createInputControl(mod.key, "push_window.start", "开始时间 (HH:MM)")}
${createInputControl(mod.key, "push_window.end", "结束时间 (HH:MM)")}
`;
html += createToggleControl(mod.key, "push_window.once_per_day", "窗口内仅推送一次");
html += `通知渠道配置请在左侧编辑器中修改
`;
break;
case "ai":
html = createInputControl(mod.key, "model", "模型名称");
html += createInputControl(mod.key, "api_key", "API Key", "password");
html += createInputControl(mod.key, "api_base", "API Base URL (可选)");
html += createNumberControl(mod.key, "timeout", "请求超时 (秒)");
html += createNumberControl(mod.key, "temperature", "采样温度 (0.0-2.0)");
html += createNumberControl(mod.key, "max_tokens", "最大生成 Token 数");
break;
case "ai_analysis":
html = createToggleControl(mod.key, "enabled", "开启 AI 分析报告");
// AI 分析时间窗口设置
html += `AI 分析时间窗口设置
`;
html += createToggleControl(mod.key, "analysis_window.enabled", "开启时间窗口");
html += `
${createInputControl(mod.key, "analysis_window.start", "开始时间 (HH:MM)")}
${createInputControl(mod.key, "analysis_window.end", "结束时间 (HH:MM)")}
`;
html += createToggleControl(mod.key, "analysis_window.once_per_day", "窗口内仅分析一次");
// 其他 AI 分析配置
html += `分析内容配置
`;
html += createInputControl(mod.key, "language", "输出语言");
html += createInputControl(mod.key, "prompt_file", "提示词配置文件");
html += createSelectControl(mod.key, "mode", "AI 分析模式", ["follow_report", "daily", "current", "incremental"]);
html += createNumberControl(mod.key, "max_news_for_analysis", "最大分析条数");
html += createToggleControl(mod.key, "include_rss", "包含 RSS 内容");
html += createToggleControl(mod.key, "include_rank_timeline", "传递完整排名时间线");
break;
case "ai_translation":
html = createToggleControl(mod.key, "enabled", "开启 AI 自动翻译");
html += createInputControl(mod.key, "language", "目标语言");
html += createInputControl(mod.key, "prompt_file", "提示词配置文件");
break;
}
body.innerHTML = html;
// 绑定事件
body.querySelectorAll('input, select').forEach(el => {
el.addEventListener('change', (e) => {
updateYamlFromUI(mod.key, e.target.dataset.path, e.target);
});
});
}
// ==========================================
// 4. 同步逻辑 (YAML -> UI)
// ==========================================
function syncYamlToUI() {
try {
const doc = jsyaml.load(currentYaml);
if (!doc) return;
MODULE_DEFS.filter(m => m.editable).forEach(mod => {
const modData = doc[mod.key];
if (!modData) return;
const controls = document.querySelectorAll(`#controls-${mod.key} [data-path]`);
controls.forEach(ctrl => {
const path = ctrl.dataset.path.split('.');
let val = modData;
for (const part of path) {
val = val ? val[part] : undefined;
}
if (ctrl.type === 'checkbox') {
ctrl.checked = !!val;
} else {
ctrl.value = val !== undefined ? val : "";
}
});
});
renderPlatformsList();
renderRssFeedsList();
renderStandaloneLists();
} catch (e) {
// 解析失败时不更新 UI,保持原有状态
}
}
// ==========================================
// 5. 更新逻辑 (UI -> YAML) - 核心难点:正则保留注释
// ==========================================
function updateYamlFromUI(modKey, path, el) {
let newVal = el.type === 'checkbox' ? el.checked : el.value;
// 如果是数字类型
if (el.type === 'number') {
newVal = parseFloat(newVal);
if (isNaN(newVal)) newVal = 0;
}
const editor = document.getElementById('yaml-editor');
let yaml = editor.value;
const lines = yaml.split('\n');
const pathParts = path.split('.');
// 找到模块的起始行
let moduleStartLine = -1;
let moduleEndLine = lines.length;
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
// 匹配模块开始(非缩进的 key:)
const moduleMatch = line.match(/^([a-z_]+):/);
if (moduleMatch) {
if (moduleMatch[1] === modKey) {
moduleStartLine = i;
} else if (moduleStartLine >= 0) {
// 找到下一个模块,记录当前模块结束位置
moduleEndLine = i;
break;
}
}
}
if (moduleStartLine < 0) return;
// 在模块内查找目标路径
let targetLine = -1;
let currentIndent = 0;
let searchKey = pathParts[pathParts.length - 1];
for (let i = moduleStartLine + 1; i < moduleEndLine; i++) {
const line = lines[i];
if (line.trim() === '' || line.trim().startsWith('#')) continue;
// 检查是否匹配目标键
const indent = line.search(/\S/);
const keyMatch = line.match(/^\s*([a-z_]+):\s*(.*)/i);
if (keyMatch && keyMatch[1] === searchKey) {
// 如果是嵌套路径,需要检查缩进层级是否正确
if (pathParts.length > 1) {
// 简化处理:对于嵌套路径,确保在正确的父级下
let valid = true;
for (let j = 0; j < pathParts.length - 1; j++) {
let found = false;
for (let k = moduleStartLine + 1; k < i; k++) {
const parentMatch = lines[k].match(/^\s*([a-z_]+):/i);
if (parentMatch && parentMatch[1] === pathParts[j]) {
found = true;
break;
}
}
if (!found) {
valid = false;
break;
}
}
if (!valid) continue;
}
targetLine = i;
break;
}
}
if (targetLine < 0) return;
// 更新该行,保留注释
const originalLine = lines[targetLine];
const match = originalLine.match(/^(\s*[a-z_]+:\s*)(.*)$/i);
if (match) {
const prefix = match[1];
const rest = match[2];
// 提取原有注释
const commentMatch = rest.match(/(\s*#.*)$/);
const comment = commentMatch ? commentMatch[1] : '';
// 格式化新值
let formattedVal = newVal;
if (typeof newVal === 'string') {
// 获取原值部分(去除注释后的部分)
const valPart = rest.slice(0, rest.length - comment.length).trim();
// 检查原值是否带有引号
const isOriginalQuoted = (valPart.startsWith('"') && valPart.endsWith('"')) ||
(valPart.startsWith("'") && valPart.endsWith("'"));
// 如果原值有引号,或者新值包含特殊字符(空格、冒号、井号、引号)或者是空字符串,则添加双引号
if (isOriginalQuoted || newVal.includes(':') || newVal.includes('#') ||
newVal.includes('"') || newVal.includes(' ') || newVal === "") {
formattedVal = `"${newVal.replace(/"/g, '\\"')}"`;
}
}
// 构建新行
lines[targetLine] = `${prefix}${formattedVal}${comment}`;
}
// 更新编辑器
editor.value = lines.join('\n');
currentYaml = editor.value;
updateBackdrop('yaml-editor', 'yaml-backdrop');
debounceSaveConfig();
}
// ==========================================
// 6. UI 组件工厂
// ==========================================
function createToggleControl(mod, path, label) {
const id = `toggle-${mod}-${path.replace('.', '-')}`;
return `
`;
}
function createInputControl(mod, path, label, type = "text") {
return `
${label}
`;
}
function createNumberControl(mod, path, label) {
return `
${label}
`;
}
function createSelectControl(mod, path, label, options) {
const optionsHtml = options.map(opt => `${opt} `).join('');
return `
${label}
${optionsHtml}
`;
}
// ==========================================
// 7. 工具函数
// ==========================================
window.copyResult = function() {
const yamlEditor = document.getElementById('yaml-editor');
const frequencyEditor = document.getElementById('frequency-editor');
const editor = currentTab === 'config' ? yamlEditor : frequencyEditor;
editor.select();
document.execCommand('copy');
const btn = document.querySelector('button[onclick="copyResult()"]');
const original = btn.innerHTML;
btn.innerHTML = ' 已复制!';
setTimeout(() => btn.innerHTML = original, 2000);
}
window.resetToDefault = function() {
if (confirm('确定要重置为初始状态吗?未保存的修改将丢失。')) {
const yamlEditor = document.getElementById('yaml-editor');
const frequencyEditor = document.getElementById('frequency-editor');
if (currentTab === 'config') {
yamlEditor.value = INITIAL_YAML;
currentYaml = INITIAL_YAML;
updateBackdrop('yaml-editor', 'yaml-backdrop');
// 清除 LocalStorage 中的 config 数据
localStorage.removeItem(STORAGE_KEY_CONFIG);
localStorage.removeItem(STORAGE_KEY_CONFIG_TIME);
// 重置 UI:重新渲染模块以清空输入框,因为 INITIAL_YAML 可能为空导致 syncYamlToUI 不执行更新
renderModules();
syncYamlToUI();
updateSaveTimeDisplay();
} else {
frequencyEditor.value = "# 在此粘贴你的 frequency_words.txt 内容...\n\n[GLOBAL_FILTER]\n\n[WORD_GROUPS]\n";
currentFrequency = frequencyEditor.value;
updateBackdrop('frequency-editor', 'frequency-backdrop');
// 清除 LocalStorage 中的 frequency 数据
localStorage.removeItem(STORAGE_KEY_FREQUENCY);
localStorage.removeItem(STORAGE_KEY_FREQUENCY_TIME);
syncFrequencyToUI();
updateSaveTimeDisplay();
}
showToast('已重置为初始状态', 'success');
}
}
// ==========================================
// 8. Tab 切换功能
// ==========================================
window.switchTab = function(tab) {
currentTab = tab;
// 更新 Tab 按钮状态
document.getElementById('tab-config').classList.toggle('active', tab === 'config');
document.getElementById('tab-frequency').classList.toggle('active', tab === 'frequency');
const configBtn = document.getElementById('tab-config');
const freqBtn = document.getElementById('tab-frequency');
if (tab === 'config') {
configBtn.className = "tab-button active px-4 py-2 text-xs font-bold text-gray-300 hover:bg-[#2d2d30] transition-colors border-b-2 border-blue-500";
freqBtn.className = "tab-button px-4 py-2 text-xs font-bold text-gray-500 hover:bg-[#2d2d30] transition-colors border-b-2 border-transparent";
} else {
configBtn.className = "tab-button px-4 py-2 text-xs font-bold text-gray-500 hover:bg-[#2d2d30] transition-colors border-b-2 border-transparent";
freqBtn.className = "tab-button active px-4 py-2 text-xs font-bold text-gray-300 hover:bg-[#2d2d30] transition-colors border-b-2 border-blue-500";
}
// 更新编辑器显示
document.getElementById('yaml-editor-wrap').classList.toggle('hidden', tab !== 'config');
document.getElementById('frequency-editor-wrap').classList.toggle('hidden', tab !== 'frequency');
// 更新右侧面板
document.getElementById('config-panel').classList.toggle('hidden', tab !== 'config');
document.getElementById('frequency-panel').classList.toggle('hidden', tab !== 'frequency');
// 更新模块导航栏显示状态:只在 config 模式下显示
const moduleNav = document.getElementById('module-nav');
if (moduleNav) {
moduleNav.classList.toggle('hidden', tab !== 'config');
}
// 更新保存时间显示
const saveTimeConfig = document.getElementById('save-time-config');
const saveTimeFrequency = document.getElementById('save-time-frequency');
if (saveTimeConfig) saveTimeConfig.classList.toggle('hidden', tab !== 'config');
if (saveTimeFrequency) saveTimeFrequency.classList.toggle('hidden', tab !== 'frequency');
// 更新右侧标题
const versionBtn = document.getElementById('version-check-btn');
if (tab === 'config') {
document.getElementById('right-panel-title').textContent = '配置模块';
if (versionBtn) versionBtn.title = "检测 config.yaml 版本";
} else {
document.getElementById('right-panel-title').textContent = '频率词编辑';
if (versionBtn) versionBtn.title = "检测 frequency_words.txt 版本";
}
if (tab === 'frequency') {
renderFrequencyPanel();
}
}
// ==========================================
// 9. Frequency 编辑器功能
// ==========================================
function parseFrequencyText(text) {
const result = {
globalFilter: [],
wordGroups: [],
originalText: text // 保存原始文本
};
const lines = text.split('\n');
let currentSection = null;
let currentGroup = null;
let lastLineWasAlias = false; // 追踪上一行是否为别名行
let relatedGroupsBuffer = []; // 缓存连续的相关组
let pendingComments = []; // 缓存待分配的注释行
// 辅助函数:保存缓存的相关组
function flushRelatedGroups() {
if (relatedGroupsBuffer.length > 0) {
// 如果有多个连续的组,标记它们为相关组
if (relatedGroupsBuffer.length > 1) {
relatedGroupsBuffer.forEach((group, idx) => {
group.isRelatedGroup = true;
group.relatedGroupIndex = idx;
group.relatedGroupTotal = relatedGroupsBuffer.length;
});
}
result.wordGroups.push(...relatedGroupsBuffer);
relatedGroupsBuffer = [];
}
}
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
const trimmed = line.trim();
// 收集注释行(在 [WORD_GROUPS] 区域内)
if (trimmed.startsWith('#') && currentSection === 'groups') {
pendingComments.push(line);
continue;
}
// 跳过注释(非 [WORD_GROUPS] 区域)
if (trimmed.startsWith('#')) continue;
// 空行:结束当前词组和相关组缓存
if (!trimmed) {
if (currentGroup) {
// 保存当前词组到缓存
relatedGroupsBuffer.push(currentGroup);
currentGroup = null;
}
// 空行表示相关组结束,刷新缓存
flushRelatedGroups();
lastLineWasAlias = false;
// 在 [WORD_GROUPS] 区域内,空行加入待分配注释(保留空行结构)
if (currentSection === 'groups') {
pendingComments.push('');
}
continue;
}
// 检测区域标记
if (trimmed === '[GLOBAL_FILTER]') {
currentSection = 'global';
continue;
}
if (trimmed === '[WORD_GROUPS]') {
currentSection = 'groups';
continue;
}
// 处理内容
if (currentSection === 'global') {
result.globalFilter.push(trimmed);
} else if (currentSection === 'groups') {
// 检测组别名 [组名]
const groupNameMatch = trimmed.match(/^\[([^\]]+)\]$/);
if (groupNameMatch && !['GLOBAL_FILTER', 'WORD_GROUPS'].includes(groupNameMatch[1])) {
// 保存当前词组到缓存
if (currentGroup) {
relatedGroupsBuffer.push(currentGroup);
}
// 刷新缓存(组别名独立成组)
flushRelatedGroups();
// 创建组别名类型
currentGroup = {
type: 'group-name',
name: groupNameMatch[1],
keywords: [],
startLine: i,
precedingComments: pendingComments.length > 0 ? [...pendingComments] : []
};
pendingComments = [];
lastLineWasAlias = false;
} else {
// 检测 => 别名语法(允许右侧为空)
const aliasMatch = trimmed.match(/^(.+?)\s*=>\s*(.*)$/);
if (aliasMatch) {
const keyword = aliasMatch[1].trim();
const alias = aliasMatch[2].trim();
// 关键逻辑:如果上一行也是别名行(无空行分隔),则归入连续别名组
if (lastLineWasAlias && currentGroup && (currentGroup.type === 'alias' || currentGroup.type === 'alias-group')) {
// 如果当前是单个别名,升级为别名组
if (currentGroup.type === 'alias') {
currentGroup.type = 'alias-group';
}
// 添加到别名组
currentGroup.items.push({ keyword, alias });
} else {
// 新的单个别名(可能会升级为别名组)
if (currentGroup) {
// 保存当前词组到缓存(而不是直接添加到结果)
relatedGroupsBuffer.push(currentGroup);
}
currentGroup = {
type: 'alias',
items: [{ keyword, alias }],
startLine: i,
precedingComments: pendingComments.length > 0 ? [...pendingComments] : []
};
pendingComments = [];
}
lastLineWasAlias = true;
} else {
// 普通关键词
if (!currentGroup || currentGroup.type === 'alias' || currentGroup.type === 'alias-group') {
// 如果当前是别名类型,需要先保存到缓存
if (currentGroup) {
relatedGroupsBuffer.push(currentGroup);
}
// 创建新的普通词组
currentGroup = {
type: 'plain',
keywords: [],
startLine: i,
precedingComments: pendingComments.length > 0 ? [...pendingComments] : []
};
pendingComments = [];
}
currentGroup.keywords.push(trimmed);
lastLineWasAlias = false;
}
}
}
}
// 添加最后一个组
if (currentGroup) {
relatedGroupsBuffer.push(currentGroup);
}
flushRelatedGroups();
return result;
}
function buildFrequencyText(data) {
// 如果有原始文本,尝试保留注释
if (data.originalText) {
const lines = data.originalText.split('\n');
let result = [];
// 第一步:保留文件头部的注释
let i = 0;
while (i < lines.length) {
const line = lines[i];
const trimmed = line.trim();
if (trimmed === '[GLOBAL_FILTER]') {
break;
}
result.push(line);
i++;
}
// 第二步:重建 [GLOBAL_FILTER] 区域
result.push('[GLOBAL_FILTER]');
// 保留 [GLOBAL_FILTER] 后面的注释(直到第一个非注释非空行)
i++;
while (i < lines.length) {
const line = lines[i];
const trimmed = line.trim();
if (trimmed.startsWith('#') || trimmed === '') {
result.push(line);
i++;
} else {
break;
}
}
// 添加全局过滤词
data.globalFilter.forEach(filter => {
result.push(filter);
});
result.push('');
result.push('');
// 跳过原始文件中的 [GLOBAL_FILTER] 内容(非注释行),保留注释直到 [WORD_GROUPS]
while (i < lines.length) {
const line = lines[i];
const trimmed = line.trim();
if (trimmed === '[WORD_GROUPS]') {
break;
}
// 保留注释和空行
if (trimmed.startsWith('#') || trimmed === '') {
result.push(line);
}
i++;
}
// 第三步:重建 [WORD_GROUPS] 区域
result.push('[WORD_GROUPS]');
result.push('');
// 添加词组(注释已保存在每个词组的 precedingComments 中)
data.wordGroups.forEach((group, index) => {
// 先输出词组前的注释
if (group.precedingComments && group.precedingComments.length > 0) {
group.precedingComments.forEach(comment => {
result.push(comment);
});
}
if (group.type === 'group-name') {
// 组别名类型:[组名] + 关键词
if (group.name) {
result.push(`[${group.name}]`);
}
group.keywords.forEach(kw => {
result.push(kw);
});
} else if (group.type === 'alias' || group.type === 'alias-group') {
// 别名类型:keyword => alias
group.items.forEach(item => {
result.push(`${item.keyword} => ${item.alias}`);
});
} else if (group.type === 'plain') {
// 普通词组
group.keywords.forEach(kw => {
result.push(kw);
});
}
// 空行处理逻辑:
// 1. 如果当前词组和下一个词组都是相关组,则不添加空行
// 2. 否则,在词组之间添加空行
const isLastGroup = index === data.wordGroups.length - 1;
const nextGroup = !isLastGroup ? data.wordGroups[index + 1] : null;
// 简化判断:只要当前和下一个都是相关组,就不添加空行
const bothAreRelatedGroups = group.isRelatedGroup && nextGroup && nextGroup.isRelatedGroup;
// 如果下一个词组有前置注释,不需要额外添加空行(注释中已包含空行)
const nextHasComments = nextGroup && nextGroup.precedingComments && nextGroup.precedingComments.length > 0;
if (bothAreRelatedGroups) {
// 相关组内部不添加空行
// 不添加任何内容
} else if (!isLastGroup && !nextHasComments) {
// 词组之间添加空行(如果下一个没有前置注释)
result.push('');
} else if (isLastGroup) {
// 最后一个词组后也保留一个空行
result.push('');
}
});
return result.join('\n');
}
// 如果没有原始文本,使用默认模板
let text = '# ═══════════════════════════════════════════════════════════════\n';
text += '# TrendRadar 频率词配置文件\n';
text += '# ═══════════════════════════════════════════════════════════════\n\n';
text += '[GLOBAL_FILTER]\n';
data.globalFilter.forEach(filter => {
text += filter + '\n';
});
text += '\n\n';
text += '[WORD_GROUPS]\n\n';
data.wordGroups.forEach((group, index) => {
// 先输出词组前的注释
if (group.precedingComments && group.precedingComments.length > 0) {
group.precedingComments.forEach(comment => {
text += comment + '\n';
});
}
if (group.type === 'group-name') {
if (group.name) {
text += `[${group.name}]\n`;
}
group.keywords.forEach(kw => {
text += kw + '\n';
});
} else if (group.type === 'alias' || group.type === 'alias-group') {
group.items.forEach(item => {
text += `${item.keyword} => ${item.alias}\n`;
});
} else if (group.type === 'plain') {
group.keywords.forEach(kw => {
text += kw + '\n';
});
}
// 空行处理逻辑:与上面保持一致
const isLastGroup = index === data.wordGroups.length - 1;
const nextGroup = !isLastGroup ? data.wordGroups[index + 1] : null;
const bothAreRelatedGroups = group.isRelatedGroup && nextGroup && nextGroup.isRelatedGroup;
// 如果下一个词组有前置注释,不需要额外添加空行
const nextHasComments = nextGroup && nextGroup.precedingComments && nextGroup.precedingComments.length > 0;
if (bothAreRelatedGroups) {
// 相关组内部不添加空行
} else if (!isLastGroup && !nextHasComments) {
text += '\n'; // 词组之间用空行分隔
} else if (isLastGroup) {
text += '\n'; // 最后一个词组后也保留一个空行
}
});
return text;
}
function syncFrequencyToUI() {
const data = parseFrequencyText(currentFrequency);
currentFrequencyData = data;
renderFrequencyPanel(data);
}
function renderFrequencyPanel(data) {
if (!data) {
data = parseFrequencyText(currentFrequency);
}
const panel = document.getElementById('frequency-panel');
// 辅助函数:根据关键词类型返回样式类
function getKeywordClass(keyword) {
if (keyword.startsWith('+')) return 'bg-green-500';
if (keyword.startsWith('!')) return 'bg-red-500';
if (keyword.startsWith('@')) return 'bg-purple-500';
if (keyword.startsWith('/') || keyword.includes('=>')) return 'bg-indigo-500';
return 'bg-blue-500';
}
// 辅助函数:为关键词添加标签
function getKeywordLabel(keyword) {
if (keyword.startsWith('+')) return '必须';
if (keyword.startsWith('!')) return '排除';
if (keyword.startsWith('@')) return '限制';
if (keyword.startsWith('/')) return '正则';
if (keyword.includes('=>')) return '别名';
return '';
}
// 渲染词组卡片
function renderGroupCard(group, idx) {
const jumpIcon = ` `;
// 序号标记
const indexBadge = `#${idx + 1} `;
// 相关组标记
const relatedGroupBadge = group.isRelatedGroup
? `
相关组 ${group.relatedGroupIndex + 1}/${group.relatedGroupTotal}
`
: '';
// 相关组边框样式
const relatedGroupStyle = group.isRelatedGroup
? 'border-l-4 border-l-blue-500 shadow-lg'
: '';
if (group.type === 'group-name') {
// 组别名类型
return `
`;
} else if (group.type === 'alias') {
// 单个别名类型
const item = group.items[0];
return `
`;
} else if (group.type === 'alias-group') {
// 连续别名组类型
return `
`;
} else if (group.type === 'plain') {
// 普通词组类型
return `
`;
}
return '';
}
panel.innerHTML = `
四种词组类型说明
组别名
[东亚] 日本 韩国
多个关键词,统一显示为组名
单个别名
/胖东来|于东来/ => 胖东来
正则匹配,显示为别名
连续别名组
/智元|稚晖君/ => 智元 /众擎|EngineAI/ => 众擎
多个别名无空行分隔
全局过滤词
AI 写正则
${data.globalFilter.map(f => `
${f}
×
`).join('')}
提示:支持正则表达式(用 /.../ 包裹)
关键词组 (${data.wordGroups.length} 个词组)
添加词组
${data.wordGroups.map((group, idx) => {
const card = renderGroupCard(group, idx);
// 在每个词组后添加插入区域(最后一个除外)
if (idx < data.wordGroups.length - 1) {
return card + `
`;
}
return card;
}).join('')}
在底部添加词组
`;
// 初始化拖拽排序功能
setTimeout(() => {
const container = document.getElementById('word-groups-container');
if (container && typeof Sortable !== 'undefined') {
// 销毁之前的实例(如果存在)
if (container.sortableInstance) {
container.sortableInstance.destroy();
}
// 创建新的 Sortable 实例
container.sortableInstance = new Sortable(container, {
animation: 150,
filter: '.editable-area, input, button, select, textarea', // 排除编辑区域
preventOnFilter: false, // 允许在过滤区域正常交互
ghostClass: 'sortable-ghost',
chosenClass: 'sortable-chosen',
dragClass: 'sortable-drag',
onEnd: function(evt) {
// 获取所有词组卡片的当前顺序
const cards = Array.from(container.querySelectorAll('.word-group-card'));
const newOrder = cards.map(card => parseInt(card.getAttribute('data-group-index')));
// 检查顺序是否改变
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
const oldOrder = data.wordGroups.map((_, idx) => idx);
if (JSON.stringify(newOrder) !== JSON.stringify(oldOrder)) {
// 根据新顺序重新排列数据
const reorderedGroups = newOrder.map(idx => data.wordGroups[idx]);
data.wordGroups = reorderedGroups;
// 重新构建文本
currentFrequency = buildFrequencyText(data);
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
// 重新渲染
renderFrequencyPanel(currentFrequencyData);
}
}
});
}
}, 0);
}
// Global Filter 操作
window.handleGlobalFilterInput = function(event) {
if (event.key === 'Enter' && event.target.value.trim()) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
data.globalFilter.push(event.target.value.trim());
currentFrequency = buildFrequencyText(data);
currentFrequencyData = data;
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(data);
}
}
window.removeGlobalFilter = function(filter) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
data.globalFilter = data.globalFilter.filter(f => f !== filter);
currentFrequency = buildFrequencyText(data);
currentFrequencyData = data;
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(data);
}
// Word Groups 操作
let pendingWordGroupPosition = 'top'; // 记录添加位置:'top', 'bottom', 或数字索引
window.addWordGroup = function(position = 'top') {
pendingWordGroupPosition = position;
document.getElementById('wordgroup-type-modal').classList.remove('hidden');
}
// 在指定位置插入词组
window.insertWordGroupAt = function(index) {
pendingWordGroupPosition = index; // 记录插入位置(数字索引)
document.getElementById('wordgroup-type-modal').classList.remove('hidden');
}
window.closeWordGroupTypeModal = function() {
document.getElementById('wordgroup-type-modal').classList.add('hidden');
}
window.confirmAddWordGroup = function(type) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
let newGroup;
if (type === 'group') {
// 组别名类型
newGroup = { type: 'group-name', name: '', keywords: [] };
} else if (type === 'alias') {
// 单个别名类型
newGroup = { type: 'alias', items: [{ keyword: '', alias: '' }] };
} else if (type === 'multi-alias') {
// 连续别名类型(多个别名行)
newGroup = { type: 'alias-group', items: [{ keyword: '', alias: '' }, { keyword: '', alias: '' }] };
} else if (type === 'plain') {
// 普通词组类型
newGroup = { type: 'plain', keywords: [] };
}
// 根据位置插入
if (pendingWordGroupPosition === 'bottom') {
data.wordGroups.push(newGroup);
} else if (pendingWordGroupPosition === 'top') {
data.wordGroups.unshift(newGroup);
} else if (typeof pendingWordGroupPosition === 'number') {
// 在指定索引位置插入
data.wordGroups.splice(pendingWordGroupPosition, 0, newGroup);
}
currentFrequency = buildFrequencyText(data);
currentFrequencyData = data;
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(data);
closeWordGroupTypeModal();
// 滚动到新添加的词组
setTimeout(() => {
const container = document.getElementById('word-groups-container');
if (pendingWordGroupPosition === 'bottom') {
container.scrollTop = container.scrollHeight;
} else if (pendingWordGroupPosition === 'top') {
container.scrollTop = 0;
} else if (typeof pendingWordGroupPosition === 'number') {
// 滚动到插入的位置
const cards = container.querySelectorAll('.word-group-card');
if (cards[pendingWordGroupPosition]) {
cards[pendingWordGroupPosition].scrollIntoView({ behavior: 'smooth', block: 'center' });
}
}
}, 100);
}
window.removeWordGroup = function(index) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
data.wordGroups.splice(index, 1);
currentFrequency = buildFrequencyText(data);
// 重新解析以更新相关组信息
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(currentFrequencyData);
}
window.updateGroupName = function(index, name) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
const group = data.wordGroups[index];
// 只有 group-name 类型才有 name 字段
if (group.type === 'group-name') {
group.name = name;
}
currentFrequency = buildFrequencyText(data);
// 重新解析以更新相关组信息
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(currentFrequencyData);
}
window.editKeyword = function(groupIndex, oldKeyword, spanElement) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
const group = data.wordGroups[groupIndex];
// 只有 group-name 和 plain 类型才有 keywords 字段
if (group.type !== 'group-name' && group.type !== 'plain') {
return;
}
const originalKeyword = group.keywords.find(kw => kw === oldKeyword) || oldKeyword;
const input = document.createElement('input');
input.type = 'text';
input.value = originalKeyword;
input.className = 'tag-input inline-block px-2 py-1 text-xs border border-blue-500 rounded';
input.style.minWidth = '100px';
const saveEdit = () => {
const newKeyword = input.value.trim();
if (newKeyword && newKeyword !== originalKeyword) {
const kwIndex = group.keywords.indexOf(originalKeyword);
if (kwIndex !== -1) {
group.keywords[kwIndex] = newKeyword;
}
currentFrequency = buildFrequencyText(data);
// 重新解析以更新相关组信息
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(currentFrequencyData);
} else {
spanElement.style.display = '';
input.remove();
}
};
input.onblur = saveEdit;
input.onkeydown = (e) => {
if (e.key === 'Enter') {
saveEdit();
} else if (e.key === 'Escape') {
spanElement.style.display = '';
input.remove();
}
};
spanElement.style.display = 'none';
spanElement.parentNode.insertBefore(input, spanElement);
input.focus();
input.select();
}
window.handleKeywordInput = function(event, groupIndex) {
if (event.key === 'Enter' && event.target.value.trim()) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
const group = data.wordGroups[groupIndex];
// 只有 group-name 和 plain 类型才能添加关键词
if (group.type === 'group-name' || group.type === 'plain') {
group.keywords.push(event.target.value.trim());
event.target.value = '';
currentFrequency = buildFrequencyText(data);
// 重新解析以更新相关组信息
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(currentFrequencyData);
}
}
}
window.removeKeyword = function(groupIndex, keyword) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
const group = data.wordGroups[groupIndex];
// 只有 group-name 和 plain 类型才能删除关键词
if (group.type === 'group-name' || group.type === 'plain') {
group.keywords = group.keywords.filter(k => k !== keyword);
// 如果词组变空,删除整个词组
if (group.keywords.length === 0) {
data.wordGroups.splice(groupIndex, 1);
}
currentFrequency = buildFrequencyText(data);
// 重新解析以更新相关组信息
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(currentFrequencyData);
}
}
// 更新别名项
window.updateAliasItem = function(groupIndex, itemIndex, field, value) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
const group = data.wordGroups[groupIndex];
// 只有 alias 和 alias-group 类型才有 items 字段
if (group.type === 'alias' || group.type === 'alias-group') {
if (group.items[itemIndex]) {
group.items[itemIndex][field] = value;
currentFrequency = buildFrequencyText(data);
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(currentFrequencyData);
}
}
}
// 添加别名项
window.addAliasItem = function(groupIndex) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
const group = data.wordGroups[groupIndex];
// 只有 alias-group 类型才能添加别名项
if (group.type === 'alias-group') {
group.items.push({ keyword: '', alias: '' });
currentFrequency = buildFrequencyText(data);
// 重新解析以更新相关组信息
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(currentFrequencyData);
} else if (group.type === 'alias') {
// 如果是单个别名,升级为别名组
group.type = 'alias-group';
group.items.push({ keyword: '', alias: '' });
currentFrequency = buildFrequencyText(data);
// 重新解析以更新相关组信息
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(currentFrequencyData);
}
}
// 删除别名项
window.removeAliasItem = function(groupIndex, itemIndex) {
const data = currentFrequencyData || parseFrequencyText(currentFrequency);
const group = data.wordGroups[groupIndex];
// 只有 alias-group 类型才能删除别名项
if (group.type === 'alias-group') {
group.items.splice(itemIndex, 1);
// 如果没有别名项了,删除整个词组
if (group.items.length === 0) {
data.wordGroups.splice(groupIndex, 1);
}
// 如果只剩一个别名项,降级为单个别名
else if (group.items.length === 1) {
group.type = 'alias';
}
currentFrequency = buildFrequencyText(data);
currentFrequencyData = parseFrequencyText(currentFrequency);
document.getElementById('frequency-editor').value = currentFrequency;
updateBackdrop('frequency-editor', 'frequency-backdrop');
renderFrequencyPanel(currentFrequencyData);
}
}
// DeepSeek AI 辅助
window.openDeepSeekAI = function(type, groupIndex) {
const userInput = window.prompt('请输入核心关键词(例如:华为):');
if (!userInput) return;
const promptText = `我正在配置一个新闻聚合系统,需要通过 Python 正则表达式 抓取关于【${userInput}】的新闻。
请帮我完成以下步骤,并最终只输出一个正则表达式字符串:
第一步:【精准关键词筛选】
请列出与【${userInput}】强绑定的核心词汇:
1. 核心品牌:包括中文全称、简称、股票代码、别名。
2. 核心人物:仅限最高决策层或极具代表性的创始人。
3. 独家产品:必须是具有极高辨识度的独家产品名。
4. 核心工作室/子品牌:强相关的下属机构。
第二步:【严格清洗与过滤】(请严格执行)
1. 包含关系去重(最短匹配原则):
- 中文:如果列表里已经有了核心短词(如“腾讯”),请删除所有包含该短词的长词(如“腾讯云”、“腾讯视频”统统不要,因为它们会被短词命中)。
- 英文:如果有了 \\bKeyword\\b,就不要再出现 Keyword。
2. 彻底排除无关公司:
- 绝对不要包含:该品牌的竞争对手、合作伙伴(如京东、美团、字节跳动等非隶属公司)。
3. 彻底排除通用黑话:
- 绝对不要包含:行业通用词(如“互联网”、“大厂”、“新质生产力”、“人工智能”、“元宇宙”、“金融科技”等)。
第三步:【构建 Python 正则】
将清洗后的词汇合并,格式要求如下:
1. 英文处理:所有英文单词必须前后加 \\b(例如 \\bWord\\b),严禁出现没有边界符的英文单词。
2. 连接符:用 | 连接。
最终输出示例格式:
/词A|词B|\\bEnglishWord\\b/ => ${userInput}
输出要求:
- 只要这一行正则表达式,不要任何解释,不要代码块。`;
const textArea = document.createElement("textarea");
textArea.value = promptText;
textArea.style.position = "fixed";
textArea.style.left = "-9999px";
textArea.style.top = "0";
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
let copySuccess = false;
try {
copySuccess = document.execCommand('copy');
} catch (err) {
console.error('复制失败:', err);
}
document.body.removeChild(textArea);
if (copySuccess) {
if (confirm(`提示词已复制到剪贴板!\n\n关键词:${userInput}\n\n点击【确定】跳转 DeepSeek 官网,直接粘贴 (Ctrl+V) 即可。`)) {
window.open('https://chat.deepseek.com/', '_blank');
}
} else {
prompt('自动复制失败,请手动复制以下内容,然后自行打开 DeepSeek:', promptText);
window.open('https://chat.deepseek.com/', '_blank');
}
}
// ==========================================
// 10. 平台管理功能
// ==========================================
// 解析当前配置中的平台列表
function parsePlatformsFromYaml() {
try {
const doc = jsyaml.load(currentYaml);
if (doc && doc.platforms && doc.platforms.sources) {
return doc.platforms.sources;
}
} catch (e) {}
return [];
}
// 渲染平台列表
function renderPlatformsList() {
const container = document.getElementById('platforms-list');
if (!container) return;
const platforms = parsePlatformsFromYaml();
if (platforms.length === 0) {
container.innerHTML = `暂无平台,请添加
`;
return;
}
container.innerHTML = platforms.map((p, idx) => `
`).join('');
// 初始化拖拽排序
if (typeof Sortable !== 'undefined') {
new Sortable(container, {
animation: 150,
handle: '.fa-grip-vertical',
onEnd: function(evt) {
reorderPlatforms(evt.oldIndex, evt.newIndex);
}
});
}
}
// 删除平台
window.removePlatform = function(index) {
const platforms = parsePlatformsFromYaml();
if (index < 0 || index >= platforms.length) return;
const platformName = platforms[index].name;
if (!confirm(`确定要删除平台 "${platformName}" 吗?`)) return;
platforms.splice(index, 1);
updatePlatformsInYaml(platforms);
}
// 重新排序平台
function reorderPlatforms(oldIndex, newIndex) {
const platforms = parsePlatformsFromYaml();
const [removed] = platforms.splice(oldIndex, 1);
platforms.splice(newIndex, 0, removed);
updatePlatformsInYaml(platforms);
}
// 更新 YAML 中的平台配置(保留注释)
function updatePlatformsInYaml(platforms) {
const editor = document.getElementById('yaml-editor');
let yaml = editor.value;
const lines = yaml.split('\n');
// 找到 platforms.sources 的位置
let sourcesStart = -1;
let sourcesEnd = -1;
let inPlatforms = false;
let inSources = false;
let baseIndent = 0;
let lastDataLineIndex = -1; // 记录最后一个数据行的位置
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
const trimmed = line.trim();
if (line.match(/^platforms:/)) {
inPlatforms = true;
continue;
}
if (inPlatforms && !inSources && trimmed.startsWith('sources:')) {
sourcesStart = i + 1;
inSources = true;
baseIndent = line.search(/\S/) + 2; // sources 下一级的缩进
continue;
}
if (inSources) {
const currentIndent = line.search(/\S/);
// 如果是数据行(以 - 开头或是数据项的属性)
if (trimmed.startsWith('-')) {
lastDataLineIndex = i;
} else if (trimmed && !trimmed.startsWith('#') && currentIndent >= baseIndent) {
// 数据项的属性行(如 name:, id:)
lastDataLineIndex = i;
} else if (trimmed && !trimmed.startsWith('#') && currentIndent < baseIndent) {
// 遇到缩进更小的非注释行,说明离开了 sources 区域
sourcesEnd = lastDataLineIndex + 1;
break;
}
}
// 检查是否进入下一个顶级模块
if (inPlatforms && line.match(/^[a-z_]+:/) && !line.match(/^platforms:/)) {
if (lastDataLineIndex >= 0) {
sourcesEnd = lastDataLineIndex + 1;
} else {
sourcesEnd = i;
}
break;
}
}
// 如果没有找到结束位置,使用最后一个数据行的下一行
if (sourcesEnd === -1) {
sourcesEnd = lastDataLineIndex >= 0 ? lastDataLineIndex + 1 : lines.length;
}
// 提取区域内的注释(保留在开头的注释)
const regionLines = lines.slice(sourcesStart, sourcesEnd);
const leadingComments = [];
for (const line of regionLines) {
const trimmed = line.trim();
if (trimmed.startsWith('#')) {
leadingComments.push(line);
} else if (trimmed.startsWith('-') || (trimmed && !trimmed.startsWith('#'))) {
// 遇到第一个数据项,停止收集注释
break;
} else if (trimmed === '') {
// 空行也保留
leadingComments.push(line);
}
}
const indent = ' '; // 4 空格缩进
const newSourcesLines = platforms.map(p =>
`${indent}- id: "${p.id}"\n${indent} name: "${p.name}"`
).join('\n');
const beforeSources = lines.slice(0, sourcesStart);
const afterSources = lines.slice(sourcesEnd);
// 组合:前面内容 + 开头注释 + 新数据 + 后面内容
const newYaml = [
...beforeSources,
...(leadingComments.length > 0 ? leadingComments : []),
newSourcesLines,
...afterSources
].join('\n');
editor.value = newYaml;
currentYaml = newYaml;
updateBackdrop('yaml-editor', 'yaml-backdrop');
debounceSaveConfig();
renderPlatformsList();
renderStandaloneLists(); // 同步更新独立展示区的平台选择列表
}
// ==========================================
// 12. Display Regions 排序与管理功能
// ==========================================
const DISPLAY_REGIONS_DEF = [
{ key: "hotlist", label: "热榜区域" },
{ key: "new_items", label: "新增热点区域" },
{ key: "rss", label: "RSS 订阅区域" },
{ key: "standalone", label: "独立展示区" },
{ key: "ai_analysis", label: "AI 分析区域" }
];
// 从 YAML 解析 display.regions,严格按照 region_order 定义顺序
function parseDisplayRegionsFromYaml() {
try {
const doc = jsyaml.load(currentYaml);
if (doc && doc.display) {
const regionOrder = doc.display.region_order || [];
const regionStates = doc.display.regions || {};
// 严格按 region_order 顺序构建列表
if (regionOrder.length > 0) {
return regionOrder.map(key => {
const normalizedKey = key === 'new_item' ? 'new_items' : key;
const def = DISPLAY_REGIONS_DEF.find(d => d.key === normalizedKey);
return {
key: normalizedKey,
label: def ? def.label : normalizedKey,
enabled: regionStates[normalizedKey] !== undefined ? regionStates[normalizedKey] : false
};
});
}
// 后备方案:如果没有 region_order,使用 regions 对象的顺序
const regions = [];
for (const key in regionStates) {
const normalizedKey = key === 'new_item' ? 'new_items' : key;
const def = DISPLAY_REGIONS_DEF.find(d => d.key === normalizedKey);
if (def) {
regions.push({
key: normalizedKey,
label: def.label,
enabled: regionStates[key]
});
}
}
return regions;
}
} catch (e) {}
// 默认返回所有区域(禁用状态)
return DISPLAY_REGIONS_DEF.map(def => ({
key: def.key,
label: def.label,
enabled: false
}));
}
// 渲染 Display Regions 列表
function renderDisplayRegionsList() {
const container = document.getElementById('display-regions-list');
if (!container) return;
const regions = parseDisplayRegionsFromYaml();
container.innerHTML = regions.map((r, idx) => `
`).join('');
// 初始化拖拽排序
if (typeof Sortable !== 'undefined') {
new Sortable(container, {
animation: 150,
handle: '.fa-grip-vertical',
onEnd: function(evt) {
reorderDisplayRegions();
}
});
}
}
// 切换区域启用状态
window.toggleDisplayRegion = function(key) {
const regions = parseDisplayRegionsFromYaml();
const target = regions.find(r => r.key === key);
if (target) {
target.enabled = !target.enabled;
updateDisplayRegionsInYaml(regions);
}
}
// 重新排序区域
window.reorderDisplayRegions = function() {
const container = document.getElementById('display-regions-list');
const items = container.querySelectorAll('.display-region-item');
const newOrderKeys = Array.from(items).map(item => item.dataset.key);
const currentRegions = parseDisplayRegionsFromYaml();
const newRegions = newOrderKeys.map(key => {
return currentRegions.find(r => r.key === key);
}).filter(r => r); // 过滤掉可能的 undefined
updateDisplayRegionsInYaml(newRegions);
}
// 更新 YAML 中的 display.regions 和 display.region_order
function updateDisplayRegionsInYaml(regions) {
const editor = document.getElementById('yaml-editor');
let yaml = editor.value;
const lines = yaml.split('\n');
let regionOrderStart = -1;
let regionOrderEnd = -1;
let regionsStart = -1;
let regionsEnd = -1;
let inDisplay = false;
let regionOrderIndent = 0;
let regionsIndent = 0;
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
const trimmed = line.trim();
if (line.match(/^display:/)) {
inDisplay = true;
continue;
}
if (!inDisplay) continue;
// 查找 region_order 数组
if (trimmed.startsWith('region_order:')) {
regionOrderStart = i + 1;
regionOrderIndent = line.search(/\S/) + 2;
// 找到 region_order 的结束位置
for (let j = i + 1; j < lines.length; j++) {
const nextLine = lines[j];
const nextTrimmed = nextLine.trim();
if (nextTrimmed && !nextTrimmed.startsWith('#') && !nextTrimmed.startsWith('-')) {
const nextIndent = nextLine.search(/\S/);
if (nextIndent < regionOrderIndent) {
regionOrderEnd = j;
break;
}
}
}
if (regionOrderEnd === -1) regionOrderEnd = lines.length;
continue;
}
// 查找 regions 对象
if (trimmed.startsWith('regions:')) {
regionsStart = i + 1;
regionsIndent = line.search(/\S/) + 2;
// 找到 regions 的结束位置(遇到同级或更高级的键)
for (let j = i + 1; j < lines.length; j++) {
const nextLine = lines[j];
const nextTrimmed = nextLine.trim();
if (nextTrimmed && !nextTrimmed.startsWith('#')) {
const nextIndent = nextLine.search(/\S/);
// 检查是否是同级或更高级的键(如 standalone:)
if (nextIndent <= line.search(/\S/)) {
regionsEnd = j;
break;
}
}
}
if (regionsEnd === -1) regionsEnd = lines.length;
break;
}
// 检查是否离开 display 模块
if (line.match(/^[a-z_]+:/) && !line.match(/^display:/)) {
break;
}
}
// 更新 region_order 数组(保留注释)
if (regionOrderStart > 0 && regionOrderEnd > regionOrderStart) {
const indentStr = ' '.repeat(regionOrderIndent);
// 提取原有行的注释映射
const originalRegionOrderBlock = lines.slice(regionOrderStart, regionOrderEnd);
const commentMap = {};
originalRegionOrderBlock.forEach(line => {
// 匹配 "- key # 注释" 格式
const match = line.match(/^\s*-\s*([a-z_]+)\s*(#.*)?$/);
if (match) {
const key = match[1];
const comment = match[2] || '';
if (key) commentMap[key] = comment;
}
});
// 生成新的行,保留注释
const newRegionOrderLines = regions.map(r => {
const comment = commentMap[r.key] || '';
return `${indentStr}- ${r.key}${comment ? ' ' + comment : ''}`;
});
lines.splice(regionOrderStart, regionOrderEnd - regionOrderStart, ...newRegionOrderLines);
// 调整 regionsStart 和 regionsEnd
const lineDiff = newRegionOrderLines.length - (regionOrderEnd - regionOrderStart);
if (regionsStart > regionOrderEnd) {
regionsStart += lineDiff;
regionsEnd += lineDiff;
}
}
// 更新 regions 对象
if (regionsStart > 0 && regionsEnd > regionsStart) {
const originalRegionsBlock = lines.slice(regionsStart, regionsEnd);
const commentMap = {};
originalRegionsBlock.forEach(line => {
const match = line.match(/^\s*([a-z_]+):\s*[^#]*(#.*)?$/);
if (match) {
const key = match[1];
const comment = match[2] || '';
if (key) commentMap[key] = comment;
}
});
const indentStr = ' '.repeat(regionsIndent);
const newRegionsLines = regions.map(r => {
const comment = commentMap[r.key] || '';
return `${indentStr}${r.key}: ${r.enabled}${comment ? ' ' + comment.trim() : ''}`;
});
lines.splice(regionsStart, regionsEnd - regionsStart, ...newRegionsLines);
}
editor.value = lines.join('\n');
currentYaml = lines.join('\n');
updateBackdrop('yaml-editor', 'yaml-backdrop');
debounceSaveConfig();
renderDisplayRegionsList();
}
// 解析当前配置中的 RSS 源列表
function parseRssFeedsFromYaml() {
try {
const doc = jsyaml.load(currentYaml);
if (doc && doc.rss && doc.rss.feeds) {
return doc.rss.feeds;
}
} catch (e) {}
return [];
}
// 渲染 RSS 源列表
function renderRssFeedsList() {
const container = document.getElementById('rss-feeds-list');
if (!container) return;
const feeds = parseRssFeedsFromYaml();
if (feeds.length === 0) {
container.innerHTML = `暂无 RSS 源,请添加
`;
return;
}
container.innerHTML = feeds.map((f, idx) => `
`).join('');
}
// 删除 RSS 源
window.removeRssFeed = function(index) {
const feeds = parseRssFeedsFromYaml();
if (index < 0 || index >= feeds.length) return;
const feedName = feeds[index].name;
if (!confirm(`确定要删除 RSS 源 "${feedName}" 吗?`)) return;
feeds.splice(index, 1);
updateRssFeedsInYaml(feeds);
}
// 切换 RSS 源启用状态
window.toggleRssFeed = function(index) {
const feeds = parseRssFeedsFromYaml();
if (index < 0 || index >= feeds.length) return;
feeds[index].enabled = feeds[index].enabled === false ? true : false;
updateRssFeedsInYaml(feeds);
}
// 编辑 RSS 源
window.editRssFeed = function(index) {
const feeds = parseRssFeedsFromYaml();
if (index < 0 || index >= feeds.length) return;
const feed = feeds[index];
openRssModalWithData(feed, index);
}
// 更新 YAML 中的 RSS 配置(保留注释)
function updateRssFeedsInYaml(feeds) {
const editor = document.getElementById('yaml-editor');
let yaml = editor.value;
const lines = yaml.split('\n');
// 找到 rss.feeds 的位置
let feedsStart = -1;
let feedsEnd = -1;
let inRss = false;
let inFeeds = false;
let lastDataLineIndex = -1; // 记录最后一个数据行的位置
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
const trimmed = line.trim();
if (line.match(/^rss:/)) {
inRss = true;
continue;
}
if (inRss && !inFeeds && trimmed.startsWith('feeds:')) {
feedsStart = i + 1;
inFeeds = true;
continue;
}
if (inFeeds) {
const indent = line.search(/\S/);
// 如果是数据行(以 - 开头或是数据项的属性)
if (trimmed.startsWith('-')) {
lastDataLineIndex = i;
} else if (trimmed && !trimmed.startsWith('#') && indent > 2) {
// 数据项的属性行(如 name:, id:, url:)
lastDataLineIndex = i;
} else if (trimmed && !trimmed.startsWith('#') && indent <= 2 && indent >= 0) {
// 遇到缩进更小的非注释行,说明离开了 feeds 区域
feedsEnd = lastDataLineIndex + 1;
break;
}
}
// 检查是否进入下一个顶级模块
if (inRss && line.match(/^[a-z_]+:/) && !line.match(/^rss:/)) {
if (lastDataLineIndex >= 0) {
feedsEnd = lastDataLineIndex + 1;
} else {
feedsEnd = i;
}
break;
}
}
// 如果没有找到结束位置,使用最后一个数据行的下一行
if (feedsEnd === -1) {
feedsEnd = lastDataLineIndex >= 0 ? lastDataLineIndex + 1 : lines.length;
}
// 提取区域内的注释(保留在开头的注释)
const regionLines = lines.slice(feedsStart, feedsEnd);
const leadingComments = [];
for (const line of regionLines) {
const trimmed = line.trim();
if (trimmed.startsWith('#')) {
leadingComments.push(line);
} else if (trimmed.startsWith('-') || (trimmed && !trimmed.startsWith('#'))) {
// 遇到第一个数据项,停止收集注释
break;
} else if (trimmed === '') {
// 空行也保留
leadingComments.push(line);
}
}
// 构建新的 feeds 内容
const indent = ' '; // 4 空格缩进
const newFeedsLines = feeds.map(f => {
let feedYaml = `${indent}- id: "${f.id}"\n${indent} name: "${f.name}"\n${indent} url: "${f.url}"`;
if (f.enabled === false) {
feedYaml += `\n${indent} enabled: false`;
}
if (f.max_age_days !== undefined && f.max_age_days !== '') {
feedYaml += `\n${indent} max_age_days: ${f.max_age_days}`;
}
return feedYaml;
}).join('\n\n');
const beforeFeeds = lines.slice(0, feedsStart);
const afterFeeds = lines.slice(feedsEnd);
// 组合:前面内容 + 开头注释 + 新数据 + 空行 + 后面内容
const newYaml = [
...beforeFeeds,
...(leadingComments.length > 0 ? leadingComments : []),
newFeedsLines,
'',
...afterFeeds
].join('\n');
editor.value = newYaml;
currentYaml = newYaml;
updateBackdrop('yaml-editor', 'yaml-backdrop');
debounceSaveConfig();
renderRssFeedsList();
renderStandaloneLists(); // 同步更新独立展示区的 RSS 选择列表
}
// 打开 RSS 添加/编辑弹窗
window.openRssModal = function() {
openRssModalWithData(null, -1);
}
function openRssModalWithData(feed, editIndex) {
const modal = document.getElementById('rss-modal');
document.getElementById('rss-id').value = feed ? feed.id : '';
document.getElementById('rss-name').value = feed ? feed.name : '';
document.getElementById('rss-url').value = feed ? feed.url : '';
document.getElementById('rss-max-age').value = feed && feed.max_age_days !== undefined ? feed.max_age_days : '';
modal.dataset.editIndex = editIndex;
const title = modal.querySelector('h3');
if (title) {
title.innerHTML = editIndex >= 0 ?
'编辑 RSS 源' :
'添加 RSS 源';
}
modal.classList.remove('hidden');
}
// 关闭 RSS 弹窗
window.closeRssModal = function() {
const modal = document.getElementById('rss-modal');
modal.classList.add('hidden');
modal.dataset.editIndex = '-1';
document.getElementById('rss-id').value = '';
document.getElementById('rss-name').value = '';
document.getElementById('rss-url').value = '';
document.getElementById('rss-max-age').value = '';
}
// 确认添加/编辑 RSS
window.confirmAddRss = function() {
const modal = document.getElementById('rss-modal');
const editIndex = parseInt(modal.dataset.editIndex || '-1');
const id = document.getElementById('rss-id').value.trim();
const name = document.getElementById('rss-name').value.trim();
const url = document.getElementById('rss-url').value.trim();
const maxAge = document.getElementById('rss-max-age').value.trim();
if (!id || !name || !url) {
alert('请填写完整信息:ID、名称和 URL 都是必填项');
return;
}
const feeds = parseRssFeedsFromYaml();
const newFeed = { id, name, url };
if (maxAge) {
newFeed.max_age_days = parseInt(maxAge);
}
if (editIndex >= 0) {
feeds[editIndex] = newFeed;
} else {
feeds.push(newFeed);
}
updateRssFeedsInYaml(feeds);
closeRssModal();
}
// ==========================================
// 14. 独立展示区 (Standalone) 管理功能
// ==========================================
function parseStandaloneConfigFromYaml() {
try {
const doc = jsyaml.load(currentYaml);
if (doc && doc.display && doc.display.standalone) {
return {
platforms: doc.display.standalone.platforms || [],
rss_feeds: doc.display.standalone.rss_feeds || []
};
}
} catch (e) {}
return { platforms: [], rss_feeds: [] };
}
function renderStandaloneLists() {
const platformsContainer = document.getElementById('standalone-platforms-list');
const rssContainer = document.getElementById('standalone-rss-list');
if (!platformsContainer || !rssContainer) return;
const standaloneConfig = parseStandaloneConfigFromYaml();
const availablePlatforms = parsePlatformsFromYaml();
const availableRss = parseRssFeedsFromYaml();
// Render Platforms
if (availablePlatforms.length === 0) {
platformsContainer.innerHTML = `暂无可用平台
`;
} else {
platformsContainer.innerHTML = availablePlatforms.map(p => {
const isChecked = standaloneConfig.platforms.includes(p.id);
return `
`;
}).join('');
}
// Render RSS
if (availableRss.length === 0) {
rssContainer.innerHTML = `暂无可用 RSS 源
`;
} else {
rssContainer.innerHTML = availableRss.map(f => {
const isChecked = standaloneConfig.rss_feeds.includes(f.id);
return `
${f.name}
${f.id}
${f.url}
`;
}).join('');
}
}
window.toggleStandaloneItem = function(type, id) {
const config = parseStandaloneConfigFromYaml();
const list = config[type];
const index = list.indexOf(id);
if (index === -1) {
list.push(id);
} else {
list.splice(index, 1);
}
updateStandaloneConfigInYaml(type, list);
}
function updateStandaloneConfigInYaml(type, list) {
const editor = document.getElementById('yaml-editor');
let yaml = editor.value;
const lines = yaml.split('\n');
// 找到 display -> standalone -> [type]
let inDisplay = false;
let inStandalone = false;
let targetLineIndex = -1;
let indent = '';
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
if (line.match(/^display:/)) {
inDisplay = true;
continue;
}
if (inDisplay && line.trim().startsWith('standalone:')) {
inStandalone = true;
continue;
}
if (inStandalone) {
// 检查是否离开 standalone (遇到缩进更少或相同的非注释行)
const currentIndent = line.search(/\S/);
// standalone 下一级的缩进
if (line.match(new RegExp(`^\\s*${type}:`))) {
targetLineIndex = i;
indent = line.substring(0, line.indexOf(type));
break;
}
// 如果遇到下一个模块,停止
if (line.match(/^[a-z_]+:/) && !line.match(/^display:/)) break;
}
}
if (targetLineIndex !== -1) {
// 构建新的数组字符串 ["item1", "item2"]
const jsonStr = JSON.stringify(list);
// 保留原有注释
const originalLine = lines[targetLineIndex];
const commentMatch = originalLine.match(/#.*$/);
const comment = commentMatch ? commentMatch[0] : '';
lines[targetLineIndex] = `${indent}${type}: ${jsonStr}${comment ? ' ' + comment : ''}`;
const newYaml = lines.join('\n');
editor.value = newYaml;
currentYaml = newYaml;
updateBackdrop('yaml-editor', 'yaml-backdrop');
debounceSaveConfig();
// 不需要重新渲染整个列表,因为是 checkbox 点击触发的
// 但如果需要保持一致性,可以重新渲染
}
}
// 从文本中提取版本号
function extractVersion(text) {
// 匹配 Version: v5.3.0 或 Version: 5.3.0 格式
const versionMatch = text.match(/Version:\s*v?(\d+\.\d+\.\d+)/i);
if (versionMatch) {
return versionMatch[1]; // 返回不带 v 的版本号
}
return null;
}
// 比较版本号 (返回 1: v1 > v2, -1: v1 < v2, 0: v1 == v2)
function compareVersions(v1, v2) {
if (!v1 || !v2) return 0;
const parts1 = v1.split('.').map(Number);
const parts2 = v2.split('.').map(Number);
for (let i = 0; i < Math.max(parts1.length, parts2.length); i++) {
const num1 = parts1[i] || 0;
const num2 = parts2[i] || 0;
if (num1 > num2) return 1;
if (num1 < num2) return -1;
}
return 0;
}
// 版本检测主函数
window.checkVersion = async function() {
const btn = document.getElementById('version-check-btn');
const originalHTML = btn.innerHTML;
btn.innerHTML = '检测中... ';
btn.disabled = true;
try {
const versionRes = await fetch(REMOTE_VERSION_URL);
if (!versionRes.ok) {
throw new Error(`版本信息获取失败: ${versionRes.status}`);
}
const versionConfigText = await versionRes.text();
const versionMap = {};
versionConfigText.split('\n').forEach(line => {
const parts = line.trim().split('=');
if (parts.length >= 2) {
versionMap[parts[0].trim()] = parts[1].trim();
}
});
const currentTab = getCurrentTab();
let currentVersion = null;
let fileName = '';
if (currentTab === 'config') {
currentVersion = extractVersion(currentYaml);
fileName = 'config.yaml';
} else {
currentVersion = extractVersion(currentFrequency);
fileName = 'frequency_words.txt';
}
const latestVersion = versionMap[fileName];
if (!latestVersion) {
throw new Error(`未在远程版本清单中找到 ${fileName}`);
}
showVersionComparisonModal(fileName, currentVersion, latestVersion);
} catch (err) {
console.error('版本检测失败:', err);
showToast(`版本检测失败: ${err.message}`, 'error');
} finally {
btn.innerHTML = originalHTML;
btn.disabled = false;
}
}
// 获取当前 Tab
function getCurrentTab() {
return currentTab;
}
// 显示版本对比弹窗
function showVersionComparisonModal(fileName, currentVersion, latestVersion) {
const existingModal = document.getElementById('version-comparison-modal');
if (existingModal) existingModal.remove();
const comparison = compareVersions(currentVersion, latestVersion);
let statusIcon = '';
let statusText = '';
let statusColor = '';
let actionButtons = '';
if (!currentVersion) {
statusIcon = ' ';
statusText = '未检测到版本信息';
statusColor = 'text-gray-600';
actionButtons = `
关闭
更新到最新版本
`;
} else if (comparison < 0) {
statusIcon = ' ';
statusText = '发现新版本';
statusColor = 'text-orange-600';
actionButtons = `
稍后更新
立即更新
`;
} else if (comparison > 0) {
statusIcon = ' ';
statusText = '当前版本较新(开发版本?)';
statusColor = 'text-purple-600';
actionButtons = `
关闭
`;
} else {
statusIcon = ' ';
statusText = '已是最新版本';
statusColor = 'text-green-600';
actionButtons = `
关闭
`;
}
const modal = document.createElement('div');
modal.id = 'version-comparison-modal';
modal.className = 'modal-overlay';
modal.innerHTML = `
版本检测结果
${statusIcon}
${statusText}
配置文件
${fileName}
当前版本
${currentVersion ? 'v' + currentVersion : '未知'}
最新版本
v${latestVersion}
${comparison < 0 || !currentVersion ? `
提示: 更新将从 GitHub 加载最新的 ${fileName},你当前的修改将被覆盖。建议先复制保存你的自定义配置。
` : ''}
${actionButtons}
`;
document.body.appendChild(modal);
}
window.closeVersionModal = function() {
const modal = document.getElementById('version-comparison-modal');
if (modal) modal.remove();
}
// ==========================================
// 13. 平台添加弹窗逻辑
// ==========================================
// 预定义可用平台列表 (仅包含官方默认支持的平台)
const PRESET_PLATFORMS = [
{ key: 'toutiao', name: '今日头条' },
{ key: 'baidu', name: '百度热搜' },
{ key: 'wallstreetcn-hot', name: '华尔街见闻' },
{ key: 'thepaper', name: '澎湃新闻' },
{ key: 'bilibili-hot-search', name: 'bilibili 热搜' },
{ key: 'cls-hot', name: '财联社热门' },
{ key: 'ifeng', name: '凤凰网' },
{ key: 'tieba', name: '贴吧' },
{ key: 'weibo', name: '微博' },
{ key: 'douyin', name: '抖音' },
{ key: 'zhihu', name: '知乎' }
];
/**
* 打开平台添加弹窗
*/
window.openPlatformModal = function() {
const modal = document.getElementById('platform-modal');
if (modal) {
modal.classList.remove('hidden');
if (typeof switchPlatformTab === 'function') {
switchPlatformTab('select');
}
renderAvailablePlatforms();
}
}
/**
* 关闭平台添加弹窗
*/
window.closePlatformModal = function() {
const modal = document.getElementById('platform-modal');
if (modal) {
modal.classList.add('hidden');
}
}
/**
* 切换平台添加标签页
*/
window.switchPlatformTab = function(tab) {
currentPlatformTab = tab;
// 更新 Tab 样式
const tabSelect = document.getElementById('tab-platform-select');
const tabCustom = document.getElementById('tab-platform-custom');
if (tab === 'select') {
if (tabSelect) {
tabSelect.classList.add('text-blue-600', 'border-blue-600');
tabSelect.classList.remove('text-gray-500', 'border-transparent');
}
if (tabCustom) {
tabCustom.classList.remove('text-blue-600', 'border-blue-600');
tabCustom.classList.add('text-gray-500', 'border-transparent');
}
const selectPanel = document.getElementById('platform-select-panel');
const customPanel = document.getElementById('platform-custom-panel');
if (selectPanel) selectPanel.classList.remove('hidden');
if (customPanel) customPanel.classList.add('hidden');
} else {
if (tabCustom) {
tabCustom.classList.add('text-blue-600', 'border-blue-600');
tabCustom.classList.remove('text-gray-500', 'border-transparent');
}
if (tabSelect) {
tabSelect.classList.remove('text-blue-600', 'border-blue-600');
tabSelect.classList.add('text-gray-500', 'border-transparent');
}
const selectPanel = document.getElementById('platform-select-panel');
const customPanel = document.getElementById('platform-custom-panel');
if (selectPanel) selectPanel.classList.add('hidden');
if (customPanel) customPanel.classList.remove('hidden');
}
}
/**
* 渲染可用平台列表(排除已添加的)
*/
function renderAvailablePlatforms() {
const container = document.getElementById('available-platforms-list');
const tip = document.getElementById('no-platforms-tip');
if (!container) return;
container.innerHTML = '';
const currentPlatforms = parsePlatformsFromYaml();
const existingKeys = currentPlatforms.map(p => p.id);
const available = PRESET_PLATFORMS.filter(p => !existingKeys.includes(p.key));
if (available.length === 0) {
if (tip) {
tip.classList.remove('hidden');
tip.innerHTML = ` 所有预设平台已添加`;
}
} else {
if (tip) tip.classList.add('hidden');
available.forEach(p => {
const div = document.createElement('div');
div.className = 'flex items-center justify-between p-3 border border-gray-100 rounded hover:bg-blue-50 cursor-pointer transition-colors group';
div.onclick = () => confirmAddPlatform(p.key, p.name);
div.innerHTML = `
`;
container.appendChild(div);
});
}
}
/**
* 确认添加平台
*/
window.confirmAddPlatform = function(key, name) {
let platformKey = key;
let platformName = name;
// 如果是手动输入模式 (且未传入 key)
if (currentPlatformTab === 'custom' && !key) {
const keyInput = document.getElementById('custom-platform-key');
const nameInput = document.getElementById('custom-platform-name');
if (keyInput) platformKey = keyInput.value.trim();
if (nameInput) platformName = nameInput.value.trim();
if (!platformKey) {
alert('请输入平台 Key');
return;
}
if (!platformName) {
platformName = platformKey;
}
} else if (currentPlatformTab === 'select' && !key) {
alert('请直接点击上方列表中的平台进行添加');
return;
}
// 检查是否已存在
const currentPlatforms = parsePlatformsFromYaml();
if (currentPlatforms.find(p => p.id === platformKey)) {
alert(`平台 ${platformKey} 已存在!`);
return;
}
// 添加到 YAML (注意字段是 id 和 name)
const newPlatform = {
id: platformKey,
name: platformName,
enabled: true
};
// 重新构建 YAML
currentPlatforms.push(newPlatform);
updatePlatformsInYaml(currentPlatforms);
closePlatformModal();
const keyInput = document.getElementById('custom-platform-key');
const nameInput = document.getElementById('custom-platform-name');
if (keyInput) keyInput.value = '';
if (nameInput) nameInput.value = '';
renderPlatformsList();
showToast(`平台 ${platformName} 已添加`, 'success');
}
// 绑定到全局
window.updateToLatest = async function() {
closeVersionModal();
const currentTab = getCurrentTab();
const fileName = currentTab === 'config' ? 'config.yaml' : 'frequency_words.txt';
if (!confirm(`确定要从 GitHub 更新 ${fileName} 到最新版本吗?\n\n你当前的自定义配置将被覆盖,建议先复制保存。`)) {
return;
}
showToast('正在从 GitHub 加载最新版本...', 'info');
try {
const url = currentTab === 'config' ? REMOTE_CONFIG_URL : REMOTE_FREQUENCY_URL;
const res = await fetch(url);
if (!res.ok) {
throw new Error(`加载失败: ${res.status}`);
}
const text = await res.text();
if (currentTab === 'config') {
try {
jsyaml.load(text);
} catch (yamlErr) {
showToast(`YAML 语法错误: ${yamlErr.message}`, 'error');
return;
}
document.getElementById('yaml-editor').value = text;
currentYaml = text;
syncYamlToUI();
} else {
document.getElementById('frequency-editor').value = text;
currentFrequency = text;
syncFrequencyToUI();
}
saveToLocalStorage();
showToast(`已更新到最新版本`, 'success');
} catch (err) {
console.error('更新失败:', err);
showToast(`更新失败: ${err.message}`, 'error');
}
}
// ==========================================
// RSS 辅助功能
// ==========================================
function toggleRssTips() {
const panel = document.getElementById('rss-tips-panel');
const icon = document.getElementById('rss-tips-icon');
if (panel) {
panel.classList.toggle('hidden');
if (icon) {
icon.style.transform = panel.classList.contains('hidden') ? 'rotate(0deg)' : 'rotate(180deg)';
}
}
}
function fillRssUrl(url) {
const input = document.getElementById('rss-url');
if (input) {
input.value = url;
// 视觉反馈
input.classList.add('ring-2', 'ring-blue-500', 'bg-blue-50');
setTimeout(() => {
input.classList.remove('ring-2', 'ring-blue-500', 'bg-blue-50');
}, 500);
}
}