-
Notifications
You must be signed in to change notification settings - Fork 704
/
CodeUpdateHandler.py
136 lines (104 loc) · 4.93 KB
/
CodeUpdateHandler.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import json
import os
import shutil
from pathlib import Path
# 将 prompt.json 按语言分割成多个文件
# 获取当前目录的路径
current_dir = os.path.join(os.getcwd(), 'src', 'data')
# 指定输入文件的路径
input_path = os.path.join(current_dir, 'prompt.json')
# 指定输出文件的目录
output_dir = current_dir
# 先将 json 数据读取出来
with open(input_path, 'r', encoding='utf-8') as file:
data = json.load(file)
# 这是我们要提取的语言列表
languages = ['zh', 'en', 'ja', 'ko', 'es', 'fr', 'de', 'it', 'ru', 'pt', 'hi', 'ar', 'bn']
# 对于每种语言,我们创建一个新的列表来保存该语言的元素
output_data = {lang: [] for lang in languages}
# 我们遍历列表中的每个元素,即每个 json 对象
for element in data:
# 对于列表中的每个 json 对象,我们遍历其中的所有语言
for lang in languages:
# 我们尝试提取该语言的数据
lang_data = element.get(lang)
# 如果该语言的数据存在
if lang_data:
# 我们生成一个新的 json 对象,它包含该语言的数据和共享数据
new_element = {
lang: lang_data,
'website': element['website'],
'tags': element['tags'],
'id': element['id'],
'weight': element['weight']
}
# 我们将这个新的 json 对象添加到该语言的列表中
output_data[lang].append(new_element)
# 对于每种语言,我们将其数据写入到一个新的 json 文件中
for lang in languages:
# 生成输出文件的路径
output_path = os.path.join(output_dir, f'prompt_{lang}.json')
# 如果文件已经存在,那么就先删除它
if os.path.exists(output_path):
os.remove(output_path)
# 写入数据
with open(output_path, 'w', encoding='utf-8') as file:
json.dump(output_data[lang], file, ensure_ascii=False, indent=2)
# 在 # 更新 Prompt Page 页面的 prompt 内容 的步骤前,将 os.path.join(current_dir, 'users.zh.tsx') 复制到同路径的 'users.{lang}.tsx'
# 遍历每个语言
for lang in languages[1:]:
# 指定原始文件路径
original_file_path = os.path.join(current_dir, 'users.zh.tsx')
# 指定新文件路径
new_file_path = os.path.join(current_dir, f'users.{lang}.tsx')
# 如果新文件已存在,则先删除它
if os.path.exists(new_file_path):
os.remove(new_file_path)
# 复制并修改文件内容
with open(original_file_path, 'r', encoding='utf-8') as original_file:
with open(new_file_path, 'w', encoding='utf-8') as new_file:
# 读取原始文件内容
original_content = original_file.read()
# 将内容中的 'prompt_zh.json' 替换为 'prompt_{lang}.json'
new_content = original_content.replace('prompt_zh.json', f'prompt_{lang}.json')
# 写入新的内容到新文件中
new_file.write(new_content)
# 更新 Prompt Page 页面的 prompt 内容
# Define the path to the output directory
react_jsx_dir = Path(os.path.join(os.getcwd(), 'src', 'pages', 'prompt'))
# Ensure the output directory exists
react_jsx_dir.mkdir(parents=True, exist_ok=True)
# Loop through each prompt
for prompt in data:
# Convert the prompt to a JSON string, then load it back into a dict
prompt_json = json.dumps(prompt, ensure_ascii=False, indent=2)
# Prepare the content for the React JSX file
content = f'''import React from "react";
import PromptPage from "../_components/PromptPage";
import {{ AuthProvider }} from "@site/src/pages/_components/AuthContext";
const prompt = {prompt_json};
function PromptDetail() {{
return <AuthProvider><PromptPage prompt={{prompt}} /></AuthProvider>;
}}
export default PromptDetail;
'''
# Write the content to a new file
with open(react_jsx_dir / f"{prompt['id']}.tsx", 'w', encoding='utf-8') as file:
file.write(content)
# 将./src/pages/index.tsx 文档复制到 ./i18n/{lang}/docusaurus-plugin-content-pages/index.tsx,并进行变量替换
def replace_and_write(source_file, destination_file, original_text, replacement_text):
with open(source_file, 'r', encoding='utf-8') as file:
file_data = file.read()
file_data = file_data.replace(original_text, replacement_text)
with open(destination_file, 'w', encoding='utf-8') as file:
file.write(file_data)
# This is the file we want to copy
source_file = os.path.join(os.getcwd(), 'src', 'pages', 'index.tsx')
for lang in languages[1:]:
# Specify the path to the target file
target_file = os.path.join(os.getcwd(), 'i18n', lang, 'docusaurus-plugin-content-pages', 'index.tsx')
# If the target file exists, remove it
if os.path.exists(target_file):
os.remove(target_file)
# Replace 'users.zh' with 'users.{lang}' and write to the target file
replace_and_write(source_file, target_file, 'users.zh', f'users.{lang}')