/**
* TrendRadar 配置文件编辑器核心逻辑
* 特点:确保原始 YAML 的注释和格式 100% 保留
*/
// 编辑器常量
const EDITOR_LINE_HEIGHT = 19.5; // 编辑器行高(px),用于滚动定位计算
// ==========================================
// 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. 二维码放大弹窗逻辑
// ==========================================
const QR_MODAL_DATA = {
weixin: {
icon: ' ',
iconBg: 'bg-green-100',
title: '不迷路',
subtitle: '第一时间获取更新通知',
img: './assets/weixin.webp',
alt: '微信公众号',
hint: '微信扫码关注公众号'
},
donate: {
icon: ' ',
iconBg: 'bg-emerald-100',
title: '随心赞赏',
subtitle: '金额随意,1 元也是鼓励 (´▽`ʃ♡ƪ)',
img: 'https://cdn-1258574687.cos.ap-shanghai.myqcloud.com/img/%2F2026%2F01%2F18ecce7c224ce0ea4c59394c29e408f8-e0d1db45.webp',
alt: '微信支付',
hint: '微信扫码 · 丰俭由人'
}
};
function openQrModal(type) {
const data = QR_MODAL_DATA[type];
if (!data) return;
const modal = document.getElementById('qr-modal');
document.getElementById('qr-modal-icon').className = 'w-10 h-10 rounded-xl flex items-center justify-center text-lg ' + data.iconBg;
document.getElementById('qr-modal-icon').innerHTML = data.icon;
document.getElementById('qr-modal-title').textContent = data.title;
document.getElementById('qr-modal-subtitle').textContent = data.subtitle;
document.getElementById('qr-modal-img').src = data.img;
document.getElementById('qr-modal-img').alt = data.alt;
document.getElementById('qr-modal-hint').textContent = data.hint;
modal.classList.remove('hidden');
}
function closeQrModal() {
const modal = document.getElementById('qr-modal');
if (modal) modal.classList.add('hidden');
}
window.openQrModal = openQrModal;
window.closeQrModal = closeQrModal;
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: "4.5", name: "4.5 筛选策略", key: "filter", editable: true },
{ id: "4.6", name: "4.6 AI 智能筛选", key: "ai_filter", 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_TIMELINE = 'trendradar_timeline_yaml';
const STORAGE_KEY_CONFIG_TIME = 'trendradar_config_time';
const STORAGE_KEY_FREQUENCY_TIME = 'trendradar_frequency_time';
const STORAGE_KEY_TIMELINE_TIME = 'trendradar_timeline_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_TIMELINE_URL = 'https://raw.githubusercontent.com/sansan0/TrendRadar/refs/heads/master/config/timeline.yaml';
const REMOTE_VERSION_URL = 'https://raw.githubusercontent.com/sansan0/TrendRadar/refs/heads/master/version_configs';
let currentYaml = "";
let currentFrequency = "";
let currentTimeline = "";
let currentFrequencyData = null; // 缓存解析后的数据,避免重复解析导致索引错位
let currentTab = "config";
// ==========================================
// 2. 初始化与事件绑定
// ==========================================
// 防抖定时器
let configSaveTimer = null;
let frequencySaveTimer = null;
let timelineSaveTimer = 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;
}
// 初始化 Timeline 编辑器
const timelineEditor = document.getElementById('timeline-editor');
const savedTimeline = localStorage.getItem(STORAGE_KEY_TIMELINE);
const INITIAL_TIMELINE = `# 在此粘贴你的 timeline.yaml...\n# 或拖拽文件到编辑器区域\n# 或点击右上角"加载官网最新配置"`;
if (savedTimeline && savedTimeline.trim() && savedTimeline !== INITIAL_TIMELINE) {
timelineEditor.value = savedTimeline;
currentTimeline = savedTimeline;
} else {
timelineEditor.value = INITIAL_TIMELINE;
currentTimeline = INITIAL_TIMELINE;
}
// 渲染右侧模块列表
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();
});
timelineEditor.addEventListener('input', (e) => {
currentTimeline = e.target.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
syncTimelineToUI();
debounceSaveTimeline();
});
// 同步滚动
yamlEditor.addEventListener('scroll', () => syncScroll('yaml-editor', 'yaml-backdrop'));
frequencyEditor.addEventListener('scroll', () => syncScroll('frequency-editor', 'frequency-backdrop'));
timelineEditor.addEventListener('scroll', () => syncScroll('timeline-editor', 'timeline-backdrop'));
// 初始化拖拽上传功能
initDragAndDrop(yamlEditor, 'config');
initDragAndDrop(frequencyEditor, 'frequency');
initDragAndDrop(timelineEditor, 'timeline');
// 页面关闭/刷新时立即保存
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');
updateBackdrop('timeline-editor', 'timeline-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);
}
// 防抖保存 timeline.yaml
function debounceSaveTimeline() {
if (timelineSaveTimer) clearTimeout(timelineSaveTimer);
timelineSaveTimer = setTimeout(() => {
saveTimelineToLocalStorage();
}, 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' : type === 'timeline' ? 'timeline.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']
: type === 'timeline'
? ['.yaml', '.yml']
: ['.txt', '.yaml', '.yml'];
const fileName = file.name.toLowerCase();
const isValid = validExtensions.some(ext => fileName.endsWith(ext));
if (!isValid) {
showToast(`请拖入 ${type === 'config' || type === 'timeline' ? '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 if (type === 'timeline') {
try {
jsyaml.load(content);
document.getElementById('timeline-editor').value = content;
currentTimeline = content;
updateBackdrop('timeline-editor', 'timeline-backdrop');
syncTimelineToUI();
showToast(`已加载: ${file.name}`, 'success');
} catch (err) {
showToast(`YAML 语法错误: ${err.message}`, 'error');
document.getElementById('timeline-editor').value = content;
currentTimeline = 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 保存与恢复
// ==========================================
// 通用 LocalStorage 保存函数
function _saveToStorage(content, storageKey, timeKey, label) {
try {
if (content && content.trim().length > 10) {
const now = new Date().toISOString();
localStorage.setItem(storageKey, content);
localStorage.setItem(timeKey, now);
updateSaveTimeDisplay();
}
} catch (e) {
console.warn(`LocalStorage 保存 ${label} 失败:`, e);
}
}
function saveConfigToLocalStorage() {
_saveToStorage(currentYaml, STORAGE_KEY_CONFIG, STORAGE_KEY_CONFIG_TIME, 'config');
}
function saveFrequencyToLocalStorage() {
_saveToStorage(currentFrequency, STORAGE_KEY_FREQUENCY, STORAGE_KEY_FREQUENCY_TIME, 'frequency');
}
function saveTimelineToLocalStorage() {
_saveToStorage(currentTimeline, STORAGE_KEY_TIMELINE, STORAGE_KEY_TIMELINE_TIME, 'timeline');
}
// 保存全部(页面关闭时调用)
function saveAllToLocalStorage() {
saveConfigToLocalStorage();
saveFrequencyToLocalStorage();
saveTimelineToLocalStorage();
}
// 兼容旧调用
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');
}
}
}
// 更新 timeline.yaml 的时间显示
const timelineTime = localStorage.getItem(STORAGE_KEY_TIMELINE_TIME);
const timelineTimeEl = document.getElementById('timeline-save-time');
const timelineLabelEl = document.getElementById('timeline-save-label');
if (timelineTimeEl) {
timelineTimeEl.textContent = formatSaveTime(timelineTime);
timelineTimeEl.title = timelineTime ? new Date(timelineTime).toLocaleString('zh-CN') : '未保存';
if (timelineLabelEl) {
if (timelineTime) {
timelineLabelEl.classList.remove('hidden');
} else {
timelineLabelEl.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;
const loadTimeline = document.getElementById('load-timeline-yaml')?.checked;
if (!loadConfig && !loadFrequency && !loadTimeline) {
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 })));
if (loadTimeline) promises.push(fetch(REMOTE_TIMELINE_URL).then(r => ({ type: 'timeline', res: r })));
const results = await Promise.all(promises);
for (const { type, res } of results) {
if (!res.ok) {
const names = { config: 'config.yaml', frequency: 'frequency_words.txt', timeline: 'timeline.yaml' };
throw new Error(`${names[type]} 加载失败: ${res.status}`);
}
const text = await res.text();
if (type === 'config') {
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 if (type === 'timeline') {
try {
jsyaml.load(text);
} catch (yamlErr) {
showToast(`YAML 语法错误: ${yamlErr.message}`, 'error');
continue;
}
document.getElementById('timeline-editor').value = text;
currentTimeline = text;
updateBackdrop('timeline-editor', 'timeline-backdrop');
syncTimelineToUI();
} 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');
if (loadTimeline) loadedFiles.push('timeline.yaml');
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 = EDITOR_LINE_HEIGHT;
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;
// 直接匹配包含模块编号的标题行,兼容 "4." 和 "4.5" 两种编号格式
const escapedId = String(mod.id).replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
const moduleTitlePattern = new RegExp(`^#\\s*${escapedId}(?:\\.)?\\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 = EDITOR_LINE_HEIGHT;
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 "filter":
html = createSelectControl(mod.key, "method", "筛选方法", ["keyword", "ai"]);
html += createToggleControl(mod.key, "priority_sort_enabled", "AI 模式按标签优先级排序");
html += `
说明: method=keyword 使用 frequency_words.txt;
method=ai 使用 ai_interests.txt + AI 筛选配置。
priority_sort_enabled 仅在 method=ai 时生效。
`;
break;
case "ai_filter":
html = `
仅当 filter.method=ai 时生效。
`;
html += createNumberControl(mod.key, "batch_size", "每批标题数量");
html += createNumberControl(mod.key, "batch_interval", "分批间隔 (秒)");
html += createNumberControl(mod.key, "min_score", "最低分数阈值 (0~1)");
html += createInputControl(mod.key, "interests_file", "兴趣描述文件 (可选)");
html += `
留空时使用 config/ai_interests.txt;填写后仅从
config/custom/ai/ 查找该文件名。
`;
html += createNumberControl(mod.key, "reclassify_threshold", "全量重分类阈值 (0~1)");
html += createInputControl(mod.key, "prompt_file", "分类提示词文件");
html += createInputControl(mod.key, "extract_prompt_file", "标签提取提示词文件");
html += createInputControl(mod.key, "update_tags_prompt_file", "标签更新提示词文件");
break;
case "display":
html = `推送内容控制 (可拖拽排序)
`;
html += `
`;
html += `
提示:列表顺序决定了报告中的显示顺序
`;
// Standalone Configuration Section
html += ``;
html += `
独立展示区配置 (推送展示由上方开关控制,AI 分析由 AI 模块的开关独立控制)
`;
html += createNumberControl(mod.key, "standalone.max_items", "每个源最多展示条数");
html += `
选择要展示的热榜平台
`;
html += `
`;
html += `
选择要展示的 RSS 源
`;
html += `
`;
html += `
`;
setTimeout(() => {
renderDisplayRegionsList();
renderStandaloneLists();
}, 0);
break;
case "notification":
html = `
推送时间由 timeline.yaml 控制,切换到 timeline.yaml 标签页可可视化编辑调度规则。
此处仅配置通知渠道(Telegram / 企业微信等),请在左侧编辑器中修改。
`;
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 分析报告");
// 提示:分析时间窗口已迁移到 timeline.yaml
html += `
AI 分析的执行时间已由 timeline.yaml 统一控制。
`;
// 其他 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_standalone", "包含独立展示区数据");
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) {
// 允许为模块新增一级字段(例如默认被注释掉的 ai_filter.interests_file)
if (pathParts.length === 1) {
let formattedVal = newVal;
if (typeof newVal === 'string') {
formattedVal = `"${newVal.replace(/"/g, '\\"')}"`;
}
lines.splice(moduleEndLine, 0, ` ${searchKey}: ${formattedVal}`);
editor.value = lines.join('\n');
currentYaml = editor.value;
updateBackdrop('yaml-editor', 'yaml-backdrop');
debounceSaveConfig();
}
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 timelineEditor = document.getElementById('timeline-editor');
const editor = currentTab === 'config' ? yamlEditor : currentTab === 'timeline' ? timelineEditor : frequencyEditor;
const text = editor.value;
const btn = document.querySelector('button[onclick="copyResult()"]');
const original = btn.innerHTML;
if (navigator.clipboard && navigator.clipboard.writeText) {
navigator.clipboard.writeText(text).then(() => {
btn.innerHTML = ' 已复制!';
setTimeout(() => btn.innerHTML = original, 2000);
}).catch(() => {
editor.select();
document.execCommand('copy');
btn.innerHTML = ' 已复制!';
setTimeout(() => btn.innerHTML = original, 2000);
});
} else {
editor.select();
document.execCommand('copy');
btn.innerHTML = ' 已复制!';
setTimeout(() => btn.innerHTML = original, 2000);
}
}
window.resetToDefault = function() {
if (confirm('确定要重置为初始状态吗?未保存的修改将丢失。')) {
if (currentTab === 'config') {
const yamlEditor = document.getElementById('yaml-editor');
yamlEditor.value = INITIAL_YAML;
currentYaml = INITIAL_YAML;
updateBackdrop('yaml-editor', 'yaml-backdrop');
localStorage.removeItem(STORAGE_KEY_CONFIG);
localStorage.removeItem(STORAGE_KEY_CONFIG_TIME);
renderModules();
syncYamlToUI();
updateSaveTimeDisplay();
} else if (currentTab === 'timeline') {
const timelineEditor = document.getElementById('timeline-editor');
const initialTimeline = `# 在此粘贴你的 timeline.yaml...\n# 或拖拽文件到编辑器区域\n# 或点击右上角"加载官网最新配置"`;
timelineEditor.value = initialTimeline;
currentTimeline = initialTimeline;
updateBackdrop('timeline-editor', 'timeline-backdrop');
localStorage.removeItem(STORAGE_KEY_TIMELINE);
localStorage.removeItem(STORAGE_KEY_TIMELINE_TIME);
syncTimelineToUI();
updateSaveTimeDisplay();
} else {
const frequencyEditor = document.getElementById('frequency-editor');
frequencyEditor.value = "# 在此粘贴你的 frequency_words.txt 内容...\n\n[GLOBAL_FILTER]\n\n[WORD_GROUPS]\n";
currentFrequency = frequencyEditor.value;
updateBackdrop('frequency-editor', 'frequency-backdrop');
localStorage.removeItem(STORAGE_KEY_FREQUENCY);
localStorage.removeItem(STORAGE_KEY_FREQUENCY_TIME);
syncFrequencyToUI();
updateSaveTimeDisplay();
}
showToast('已重置为初始状态', 'success');
}
}
// ==========================================
// 8. Tab 切换功能
// ==========================================
window.switchTab = function(tab) {
currentTab = tab;
const activeClass = "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";
const inactiveClass = "tab-button px-4 py-2 text-xs font-bold text-gray-500 hover:bg-[#2d2d30] transition-colors border-b-2 border-transparent";
// 更新 Tab 按钮状态
const configBtn = document.getElementById('tab-config');
const freqBtn = document.getElementById('tab-frequency');
const timelineBtn = document.getElementById('tab-timeline');
configBtn.className = tab === 'config' ? activeClass : inactiveClass;
freqBtn.className = tab === 'frequency' ? activeClass : inactiveClass;
timelineBtn.className = tab === 'timeline' ? activeClass : inactiveClass;
// 更新编辑器显示
document.getElementById('yaml-editor-wrap').classList.toggle('hidden', tab !== 'config');
document.getElementById('frequency-editor-wrap').classList.toggle('hidden', tab !== 'frequency');
document.getElementById('timeline-editor-wrap').classList.toggle('hidden', tab !== 'timeline');
// 更新右侧面板
document.getElementById('config-panel').classList.toggle('hidden', tab !== 'config');
document.getElementById('frequency-panel').classList.toggle('hidden', tab !== 'frequency');
document.getElementById('timeline-panel').classList.toggle('hidden', tab !== 'timeline');
// 更新模块导航栏显示状态:只在 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');
const saveTimeTimeline = document.getElementById('save-time-timeline');
if (saveTimeConfig) saveTimeConfig.classList.toggle('hidden', tab !== 'config');
if (saveTimeFrequency) saveTimeFrequency.classList.toggle('hidden', tab !== 'frequency');
if (saveTimeTimeline) saveTimeTimeline.classList.toggle('hidden', tab !== 'timeline');
// 更新右侧标题
const versionBtn = document.getElementById('version-check-btn');
if (tab === 'config') {
document.getElementById('right-panel-title').textContent = '配置模块';
if (versionBtn) { versionBtn.style.display = ''; versionBtn.title = "检测 config.yaml 版本"; }
} else if (tab === 'frequency') {
document.getElementById('right-panel-title').textContent = '频率词编辑';
if (versionBtn) { versionBtn.style.display = ''; versionBtn.title = "检测 frequency_words.txt 版本"; }
} else {
document.getElementById('right-panel-title').textContent = '时间线调度';
if (versionBtn) versionBtn.style.display = 'none';
}
if (tab === 'frequency') {
renderFrequencyPanel();
}
if (tab === 'timeline') {
syncTimelineToUI();
}
}
// ==========================================
// 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);
});
// 跳过原始文件中的 [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]');
// 添加词组(注释已保存在每个词组的 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);
}
}
// ==========================================
// 13. Timeline 编辑器功能
// ==========================================
const PRESET_META = {
morning_evening: { icon: 'fa-sun', color: 'text-amber-500', bg: 'bg-amber-50', recommend: true },
always_on: { icon: 'fa-bolt', color: 'text-blue-500', bg: 'bg-blue-50' },
office_hours: { icon: 'fa-briefcase', color: 'text-green-500', bg: 'bg-green-50' },
night_owl: { icon: 'fa-moon', color: 'text-indigo-500', bg: 'bg-indigo-50' },
custom: { icon: 'fa-sliders', color: 'text-purple-500', bg: 'bg-purple-50' }
};
const DAY_NAMES = ['周一', '周二', '周三', '周四', '周五', '周六', '周日'];
/**
* 从当前 config.yaml 中读取 schedule.preset
*/
function getActivePreset() {
try {
const doc = jsyaml.load(currentYaml);
return doc?.schedule?.preset || 'morning_evening';
} catch { return 'morning_evening'; }
}
/**
* 解析 timeline YAML,返回结构化数据
*/
function parseTimelineData() {
try {
const doc = jsyaml.load(currentTimeline);
if (!doc) return null;
return doc;
} catch { return null; }
}
/**
* 获取指定预设/custom 的完整配置
*/
function getPresetConfig(data, presetName) {
if (!data) return null;
if (presetName === 'custom') return data.custom || null;
return data.presets?.[presetName] || null;
}
/**
* 主渲染函数:解析 timeline YAML → 渲染右侧面板
*/
function syncTimelineToUI() {
const panel = document.getElementById('timeline-panel');
if (!panel) return;
const data = parseTimelineData();
const activePreset = getActivePreset();
if (!data) {
panel.innerHTML = `
请在左侧粘贴 timeline.yaml 内容
或点击右上角「加载官网最新配置」
`;
return;
}
let html = '';
// ── Layer 1: 预设模式选择卡片 ──
html += `
调度模式
`;
// 收集所有预设名
const presetNames = Object.keys(data.presets || {});
// 确保 custom 在最后
const allModes = [...presetNames.filter(n => n !== 'custom'), ...(data.custom ? ['custom'] : [])];
allModes.forEach(name => {
const meta = PRESET_META[name] || { icon: 'fa-puzzle-piece', color: 'text-gray-500', bg: 'bg-gray-50' };
const presetCfg = getPresetConfig(data, name);
const label = presetCfg?.name || meta.label || name;
const desc = presetCfg?.description || meta.desc || '';
const isActive = name === activePreset;
const isProtected = ['morning_evening', 'always_on', 'office_hours', 'night_owl', 'custom'].includes(name);
html += `
${meta.recommend ? '
推荐
' : ''}
${!isProtected ? ` ` : ''}
${isActive ? '
当前
' : ''}
`;
});
// 新建模式卡片
html += `
`;
html += `
`;
// 获取当前预设配置
const config = getPresetConfig(data, activePreset);
if (!config) {
html += `
未找到预设「${activePreset}」的配置
`;
panel.innerHTML = html;
return;
}
// ── Layer 2: 周视图时间线 ──
html += renderWeekView(config, activePreset);
// ── Layer 3: 时间段详情 ──
html += renderPeriodDetails(config, activePreset);
panel.innerHTML = html;
// 初始化日计划 Tag 拖拽排序
initDayPlanSortable(activePreset);
}
/**
* 渲染周视图(7 天 × 24 小时水平条)
*/
function renderWeekView(config, presetName) {
const periods = config.periods || {};
const dayPlans = config.day_plans || {};
const weekMap = config.week_map || {};
// 时间刻度
let html = `
周视图
`;
for (let h = 0; h <= 24; h += 2) {
html += `
${h < 10 ? '0' : ''}${h}
`;
}
html += `
`;
// 获取当前星期几 (1=周一...7=周日)
const today = new Date().getDay();
const todayIso = today === 0 ? 7 : today;
// 7 天的行
for (let d = 1; d <= 7; d++) {
const dayPlanName = weekMap[d] || weekMap[String(d)];
const dayPlan = dayPlans[dayPlanName];
const dayPeriodNames = dayPlan?.periods || [];
const isToday = d === todayIso;
html += `
${DAY_NAMES[d-1]}
`;
// 渲染各时间段色块
dayPeriodNames.forEach(pName => {
const p = periods[pName];
if (!p) return;
const merged = mergeWithDefault(p, config.default);
const colorClass = getBlockColorClass(merged);
const blocks = computeBlocks(p.start, p.end);
blocks.forEach(b => {
const left = (b.start / 24 * 100).toFixed(2);
const width = ((b.end - b.start) / 24 * 100).toFixed(2);
const label = p.name || pName;
html += `
${label}
`;
});
});
// 当前时间指示线(仅今天)
if (isToday) {
const nowTime = new Date();
const nowH = nowTime.getHours() + nowTime.getMinutes() / 60;
const nowLeftPct = (nowH / 24 * 100).toFixed(2);
html += `
`;
}
html += `
`;
}
// 图例
html += `
`;
html += `
`;
return html;
}
/**
* 合并 period 与 default(period 字段优先)
*/
function mergeWithDefault(period, defaultCfg) {
if (!defaultCfg) return period || {};
const merged = { ...defaultCfg, ...period };
if (period.once || defaultCfg.once) {
merged.once = { ...(defaultCfg.once || {}), ...(period.once || {}) };
}
return merged;
}
/**
* 根据 push/analyze 状态确定色块 CSS 类
*/
function getBlockColorClass(merged) {
const push = !!merged.push;
const analyze = !!merged.analyze;
if (push && analyze) return 'tl-block-push-analyze';
if (push) return 'tl-block-push';
if (analyze) return 'tl-block-analyze';
if (merged.collect !== false) return 'tl-block-collect';
return 'tl-block-silent';
}
/**
* 计算时间段的渲染块(处理跨午夜情况)
* 返回 [{start: 小时数, end: 小时数}, ...] 的数组
*/
function computeBlocks(startStr, endStr) {
if (!startStr || !endStr) return [];
const s = parseTime(startStr);
const e = parseTime(endStr);
if (s < e) return [{ start: s, end: e }];
// 跨午夜
return [{ start: s, end: 24 }, { start: 0, end: e }];
}
function parseTime(str) {
const [h, m] = (str || '00:00').split(':').map(Number);
return h + (m || 0) / 60;
}
function escapeAttr(s) {
return (s || '').replace(/'/g, "\\'").replace(/"/g, '"');
}
/**
* Tooltip 显示/隐藏
*/
let tlTooltipEl = null;
function showTlTooltip(event, name, start, end, push, analyze, mode) {
hideTlTooltip();
const el = document.createElement('div');
el.className = 'tl-tooltip';
let features = [];
if (push) features.push('推送 ');
if (analyze) features.push('分析 ');
if (!push && !analyze) features.push('仅采集 ');
el.innerHTML = `${name}
${start} - ${end}
${features.join(' / ')}
${mode ? `模式: ${mode}
` : ''}`;
document.body.appendChild(el);
tlTooltipEl = el;
const rect = event.target.getBoundingClientRect();
el.style.left = (rect.left + rect.width / 2 - el.offsetWidth / 2) + 'px';
el.style.top = (rect.top - el.offsetHeight - 8) + 'px';
// 确保不超出屏幕
const elRect = el.getBoundingClientRect();
if (elRect.left < 4) el.style.left = '4px';
if (elRect.right > window.innerWidth - 4) el.style.left = (window.innerWidth - el.offsetWidth - 4) + 'px';
if (elRect.top < 4) {
el.style.top = (rect.bottom + 8) + 'px';
el.style.setProperty('--arrow', 'top');
}
}
function hideTlTooltip() {
if (tlTooltipEl) {
tlTooltipEl.remove();
tlTooltipEl = null;
}
}
/**
* 渲染时间段详情面板
*/
function renderPeriodDetails(config, presetName) {
const isCustom = presetName === 'custom';
const periods = config.periods || {};
const dayPlans = config.day_plans || {};
const weekMap = config.week_map || {};
const defaults = config.default || {};
let html = '';
// ── Default 配置(默认展开)──
html += `
不在任何时间段内时,使用以下配置:
${renderBehaviorToggles(defaults, presetName, 'default', defaults)}
`;
// ── 时间段列表 ──
const periodEntries = Object.entries(periods);
html += `
时间段 (Periods)
新增
`;
if (periodEntries.length > 0) {
html += `
`;
periodEntries.forEach(([key, p]) => {
const merged = mergeWithDefault(p, defaults);
const colorClass = getBlockColorClass(merged);
html += `
${p.start || '?'} - ${p.end || '?'}
${renderBehaviorToggles(merged, presetName, key, p)}
`;
});
html += `
`;
} else {
html += `
此模式无自定义时间段,全天使用 default 配置
`;
}
html += `
`;
// ── 日计划 ──
const dayPlanEntries = Object.entries(dayPlans);
html += `
日计划 (Day Plans)
新增
`;
if (dayPlanEntries.length > 0) {
html += `
`;
dayPlanEntries.forEach(([name, plan]) => {
const pList = plan.periods || [];
// 构建可用 period 下拉(排除已添加的)
const availablePeriods = periodEntries.filter(([k]) => !pList.includes(k));
html += `
${name}
${pList.length > 0 ? pList.map(pn => {
const p = periods[pn];
const merged = p ? mergeWithDefault(p, defaults) : {};
const cc = getBlockColorClass(merged);
return `
${p?.name || pn}
×
`;
}).join('') : '空 (全天走 default) '}
${availablePeriods.length > 0 ? `
+ 添加
${availablePeriods.map(([k, p]) => `${p.name || k} `).join('')}
` : ''}
`;
});
html += `
`;
}
html += `
`;
// ── 周映射(下拉选择)──
const dayPlanKeys = Object.keys(dayPlans);
// 为不同日计划分配颜色
const planColorMap = {};
const planColors = ['bg-blue-50 border-blue-200', 'bg-green-50 border-green-200', 'bg-amber-50 border-amber-200', 'bg-purple-50 border-purple-200', 'bg-rose-50 border-rose-200', 'bg-cyan-50 border-cyan-200', 'bg-orange-50 border-orange-200'];
dayPlanKeys.forEach((k, idx) => { planColorMap[k] = planColors[idx % planColors.length]; });
html += `
周映射 (Week Map)
`;
for (let d = 1; d <= 7; d++) {
const plan = weekMap[d] || weekMap[String(d)] || '';
const rowColor = planColorMap[plan] || '';
const options = dayPlanKeys.map(k =>
`
${k} `
).join('');
html += `
${DAY_NAMES[d-1]}
${options}
`;
}
html += `
全周统一
工作日统一
工作日/周末
`;
// custom 专属:时间段冲突策略
if (isCustom) {
const overlapPolicy = (config.overlap && config.overlap.policy) || 'error_on_overlap';
html += `
冲突策略 (Overlap)
policy:
error_on_overlap(推荐)
last_wins(后定义优先)
error_on_overlap 会在时间段重叠时直接报错;last_wins 会按 day_plans 中靠后的时间段覆盖。
`;
}
// 提示
if (!isCustom) {
html += `
直接在上方调整开关和下拉框,左侧 YAML 会同步更新。如需更精细的控制,可直接编辑左侧 YAML 或修改 timeline.yaml 。
`;
} else {
html += `
自定义模式支持完全自由编辑。可直接在上方调整控件,或在左侧编辑 YAML 文本,两边实时同步。
`;
}
return html;
}
/**
* 渲染行为开关(可交互)
* presetName: 当前预设名(用于定位 YAML 中的位置)
* periodKey: 'default' 或时间段 key(如 'weekday_morning')
*/
function renderBehaviorToggles(cfg, presetName, periodKey, rawCfg = null) {
const toggleItems = [
{ k: 'collect', label: '采集', icon: 'fa-download' },
{ k: 'analyze', label: '分析', icon: 'fa-brain' },
{ k: 'push', label: '推送', icon: 'fa-bell' },
];
const uid = `tl-${presetName}-${periodKey}`;
let html = '';
toggleItems.forEach(item => {
const val = cfg[item.k];
const on = val === true || val === 'true';
const toggleId = `${uid}-${item.k}`;
html += `
${item.label}
`;
});
html += '
';
// 报告模式下拉
const reportModes = ['current', 'daily', 'incremental'];
const aiModes = ['follow_report', 'daily', 'current', 'incremental'];
html += ``;
// report_mode
html += `
报告:
${reportModes.map(m => `${m} `).join('')}
`;
// ai_mode
html += `
AI:
${aiModes.map(m => `${m} `).join('')}
`;
// once toggles
const onceAnalyze = cfg.once?.analyze === true;
const oncePush = cfg.once?.push === true;
html += `
仅分析一次
`;
html += `
仅推送一次
`;
html += `
`;
// 时间段编辑(仅非 default)
if (periodKey !== 'default' && (cfg.start || cfg.end)) {
html += `
时间:
~
`;
}
// 可选筛选覆盖(仅显示“当前层”字段,避免把继承值误当作显式配置)
const baseCfg = rawCfg || {};
const filterMethod = baseCfg.filter_method || '';
const frequencyFile = baseCfg.frequency_file || '';
const interestsFile = baseCfg.interests_file || '';
const methodHint = periodKey === 'default' ? '不填则跟随全局 filter.method' : '不填则继承 default(再回退全局)';
html += `
筛选覆盖(可选)
${methodHint}。frequency_file 从 config/custom/keyword/ 查找,
interests_file 从 config/custom/ai/ 查找;留空会删除该字段并恢复继承。
`;
return html;
}
/**
* 点击周视图色块 → 滚动到对应 period 卡片并高亮
*/
window.scrollToPeriodCard = function(periodKey) {
const card = document.getElementById('tl-period-' + periodKey);
if (!card) return;
card.scrollIntoView({ behavior: 'smooth', block: 'center' });
card.classList.add('tl-period-highlight');
setTimeout(() => card.classList.remove('tl-period-highlight'), 1500);
}
/**
* 折叠/展开切换
*/
window.toggleTlCollapsible = function(header) {
const body = header.nextElementSibling;
body.classList.toggle('collapsed');
header.classList.toggle('is-collapsed');
}
/**
* 右侧开关变更 → 更新左侧 timeline YAML
*/
window.onTlToggle = function(presetName, periodKey, field, value) {
updateTimelineField(presetName, periodKey, field, value);
}
window.onTlSelect = function(presetName, periodKey, field, value) {
updateTimelineField(presetName, periodKey, field, value);
}
window.onTlOptionalInput = function(presetName, periodKey, field, rawValue) {
const value = (rawValue || '').trim();
if (!value) {
removeTimelineField(presetName, periodKey, field);
return;
}
updateTimelineField(presetName, periodKey, field, value);
}
window.onTlOptionalSelect = function(presetName, periodKey, field, value) {
if (!value) {
removeTimelineField(presetName, periodKey, field);
return;
}
updateTimelineField(presetName, periodKey, field, value);
}
window.onTlCustomOverlapPolicy = function(value) {
updateTimelineSectionField('custom', 'overlap.policy', value);
}
/**
* 周映射下拉变更 → 更新 timeline YAML 中的 week_map.N
*/
window.onTlWeekMap = function(presetName, dayNum, value) {
const editor = document.getElementById('timeline-editor');
let yaml = editor.value;
const lines = yaml.split('\n');
// 定位 preset section
const isCustom = presetName === 'custom';
let sectionStart = -1;
let sectionIndent = 0;
if (isCustom) {
for (let i = 0; i < lines.length; i++) {
if (/^custom:\s*/.test(lines[i])) { sectionStart = i; break; }
}
} else {
let inPresets = false;
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
if (/^presets:\s*/.test(line)) { inPresets = true; continue; }
if (inPresets && /^\S/.test(line) && !line.startsWith('#')) break;
if (inPresets) {
const m = line.match(/^(\s+)(\S+):\s*/);
if (m && m[2] === presetName) { sectionStart = i; sectionIndent = m[1].length; break; }
}
}
}
if (sectionStart < 0) return;
let sectionEnd = lines.length;
for (let i = sectionStart + 1; i < lines.length; i++) {
const line = lines[i];
if (line.trim() === '' || line.trim().startsWith('#')) continue;
if (line.search(/\S/) <= sectionIndent) { sectionEnd = i; break; }
}
// 找 week_map: 行
const weekMapLine = findChildKey(lines, sectionStart, sectionEnd, sectionIndent, 'week_map');
if (weekMapLine < 0) return;
const wmIndent = lines[weekMapLine].search(/\S/);
const wmEnd = findBlockEnd(lines, weekMapLine, wmIndent, sectionEnd);
// 找 dayNum: 行
const dayKey = String(dayNum);
const dayLine = findChildKey(lines, weekMapLine, wmEnd, wmIndent, dayKey);
if (dayLine >= 0) {
replaceLineValue(lines, dayLine, value);
}
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
clearTimeout(window._tlRenderTimer);
window._tlRenderTimer = setTimeout(() => syncTimelineToUI(), 300);
}
/**
* 核心:修改 timeline YAML 中的指定字段,保留注释
*/
function updateTimelineField(presetName, periodKey, field, value) {
const editor = document.getElementById('timeline-editor');
let yaml = editor.value;
const lines = yaml.split('\n');
// 1. 定位预设/custom 的起始行
const isCustom = presetName === 'custom';
let sectionStart = -1;
let sectionIndent = 0;
if (isCustom) {
// 找 custom: 顶层 key
for (let i = 0; i < lines.length; i++) {
if (/^custom:\s*/.test(lines[i])) {
sectionStart = i;
sectionIndent = 0;
break;
}
}
} else {
// 找 presets: 下的 presetName:
let inPresets = false;
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
if (/^presets:\s*/.test(line)) {
inPresets = true;
continue;
}
if (inPresets && /^\S/.test(line) && !line.startsWith('#')) {
break; // left presets block
}
if (inPresets) {
const m = line.match(/^(\s+)(\S+):\s*/);
if (m && m[2] === presetName) {
sectionStart = i;
sectionIndent = m[1].length;
break;
}
}
}
}
if (sectionStart < 0) return;
// 2. 找到 section 结束行
let sectionEnd = lines.length;
for (let i = sectionStart + 1; i < lines.length; i++) {
const line = lines[i];
if (line.trim() === '' || line.trim().startsWith('#')) continue;
const indent = line.search(/\S/);
if (indent <= sectionIndent) {
sectionEnd = i;
break;
}
}
// 3. 在 section 内定位 periodKey 子区域
let targetStart, targetEnd;
const fieldParts = field.split('.');
if (periodKey === 'default') {
// 找 default: 行
targetStart = findChildKey(lines, sectionStart, sectionEnd, sectionIndent, 'default');
} else {
// 找 periods: 下的 periodKey:
const periodsLine = findChildKey(lines, sectionStart, sectionEnd, sectionIndent, 'periods');
if (periodsLine < 0) return;
const periodsIndent = lines[periodsLine].search(/\S/);
const periodsEnd = findBlockEnd(lines, periodsLine, periodsIndent, sectionEnd);
targetStart = findChildKey(lines, periodsLine, periodsEnd, periodsIndent, periodKey);
}
if (targetStart < 0) return;
const targetIndent = lines[targetStart].search(/\S/);
targetEnd = findBlockEnd(lines, targetStart, targetIndent, sectionEnd);
// 4. 在 target 内查找 field(支持 once.analyze 嵌套)
let lineIdx = -1;
if (fieldParts.length === 1) {
lineIdx = findChildKey(lines, targetStart, targetEnd, targetIndent, fieldParts[0]);
} else {
// nested: once.analyze → find once: then analyze:
const parentLine = findChildKey(lines, targetStart, targetEnd, targetIndent, fieldParts[0]);
if (parentLine >= 0) {
const parentIndent = lines[parentLine].search(/\S/);
const parentEnd = findBlockEnd(lines, parentLine, parentIndent, targetEnd);
lineIdx = findChildKey(lines, parentLine, parentEnd, parentIndent, fieldParts[1]);
}
}
if (lineIdx < 0) {
// 字段不存在 → 需要插入
insertTimelineField(lines, targetStart, targetEnd, targetIndent, field, value, fieldParts);
} else {
// 字段存在 → 原地替换值
replaceLineValue(lines, lineIdx, value);
}
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
// 延迟重新渲染(避免输入中途刷新)
clearTimeout(window._tlRenderTimer);
window._tlRenderTimer = setTimeout(() => syncTimelineToUI(), 300);
}
function resolveTimelineSection(lines, presetName) {
const isCustom = presetName === 'custom';
let sectionStart = -1;
let sectionIndent = 0;
if (isCustom) {
for (let i = 0; i < lines.length; i++) {
if (/^custom:\s*/.test(lines[i])) {
sectionStart = i;
sectionIndent = 0;
break;
}
}
} else {
let inPresets = false;
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
if (/^presets:\s*/.test(line)) {
inPresets = true;
continue;
}
if (inPresets && /^\S/.test(line) && !line.startsWith('#')) {
break;
}
if (inPresets) {
const m = line.match(/^(\s+)(\S+):\s*/);
if (m && m[2] === presetName) {
sectionStart = i;
sectionIndent = m[1].length;
break;
}
}
}
}
if (sectionStart < 0) return null;
let sectionEnd = lines.length;
for (let i = sectionStart + 1; i < lines.length; i++) {
const line = lines[i];
if (line.trim() === '' || line.trim().startsWith('#')) continue;
const indent = line.search(/\S/);
if (indent <= sectionIndent) {
sectionEnd = i;
break;
}
}
return { sectionStart, sectionEnd, sectionIndent };
}
function resolveTimelineTarget(lines, presetName, periodKey) {
const section = resolveTimelineSection(lines, presetName);
if (!section) return null;
const { sectionStart, sectionEnd, sectionIndent } = section;
let targetStart = -1;
if (periodKey === 'default') {
targetStart = findChildKey(lines, sectionStart, sectionEnd, sectionIndent, 'default');
} else {
const periodsLine = findChildKey(lines, sectionStart, sectionEnd, sectionIndent, 'periods');
if (periodsLine < 0) return null;
const periodsIndent = lines[periodsLine].search(/\S/);
const periodsEnd = findBlockEnd(lines, periodsLine, periodsIndent, sectionEnd);
targetStart = findChildKey(lines, periodsLine, periodsEnd, periodsIndent, periodKey);
}
if (targetStart < 0) return null;
const targetIndent = lines[targetStart].search(/\S/);
const targetEnd = findBlockEnd(lines, targetStart, targetIndent, sectionEnd);
return { sectionStart, sectionEnd, sectionIndent, targetStart, targetEnd, targetIndent };
}
function applyTimelineEditorChanges(editor, lines) {
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
clearTimeout(window._tlRenderTimer);
window._tlRenderTimer = setTimeout(() => syncTimelineToUI(), 300);
}
function removeTimelineField(presetName, periodKey, field) {
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const target = resolveTimelineTarget(lines, presetName, periodKey);
if (!target) return;
const { targetStart, targetEnd, targetIndent } = target;
const fieldParts = field.split('.');
if (fieldParts.length === 1) {
const lineIdx = findChildKey(lines, targetStart, targetEnd, targetIndent, fieldParts[0]);
if (lineIdx < 0) return;
const lineIndent = lines[lineIdx].search(/\S/);
const lineEnd = findBlockEnd(lines, lineIdx, lineIndent, targetEnd);
lines.splice(lineIdx, lineEnd - lineIdx);
applyTimelineEditorChanges(editor, lines);
return;
}
const parentLine = findChildKey(lines, targetStart, targetEnd, targetIndent, fieldParts[0]);
if (parentLine < 0) return;
const parentIndent = lines[parentLine].search(/\S/);
const parentEnd = findBlockEnd(lines, parentLine, parentIndent, targetEnd);
const childLine = findChildKey(lines, parentLine, parentEnd, parentIndent, fieldParts[1]);
if (childLine < 0) return;
const childIndent = lines[childLine].search(/\S/);
const childEnd = findBlockEnd(lines, childLine, childIndent, parentEnd);
lines.splice(childLine, childEnd - childLine);
const parentEndAfter = findBlockEnd(lines, parentLine, parentIndent, targetEnd);
let hasChild = false;
for (let i = parentLine + 1; i < parentEndAfter; i++) {
const line = lines[i];
if (line.trim() === '' || line.trim().startsWith('#')) continue;
if (line.search(/\S/) > parentIndent) {
hasChild = true;
break;
}
}
if (!hasChild) {
lines.splice(parentLine, 1);
}
applyTimelineEditorChanges(editor, lines);
}
function updateTimelineSectionField(presetName, field, value) {
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const section = resolveTimelineSection(lines, presetName);
if (!section) return;
const { sectionStart, sectionEnd, sectionIndent } = section;
const fieldParts = field.split('.');
let lineIdx = -1;
if (fieldParts.length === 1) {
lineIdx = findChildKey(lines, sectionStart, sectionEnd, sectionIndent, fieldParts[0]);
} else {
const parentLine = findChildKey(lines, sectionStart, sectionEnd, sectionIndent, fieldParts[0]);
if (parentLine >= 0) {
const parentIndent = lines[parentLine].search(/\S/);
const parentEnd = findBlockEnd(lines, parentLine, parentIndent, sectionEnd);
lineIdx = findChildKey(lines, parentLine, parentEnd, parentIndent, fieldParts[1]);
}
}
if (lineIdx < 0) {
insertTimelineField(lines, sectionStart, sectionEnd, sectionIndent, field, value, fieldParts);
} else {
replaceLineValue(lines, lineIdx, value);
}
applyTimelineEditorChanges(editor, lines);
}
/**
* 查找子级 key 行
*/
function findChildKey(lines, start, end, parentIndent, key) {
for (let i = start + 1; i < end; i++) {
const line = lines[i];
if (line.trim() === '' || line.trim().startsWith('#')) continue;
const indent = line.search(/\S/);
if (indent <= parentIndent) break;
const m = line.match(/^\s*(\S+):\s*/);
const rawKey = m ? m[1].replace(/^["']|["']$/g, '') : null;
if (m && rawKey === key && indent === parentIndent + 2) {
return i;
}
}
return -1;
}
/**
* 找一个 block 的结束行号(下一个同级或更低缩进的非空非注释行)
*/
function findBlockEnd(lines, start, indent, maxEnd) {
for (let i = start + 1; i < maxEnd; i++) {
const line = lines[i];
if (line.trim() === '' || line.trim().startsWith('#')) continue;
const curIndent = line.search(/\S/);
if (curIndent <= indent) return i;
}
return maxEnd;
}
/**
* 替换行中的值,保留注释
*/
function replaceLineValue(lines, idx, value) {
const original = lines[idx];
const match = original.match(/^(\s*\S+:\s*)(.*)$/);
if (!match) return;
const prefix = match[1];
const rest = match[2];
const commentMatch = rest.match(/(\s*#.*)$/);
const comment = commentMatch ? commentMatch[1] : '';
let formatted;
if (typeof value === 'boolean') {
formatted = value ? 'true' : 'false';
} else if (typeof value === 'string') {
// 检查原值是否带引号
const valPart = rest.slice(0, rest.length - comment.length).trim();
const isQuoted = (valPart.startsWith('"') && valPart.endsWith('"')) ||
(valPart.startsWith("'") && valPart.endsWith("'"));
if (isQuoted || value.includes(':') || value.includes('#') || value.includes(' ')) {
formatted = `"${value}"`;
} else {
formatted = value;
}
} else {
formatted = String(value);
}
lines[idx] = `${prefix}${formatted}${comment}`;
}
/**
* 字段不存在时,插入新行
*/
function insertTimelineField(lines, targetStart, targetEnd, targetIndent, field, value, fieldParts) {
const indent = ' '.repeat(targetIndent + 2);
let formatted;
if (typeof value === 'boolean') formatted = value ? 'true' : 'false';
else if (typeof value === 'string') formatted = value.includes(':') ? `"${value}"` : value;
else formatted = String(value);
if (fieldParts.length === 1) {
// 直接在 target 的末尾插入
lines.splice(targetEnd, 0, `${indent}${field}: ${formatted}`);
} else {
// once.analyze → find or create once: block, then insert child
const parentLine = findChildKey(lines, targetStart, targetEnd, targetIndent, fieldParts[0]);
if (parentLine >= 0) {
const parentIndent = lines[parentLine].search(/\S/);
const parentEnd = findBlockEnd(lines, parentLine, parentIndent, targetEnd);
const childIndent = ' '.repeat(parentIndent + 2);
lines.splice(parentEnd, 0, `${childIndent}${fieldParts[1]}: ${formatted}`);
} else {
// parent doesn't exist → create both
lines.splice(targetEnd, 0,
`${indent}${fieldParts[0]}:`,
`${indent} ${fieldParts[1]}: ${formatted}`
);
}
}
}
/**
* 点击预设卡片 → 更新 config.yaml 中的 schedule.preset + 滚动左侧编辑器
*/
window.selectTimelinePreset = function(name) {
// 更新 config.yaml 中的 schedule.preset
const configEditor = document.getElementById('yaml-editor');
let yaml = configEditor.value;
const lines = yaml.split('\n');
let presetLineIdx = -1;
let inSchedule = false;
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
if (/^schedule:\s*$/.test(line.trimEnd()) || /^schedule:\s*#/.test(line)) {
inSchedule = true;
continue;
}
if (inSchedule && /^\S/.test(line) && !line.startsWith('#')) {
inSchedule = false;
}
if (inSchedule && /^\s+preset:\s*/.test(line)) {
presetLineIdx = i;
break;
}
}
if (presetLineIdx >= 0) {
const original = lines[presetLineIdx];
const match = original.match(/^(\s*preset:\s*)(.*)$/);
if (match) {
const prefix = match[1];
const rest = match[2];
const commentMatch = rest.match(/(\s*#.*)$/);
const comment = commentMatch ? commentMatch[1] : '';
lines[presetLineIdx] = `${prefix}"${name}"${comment}`;
}
}
configEditor.value = lines.join('\n');
currentYaml = configEditor.value;
updateBackdrop('yaml-editor', 'yaml-backdrop');
debounceSaveConfig();
// 左侧 timeline 编辑器跳转到对应预设
scrollTimelineEditorToPreset(name);
// 重新渲染 timeline 面板
syncTimelineToUI();
const tlData = parseTimelineData();
const tlCfg = getPresetConfig(tlData, name);
const displayName = tlCfg?.name || name;
showToast(`已切换至「${displayName}」模式`, 'success');
}
/**
* 滚动左侧 timeline 编辑器到对应预设位置
*/
function scrollTimelineEditorToPreset(presetName) {
const editor = document.getElementById('timeline-editor');
const text = editor.value;
const lines = text.split('\n');
let targetLine = -1;
if (presetName === 'custom') {
// 找顶层 custom:
for (let i = 0; i < lines.length; i++) {
if (/^custom:\s*/.test(lines[i])) {
targetLine = i;
break;
}
}
} else {
// 找 presets: 下的 presetName:
let inPresets = false;
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
if (/^presets:\s*/.test(line)) {
inPresets = true;
continue;
}
if (inPresets && /^\S/.test(line) && !line.startsWith('#')) break;
if (inPresets) {
const m = line.match(/^\s+(\S+):\s*/);
if (m && m[1] === presetName) {
targetLine = i;
break;
}
}
}
}
if (targetLine < 0) return;
const lineHeight = EDITOR_LINE_HEIGHT;
const scrollPosition = targetLine * lineHeight;
// 设置光标位置
let charCount = 0;
for (let i = 0; i < targetLine; i++) {
charCount += lines[i].length + 1;
}
editor.focus();
editor.setSelectionRange(charCount, charCount + lines[targetLine].length);
editor.scrollTop = scrollPosition - 50;
// 高亮闪烁(防止快速点击竞态)
clearTimeout(window._tlEditorFlashTimer);
editor.style.transition = 'background-color 0.3s';
editor.style.backgroundColor = '#2d4a7c';
window._tlEditorFlashTimer = setTimeout(() => { editor.style.backgroundColor = ''; }, 300);
}
// ==========================================
// 14. Timeline CRUD 功能(新建模式/时间段/日计划/删除等)
// ==========================================
// ── 弹窗:新建调度模式 ──
window.openTlNewPresetModal = function() {
const modal = document.getElementById('tl-new-preset-modal');
// 填充模板下拉
const sel = document.getElementById('tl-new-preset-template');
const data = parseTimelineData();
sel.innerHTML = '空白模板(仅采集,不推送不分析) ';
if (data?.presets) {
Object.keys(data.presets).forEach(k => {
const name = data.presets[k]?.name || k;
sel.innerHTML += `${name} (${k}) `;
});
}
if (data?.custom) {
sel.innerHTML += `${data.custom.name || '自定义'} (custom) `;
}
// 清空输入
document.getElementById('tl-new-preset-key').value = '';
document.getElementById('tl-new-preset-name').value = '';
document.getElementById('tl-new-preset-desc').value = '';
sel.value = '';
modal.classList.remove('hidden');
}
window.closeTlNewPresetModal = function() {
document.getElementById('tl-new-preset-modal').classList.add('hidden');
}
window.confirmTlNewPreset = function() {
const key = document.getElementById('tl-new-preset-key').value.trim();
const name = document.getElementById('tl-new-preset-name').value.trim();
const desc = document.getElementById('tl-new-preset-desc').value.trim();
const template = document.getElementById('tl-new-preset-template').value;
// 验证
if (!key) { showToast('请输入模式标识 (key)', 'error'); return; }
if (!/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(key)) { showToast('key 仅支持英文、数字和下划线,且不能以数字开头', 'error'); return; }
if (!name) { showToast('请输入显示名称', 'error'); return; }
// 检查重复
const data = parseTimelineData();
if (data?.presets?.[key]) { showToast(`预设「${key}」已存在`, 'error'); return; }
if (key === 'custom') { showToast('不能使用 "custom" 作为预设名', 'error'); return; }
// 构建 YAML 文本块
let block;
if (template && data) {
const src = getPresetConfig(data, template);
if (src) {
block = buildPresetYamlBlock(key, { ...src, name: name, description: desc || src.description || '' });
} else {
block = buildEmptyPresetBlock(key, name, desc);
}
} else {
block = buildEmptyPresetBlock(key, name, desc);
}
// 插入到 timeline YAML 的 presets: 块末尾
const editor = document.getElementById('timeline-editor');
let yaml = editor.value;
const lines = yaml.split('\n');
// 找 presets: 块的结束位置
let presetsStart = -1;
for (let i = 0; i < lines.length; i++) {
if (/^presets:\s*/.test(lines[i])) { presetsStart = i; break; }
}
if (presetsStart < 0) {
// 没有 presets: 顶层 key,在文件开头插入
lines.unshift('presets:', ...block.split('\n'));
} else {
// 找 presets 块结束(下一个顶层 key)
let presetsEnd = lines.length;
for (let i = presetsStart + 1; i < lines.length; i++) {
if (/^\S/.test(lines[i]) && !lines[i].startsWith('#') && lines[i].trim() !== '') {
presetsEnd = i;
break;
}
}
// 在 presetsEnd 前插入(即 presets 块最后)
const blockLines = block.split('\n');
lines.splice(presetsEnd, 0, ...blockLines);
}
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
// 切换 config.yaml 中 preset 为新模式
selectTimelinePreset(key);
closeTlNewPresetModal();
showToast(`调度模式「${name}」创建成功`, 'success');
}
/**
* 构建空白预设 YAML 文本块
*/
function buildEmptyPresetBlock(key, name, desc) {
return [
` ${key}:`,
` name: "${name}"`,
` description: "${desc || ''}"`,
` default:`,
` collect: true`,
` analyze: false`,
` ai_mode: follow_report`,
` push: false`,
` report_mode: current`,
` once:`,
` analyze: false`,
` push: false`,
` periods: {}`,
` day_plans:`,
` all_day:`,
` periods: []`,
` week_map:`,
` 1: all_day`,
` 2: all_day`,
` 3: all_day`,
` 4: all_day`,
` 5: all_day`,
` 6: all_day`,
` 7: all_day`,
``
].join('\n');
}
/**
* 基于已有配置构建预设 YAML 文本块
*/
function buildPresetYamlBlock(key, cfg) {
const obj = { [key]: cfg };
const dumped = jsyaml.dump(obj, { indent: 2, lineWidth: -1, quotingType: '"', forceQuotes: false });
return dumped.split('\n').map(l => l ? ' ' + l : l).join('\n');
}
// ── 弹窗:新增时间段 ──
let _tlNewPeriodTarget = '';
window.openTlNewPeriodModal = function(presetName) {
_tlNewPeriodTarget = presetName;
document.getElementById('tl-new-period-key').value = '';
document.getElementById('tl-new-period-name').value = '';
document.getElementById('tl-new-period-start').value = '09:00';
document.getElementById('tl-new-period-end').value = '11:00';
document.getElementById('tl-new-period-modal').classList.remove('hidden');
}
window.closeTlNewPeriodModal = function() {
document.getElementById('tl-new-period-modal').classList.add('hidden');
}
window.confirmTlNewPeriod = function() {
const key = document.getElementById('tl-new-period-key').value.trim();
const name = document.getElementById('tl-new-period-name').value.trim();
const start = document.getElementById('tl-new-period-start').value;
const end = document.getElementById('tl-new-period-end').value;
if (!key) { showToast('请输入时间段标识 (key)', 'error'); return; }
if (!/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(key)) { showToast('key 仅支持英文、数字和下划线', 'error'); return; }
if (!name) { showToast('请输入显示名称', 'error'); return; }
if (!start || !end) { showToast('请设置开始和结束时间', 'error'); return; }
if (start === end) { showToast('开始时间和结束时间不能相同', 'error'); return; }
const data = parseTimelineData();
const presetCfg = getPresetConfig(data, _tlNewPeriodTarget);
if (presetCfg?.periods?.[key]) { showToast(`时间段「${key}」已存在`, 'error'); return; }
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, _tlNewPeriodTarget);
if (!sectionInfo) { showToast('未找到预设配置段', 'error'); return; }
const periodsLine = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, 'periods');
if (periodsLine < 0) { showToast('未找到 periods 配置段', 'error'); return; }
const periodsIndent = lines[periodsLine].search(/\S/);
const periodsContent = lines[periodsLine].trim();
const childIndent = periodsIndent + 2;
const periodIndent = childIndent + 2;
const indent = ' '.repeat(childIndent);
const subIndent = ' '.repeat(periodIndent);
const newPeriodLines = [
`${indent}${key}:`,
`${subIndent}name: "${name}"`,
`${subIndent}start: "${start}"`,
`${subIndent}end: "${end}"`,
`${subIndent}collect: true`,
`${subIndent}analyze: false`,
`${subIndent}push: true`,
`${subIndent}report_mode: current`
];
if (periodsContent === 'periods: {}' || periodsContent === 'periods:{}') {
lines[periodsLine] = ' '.repeat(periodsIndent) + 'periods:';
lines.splice(periodsLine + 1, 0, ...newPeriodLines);
} else {
const periodsEnd = findBlockEnd(lines, periodsLine, periodsIndent, sectionInfo.end);
lines.splice(periodsEnd, 0, ...newPeriodLines);
}
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
closeTlNewPeriodModal();
syncTimelineToUI();
showToast(`时间段「${name}」添加成功`, 'success');
}
// ── 删除时间段 ──
window.deleteTlPeriod = function(presetName, periodKey) {
const data = parseTimelineData();
const config = getPresetConfig(data, presetName);
if (!config) return;
const refs = [];
const dayPlans = config.day_plans || {};
Object.entries(dayPlans).forEach(([planName, plan]) => {
if ((plan.periods || []).includes(periodKey)) refs.push(planName);
});
const periodName = config.periods?.[periodKey]?.name || periodKey;
let msg = `确定删除时间段「${periodName}」?`;
if (refs.length > 0) {
msg += `\n\n⚠️ 该时间段被以下日计划引用,将同时移除引用:\n${refs.map(r => ' • ' + r).join('\n')}`;
}
if (!confirm(msg)) return;
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, presetName);
if (!sectionInfo) return;
const periodsLine = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, 'periods');
if (periodsLine >= 0) {
const periodsIndent = lines[periodsLine].search(/\S/);
const periodsEnd = findBlockEnd(lines, periodsLine, periodsIndent, sectionInfo.end);
const periodLine = findChildKey(lines, periodsLine, periodsEnd, periodsIndent, periodKey);
if (periodLine >= 0) {
const periodIndent = lines[periodLine].search(/\S/);
const periodEnd = findBlockEnd(lines, periodLine, periodIndent, periodsEnd);
lines.splice(periodLine, periodEnd - periodLine);
}
}
if (refs.length > 0) {
const updatedSection = findPresetSection(lines, presetName);
if (updatedSection) removePeriodFromDayPlans(lines, updatedSection, periodKey);
}
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
syncTimelineToUI();
showToast(`时间段「${periodName}」已删除`, 'success');
}
// ── 复制时间段 ──
window.duplicateTlPeriod = function(presetName, periodKey) {
const data = parseTimelineData();
const config = getPresetConfig(data, presetName);
if (!config?.periods?.[periodKey]) return;
let newKey = periodKey + '_copy';
let i = 2;
while (config.periods[newKey]) { newKey = periodKey + '_copy' + i; i++; }
const src = config.periods[periodKey];
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, presetName);
if (!sectionInfo) return;
const periodsLine = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, 'periods');
if (periodsLine < 0) return;
const periodsIndent = lines[periodsLine].search(/\S/);
const periodsEnd = findBlockEnd(lines, periodsLine, periodsIndent, sectionInfo.end);
const srcLine = findChildKey(lines, periodsLine, periodsEnd, periodsIndent, periodKey);
if (srcLine < 0) return;
const srcIndent = lines[srcLine].search(/\S/);
const srcEnd = findBlockEnd(lines, srcLine, srcIndent, periodsEnd);
const copiedLines = [];
for (let li = srcLine; li < srcEnd; li++) {
let line = lines[li];
if (li === srcLine) {
line = line.replace(periodKey, newKey);
}
copiedLines.push(line);
}
for (let li = 0; li < copiedLines.length; li++) {
const m = copiedLines[li].match(/^(\s*name:\s*).+$/);
if (m) {
const newName = (src.name || periodKey) + ' (副本)';
copiedLines[li] = `${m[1]}"${newName}"`;
break;
}
}
lines.splice(srcEnd, 0, ...copiedLines);
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
syncTimelineToUI();
showToast(`已复制为「${newKey}」`, 'success');
}
// ── 删除预设模式 ──
const PROTECTED_PRESETS = ['morning_evening', 'always_on', 'office_hours', 'night_owl'];
window.deleteTlPreset = function(presetName) {
if (PROTECTED_PRESETS.includes(presetName)) {
showToast('内置预设不可删除,可使用复制功能', 'warning');
return;
}
if (presetName === 'custom') {
showToast('custom 模式不可删除', 'warning');
return;
}
const data = parseTimelineData();
const cfg = data?.presets?.[presetName];
const displayName = cfg?.name || presetName;
if (!confirm(`确定删除调度模式「${displayName}」?\n此操作不可撤销。`)) return;
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, presetName);
if (!sectionInfo) return;
lines.splice(sectionInfo.start, sectionInfo.end - sectionInfo.start);
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
if (getActivePreset() === presetName) {
selectTimelinePreset('morning_evening');
} else {
syncTimelineToUI();
}
showToast(`调度模式「${displayName}」已删除`, 'success');
}
// ── 复制预设模式 ──
window.duplicateTlPreset = function(presetName) {
const data = parseTimelineData();
const src = getPresetConfig(data, presetName);
if (!src) return;
openTlNewPresetModal();
const origName = src.name || presetName;
document.getElementById('tl-new-preset-key').value = presetName + '_copy';
document.getElementById('tl-new-preset-name').value = origName + ' (副本)';
document.getElementById('tl-new-preset-desc').value = src.description || '';
document.getElementById('tl-new-preset-template').value = presetName;
}
// ── 新增日计划 ──
window.addTlDayPlan = function(presetName) {
const planKey = prompt('请输入日计划标识 (key),如 holiday:');
if (!planKey) return;
if (!/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(planKey)) {
showToast('key 仅支持英文、数字和下划线', 'error');
return;
}
const data = parseTimelineData();
const config = getPresetConfig(data, presetName);
if (config?.day_plans?.[planKey]) {
showToast(`日计划「${planKey}」已存在`, 'error');
return;
}
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, presetName);
if (!sectionInfo) return;
const dayPlansLine = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, 'day_plans');
if (dayPlansLine < 0) return;
const dpIndent = lines[dayPlansLine].search(/\S/);
const dpEnd = findBlockEnd(lines, dayPlansLine, dpIndent, sectionInfo.end);
const indent = ' '.repeat(dpIndent + 2);
const subIndent = ' '.repeat(dpIndent + 4);
lines.splice(dpEnd, 0,
`${indent}${planKey}:`,
`${subIndent}periods: []`
);
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
syncTimelineToUI();
showToast(`日计划「${planKey}」已添加`, 'success');
}
// ── 删除日计划 ──
window.deleteTlDayPlan = function(presetName, planKey) {
const data = parseTimelineData();
const config = getPresetConfig(data, presetName);
if (!config) return;
const weekMap = config.week_map || {};
const refs = [];
for (let d = 1; d <= 7; d++) {
const v = weekMap[d] || weekMap[String(d)];
if (v === planKey) refs.push(DAY_NAMES[d - 1]);
}
if (refs.length > 0) {
showToast(`无法删除:「${planKey}」正在被 ${refs.join('、')} 使用。请先修改周映射。`, 'error');
return;
}
if (!confirm(`确定删除日计划「${planKey}」?`)) return;
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, presetName);
if (!sectionInfo) return;
const dayPlansLine = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, 'day_plans');
if (dayPlansLine < 0) return;
const dpIndent = lines[dayPlansLine].search(/\S/);
const dpEnd = findBlockEnd(lines, dayPlansLine, dpIndent, sectionInfo.end);
const planLine = findChildKey(lines, dayPlansLine, dpEnd, dpIndent, planKey);
if (planLine < 0) return;
const planIndent = lines[planLine].search(/\S/);
const planEnd = findBlockEnd(lines, planLine, planIndent, dpEnd);
lines.splice(planLine, planEnd - planLine);
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
syncTimelineToUI();
showToast(`日计划「${planKey}」已删除`, 'success');
}
// ── 日计划中添加/移除时间段引用 ──
window.addPeriodToDayPlan = function(presetName, planKey, periodKey) {
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, presetName);
if (!sectionInfo) return;
const dayPlansLine = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, 'day_plans');
if (dayPlansLine < 0) return;
const dpIndent = lines[dayPlansLine].search(/\S/);
const dpEnd = findBlockEnd(lines, dayPlansLine, dpIndent, sectionInfo.end);
const planLine = findChildKey(lines, dayPlansLine, dpEnd, dpIndent, planKey);
if (planLine < 0) return;
const planIndent = lines[planLine].search(/\S/);
const planEnd = findBlockEnd(lines, planLine, planIndent, dpEnd);
const periodsLine = findChildKey(lines, planLine, planEnd, planIndent, 'periods');
if (periodsLine < 0) return;
const periodsContent = lines[periodsLine].trim();
if (periodsContent === 'periods: []' || periodsContent === 'periods:[]') {
const pIndent = ' '.repeat(lines[periodsLine].search(/\S/));
lines[periodsLine] = `${pIndent}periods:`;
lines.splice(periodsLine + 1, 0, `${pIndent} - ${periodKey}`);
} else {
const inlineMatch = lines[periodsLine].match(/^(\s*periods:\s*)\[([^\]]*)\]/);
if (inlineMatch) {
const existing = inlineMatch[2].split(',').map(s => s.trim()).filter(Boolean);
// 保持引号风格一致
const hasQuotes = existing.length > 0 && existing[0].startsWith('"');
existing.push(hasQuotes ? `"${periodKey}"` : periodKey);
lines[periodsLine] = `${inlineMatch[1]}[${existing.join(', ')}]`;
} else {
const pIndent = ' '.repeat(lines[periodsLine].search(/\S/) + 2);
const listEnd = findBlockEnd(lines, periodsLine, lines[periodsLine].search(/\S/), planEnd);
lines.splice(listEnd, 0, `${pIndent}- ${periodKey}`);
}
}
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
syncTimelineToUI();
}
window.removePeriodFromDayPlanUI = function(presetName, planKey, periodKey) {
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, presetName);
if (!sectionInfo) return;
removePeriodFromDayPlanInLines(lines, sectionInfo, planKey, periodKey);
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
syncTimelineToUI();
}
// ── 周映射快捷操作 ──
window.tlWeekMapQuick = function(presetName, mode) {
const data = parseTimelineData();
const config = getPresetConfig(data, presetName);
if (!config) return;
const dayPlanKeys = Object.keys(config.day_plans || {});
if (dayPlanKeys.length === 0) { showToast('没有可用的日计划', 'error'); return; }
let mapping = {};
if (mode === 'all_same') {
const plan = dayPlanKeys[0];
for (let d = 1; d <= 7; d++) mapping[d] = plan;
} else if (mode === 'weekday_same') {
const plan = dayPlanKeys[0];
for (let d = 1; d <= 5; d++) mapping[d] = plan;
const wm = config.week_map || {};
mapping[6] = wm[6] || wm['6'] || plan;
mapping[7] = wm[7] || wm['7'] || plan;
} else if (mode === 'weekday_weekend') {
if (dayPlanKeys.length < 2) { showToast('需要至少两个日计划来分离工作日/周末', 'warning'); return; }
const wd = dayPlanKeys[0];
const we = dayPlanKeys[1];
for (let d = 1; d <= 5; d++) mapping[d] = wd;
mapping[6] = we;
mapping[7] = we;
}
for (let d = 1; d <= 7; d++) {
if (mapping[d]) onTlWeekMap(presetName, d, mapping[d]);
}
showToast('周映射已更新', 'success');
}
// ── 辅助函数 ──
/**
* 定位预设配置段的起始行和结束行
*/
function findPresetSection(lines, presetName) {
const isCustom = presetName === 'custom';
let start = -1;
let indent = 0;
if (isCustom) {
for (let i = 0; i < lines.length; i++) {
if (/^custom:\s*/.test(lines[i])) { start = i; indent = 0; break; }
}
} else {
let inPresets = false;
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
if (/^presets:\s*/.test(line)) { inPresets = true; continue; }
if (inPresets && /^\S/.test(line) && !line.startsWith('#') && line.trim() !== '') break;
if (inPresets) {
const m = line.match(/^(\s+)(\S+):\s*/);
if (m && m[2] === presetName) { start = i; indent = m[1].length; break; }
}
}
}
if (start < 0) return null;
let end = lines.length;
for (let i = start + 1; i < lines.length; i++) {
const line = lines[i];
if (line.trim() === '' || line.trim().startsWith('#')) continue;
const curIndent = line.search(/\S/);
if (curIndent <= indent) { end = i; break; }
}
return { start, end, indent };
}
/**
* 从 day_plans 中批量移除对某 period 的引用
*/
function removePeriodFromDayPlans(lines, sectionInfo, periodKey) {
const dayPlansLine = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, 'day_plans');
if (dayPlansLine < 0) return;
const dpIndent = lines[dayPlansLine].search(/\S/);
const sectionEnd = findBlockEnd(lines, sectionInfo.start, sectionInfo.indent, lines.length);
const dpEnd = findBlockEnd(lines, dayPlansLine, dpIndent, sectionEnd);
for (let i = dayPlansLine + 1; i < dpEnd; i++) {
const line = lines[i];
if (line.trim() === '' || line.trim().startsWith('#')) continue;
const listMatch = line.match(/^(\s*)-\s*(\S+)\s*$/);
if (listMatch && listMatch[2] === periodKey) {
lines.splice(i, 1);
i--;
continue;
}
const inlineMatch = line.match(/^(\s*periods:\s*)\[([^\]]*)\]/);
if (inlineMatch) {
const items = inlineMatch[2].split(',').map(s => s.trim()).filter(s => {
const bare = s.replace(/^["']|["']$/g, '');
return bare && bare !== periodKey;
});
lines[i] = items.length > 0
? `${inlineMatch[1]}[${items.join(', ')}]`
: `${inlineMatch[1]}[]`;
}
}
}
/**
* 从指定 day_plan 中移除单个 period 引用
*/
function removePeriodFromDayPlanInLines(lines, sectionInfo, planKey, periodKey) {
const dayPlansLine = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, 'day_plans');
if (dayPlansLine < 0) return;
const dpIndent = lines[dayPlansLine].search(/\S/);
const dpEnd = findBlockEnd(lines, dayPlansLine, dpIndent, sectionInfo.end);
const planLine = findChildKey(lines, dayPlansLine, dpEnd, dpIndent, planKey);
if (planLine < 0) return;
const planIndent = lines[planLine].search(/\S/);
const planEnd = findBlockEnd(lines, planLine, planIndent, dpEnd);
const periodsLine = findChildKey(lines, planLine, planEnd, planIndent, 'periods');
if (periodsLine < 0) return;
const inlineMatch = lines[periodsLine].match(/^(\s*periods:\s*)\[([^\]]*)\]/);
if (inlineMatch) {
const items = inlineMatch[2].split(',').map(s => s.trim()).filter(s => {
const bare = s.replace(/^["']|["']$/g, '');
return bare && bare !== periodKey;
});
lines[periodsLine] = items.length > 0
? `${inlineMatch[1]}[${items.join(', ')}]`
: `${inlineMatch[1]}[]`;
return;
}
const pEnd = findBlockEnd(lines, periodsLine, lines[periodsLine].search(/\S/), planEnd);
for (let i = periodsLine + 1; i < pEnd; i++) {
const m = lines[i].match(/^(\s*)-\s*(\S+)\s*$/);
if (m && m[2] === periodKey) {
lines.splice(i, 1);
return;
}
}
}
// ==========================================
// 15. 后续优化功能
// ==========================================
// ── 1.3 / 3A.4 内联编辑(双击编辑文本)──
/**
* 预设卡片名称/描述内联编辑
*/
window.tlInlineEdit = function(el, presetName, field, currentValue) {
if (el.querySelector('input')) return;
const original = currentValue;
const isName = field === 'name';
const input = document.createElement('input');
input.type = 'text';
input.value = original;
input.className = `tl-inline-input ${isName ? 'text-sm font-bold' : 'text-[10px]'}`;
input.style.width = '100%';
el.textContent = '';
el.appendChild(input);
input.focus();
input.select();
const commit = () => {
const newVal = input.value.trim();
if (newVal && newVal !== original) {
updatePresetMeta(presetName, field, newVal);
}
syncTimelineToUI();
};
input.addEventListener('blur', commit);
input.addEventListener('keydown', e => {
if (e.key === 'Enter') { e.preventDefault(); input.blur(); }
if (e.key === 'Escape') { el.textContent = original; }
});
}
/**
* 更新预设顶层的 name / description 字段
*/
function updatePresetMeta(presetName, field, value) {
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, presetName);
if (!sectionInfo) return;
const lineIdx = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, field);
if (lineIdx >= 0) {
replaceLineValue(lines, lineIdx, value);
} else {
const indent = ' '.repeat(sectionInfo.indent + 2);
lines.splice(sectionInfo.start + 1, 0, `${indent}${field}: "${value}"`);
}
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
}
/**
* 时间段名称内联编辑
*/
window.tlInlineEditPeriod = function(el, presetName, periodKey, currentValue) {
if (el.querySelector('input')) return;
const original = currentValue;
const input = document.createElement('input');
input.type = 'text';
input.value = original;
input.className = 'tl-inline-input text-sm font-bold';
input.style.width = Math.max(80, original.length * 14) + 'px';
el.textContent = '';
el.appendChild(input);
input.focus();
input.select();
const commit = () => {
const newVal = input.value.trim();
if (newVal && newVal !== original) {
updateTimelineField(presetName, periodKey, 'name', newVal);
}
syncTimelineToUI();
};
input.addEventListener('blur', commit);
input.addEventListener('keydown', e => {
if (e.key === 'Enter') { e.preventDefault(); input.blur(); }
if (e.key === 'Escape') { el.textContent = original; }
});
}
// ── 2.2 周视图空白区域点击 → 显示日计划名称 ──
window.onTlBarClick = function(event, presetName, dayNum) {
if (event.target.closest('.tl-period-block')) return;
const data = parseTimelineData();
const config = getPresetConfig(data, presetName);
if (!config) return;
const weekMap = config.week_map || {};
const planKey = weekMap[dayNum] || weekMap[String(dayNum)] || '(未设置)';
hideTlTooltip();
const el = document.createElement('div');
el.className = 'tl-tooltip';
el.innerHTML = `${DAY_NAMES[dayNum - 1]}
日计划: ${planKey}
使用 default 配置
`;
document.body.appendChild(el);
tlTooltipEl = el;
const rect = event.currentTarget.getBoundingClientRect();
const x = event.clientX;
el.style.left = (x - el.offsetWidth / 2) + 'px';
el.style.top = (rect.top - el.offsetHeight - 8) + 'px';
const elRect = el.getBoundingClientRect();
if (elRect.left < 4) el.style.left = '4px';
if (elRect.right > window.innerWidth - 4) el.style.left = (window.innerWidth - el.offsetWidth - 4) + 'px';
if (elRect.top < 4) el.style.top = (rect.bottom + 8) + 'px';
setTimeout(() => { if (tlTooltipEl === el) hideTlTooltip(); }, 2000);
}
// ── 3B.5 日计划 Tag 拖拽排序 ──
/**
* 为日计划中的 period tag 容器初始化 SortableJS
*/
function initDayPlanSortable(presetName) {
document.querySelectorAll('.tl-dayplan-sortable').forEach(container => {
const planKey = container.dataset.planKey;
if (!planKey) return;
new Sortable(container, {
animation: 150,
ghostClass: 'tl-tag-ghost',
dragClass: 'tl-tag-drag',
draggable: '.tl-period-tag',
filter: '.tl-add-period-select, .tl-tag-remove',
preventOnFilter: false,
onEnd: function() {
const items = [];
container.querySelectorAll('.tl-period-tag').forEach(tag => {
const key = tag.dataset.periodKey;
if (key) items.push(key);
});
reorderDayPlanPeriods(presetName, planKey, items);
}
});
});
}
/**
* 重新排列 day_plan 中 periods 的顺序
*/
function reorderDayPlanPeriods(presetName, planKey, orderedKeys) {
const editor = document.getElementById('timeline-editor');
const lines = editor.value.split('\n');
const sectionInfo = findPresetSection(lines, presetName);
if (!sectionInfo) return;
const dayPlansLine = findChildKey(lines, sectionInfo.start, sectionInfo.end, sectionInfo.indent, 'day_plans');
if (dayPlansLine < 0) return;
const dpIndent = lines[dayPlansLine].search(/\S/);
const dpEnd = findBlockEnd(lines, dayPlansLine, dpIndent, sectionInfo.end);
const planLine = findChildKey(lines, dayPlansLine, dpEnd, dpIndent, planKey);
if (planLine < 0) return;
const planIndent = lines[planLine].search(/\S/);
const planEnd = findBlockEnd(lines, planLine, planIndent, dpEnd);
const periodsLine = findChildKey(lines, planLine, planEnd, planIndent, 'periods');
if (periodsLine < 0) return;
const inlineMatch = lines[periodsLine].match(/^(\s*periods:\s*)\[([^\]]*)\]/);
if (inlineMatch) {
lines[periodsLine] = `${inlineMatch[1]}[${orderedKeys.join(', ')}]`;
} else {
const pIndent = lines[periodsLine].search(/\S/);
const pEnd = findBlockEnd(lines, periodsLine, pIndent, planEnd);
lines.splice(periodsLine + 1, pEnd - periodsLine - 1);
const itemIndent = ' '.repeat(pIndent + 2);
const newItems = orderedKeys.map(k => `${itemIndent}- ${k}`);
lines.splice(periodsLine + 1, 0, ...newItems);
}
editor.value = lines.join('\n');
currentTimeline = editor.value;
updateBackdrop('timeline-editor', 'timeline-backdrop');
debounceSaveTimeline();
clearTimeout(window._tlRenderTimer);
window._tlRenderTimer = setTimeout(() => syncTimelineToUI(), 500);
}
// ==========================================
// 支持侧栏 折叠/展开
// ==========================================
function toggleSupportSidebar() {
const wrap = document.querySelector('.support-sidebar-wrap');
const btn = document.getElementById('sidebar-toggle-btn');
const isCollapsed = wrap.classList.toggle('collapsed');
btn.classList.toggle('is-collapsed', isCollapsed);
btn.title = isCollapsed ? '展开侧栏' : '收起侧栏';
}