Files
teach_sys_Demo/simplify_content.py
KQL 1b964b3886 chore: 更新数据文件和组件优化
主要更新内容:
- 优化UI组件(视频播放器、HR访问模态框、岗位信息展示等)
- 更新数据文件(简历、岗位、项目案例等)
- 添加新的图片资源(面试状态图标等)
- 新增AgentPage等页面组件
- 清理旧的备份文件,提升代码库整洁度
- 优化岗位等级和面试状态的数据结构

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-15 15:55:25 +08:00

140 lines
4.2 KiB
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import re
from datetime import datetime
def create_backup(file_path):
"""创建备份文件"""
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
backup_path = f"{file_path}.backup_{timestamp}"
with open(file_path, 'r', encoding='utf-8') as f:
content = f.read()
with open(backup_path, 'w', encoding='utf-8') as f:
f.write(content)
print(f"已创建备份: {backup_path}")
return backup_path
def simplify_content_structure():
"""将content对象简化为只包含原始内容"""
file_path = 'src/mocks/resumeInterviewMock.js'
# 创建备份
create_backup(file_path)
# 有真实修改版的岗位列表这些要保留original和modified
real_modified_positions = {
"会展策划师",
"会展执行助理",
"会展讲解员",
"活动策划师",
"活动执行",
"漫展策划师",
"旅游规划师",
"旅游计调专员",
"景区运营专员",
"文旅运营总监助理"
}
# 读取文件内容
with open(file_path, 'r', encoding='utf-8') as f:
content = f.read()
# 处理模式:
# 1. 找到position: "岗位名"
# 2. 找到其后的content: {
# 3. 如果岗位不在real_modified_positions中将content: { original: `...`, modified: `...` } 改为 content: `...`
def process_position_block(match):
full_match = match.group(0)
position_name = match.group(1)
if position_name in real_modified_positions:
# 保留原样
print(f"✓ 保留 {position_name} 的original和modified结构")
return full_match
# 提取original内容
original_match = re.search(r'original:\s*`([^`]*)`', full_match, re.DOTALL)
if original_match:
original_content = original_match.group(1)
# 替换整个content对象为简单字符串
new_content = re.sub(
r'content:\s*\{[^}]*original:\s*`[^`]*`[^}]*modified:\s*`[^`]*`[^}]*\}',
f'content: `{original_content}`',
full_match,
flags=re.DOTALL
)
print(f"✗ 简化 {position_name} 的content结构删除modified")
return new_content
return full_match
# 匹配position到整个content对象的模式
pattern = r'position:\s*"([^"]+)"[^{]*content:\s*\{[^}]*original:\s*`[^`]*`[^}]*modified:\s*`[^`]*`[^}]*\}'
# 执行替换
new_content = re.sub(pattern, process_position_block, content, flags=re.DOTALL)
# 保存文件
with open(file_path, 'w', encoding='utf-8') as f:
f.write(new_content)
print("\n处理完成!")
def verify_results():
"""验证结果"""
file_path = 'src/mocks/resumeInterviewMock.js'
with open(file_path, 'r', encoding='utf-8') as f:
content = f.read()
# 统计还有modified字段的岗位
pattern = r'position:\s*"([^"]+)"[^}]*modified:\s*`'
matches = re.findall(pattern, content, re.DOTALL)
print("\n验证结果:")
print("=" * 50)
print(f"还有modified字段的岗位{len(set(matches))}个):")
for position in set(matches):
print(f" - {position}")
# 期望的列表
expected = {
"会展策划师",
"会展执行助理",
"会展讲解员",
"活动策划师",
"活动执行",
"漫展策划师",
"旅游规划师",
"旅游计调专员",
"景区运营专员",
"文旅运营总监助理"
}
found = set(matches)
if found == expected:
print("\n✓ 完美所有岗位的modified字段都正确")
else:
missing = expected - found
extra = found - expected
if missing:
print(f"\n⚠️ 缺少modified的岗位{missing}")
if extra:
print(f"\n⚠️ 不应该有modified的岗位{extra}")
def main():
print("开始简化content结构...")
print("=" * 50)
# 简化content结构
simplify_content_structure()
# 验证结果
verify_results()
if __name__ == "__main__":
main()