writing.tsx
15.7 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
import chatStyles from "@/app/components/chat.module.scss";
import homeStyles from "@/app/components/home.module.scss";
import styles from "@/app/components/writing/writing.module.scss";
import clsx from "clsx";
import { WriteSiderBar } from "./write-siderBar";
import { WindowContent } from "@/app/components/home";
import { useMobileScreen } from "@/app/utils";
import { IconButton } from "../button";
import Locale from "@/app/locales";
import { Path } from "@/app/constant";
import { useLocation, useNavigate } from "react-router-dom";
import { getClientConfig } from "@/app/config/client";
import React, {
useCallback,
useEffect,
useMemo,
useRef,
useState,
} from "react";
import { useAppConfig, useChatStore, useMindMapStore } from "@/app/store";
import { ChatAction } from "../chat";
import { useWindowSize } from "@/app/utils";
import { exportHtmlToWord } from "@/app/utils/fileExport/word";
import ReturnIcon from "@/app/icons/return.svg";
import MinIcon from "@/app/icons/min.svg";
import MaxIcon from "@/app/icons/max.svg";
import SDIcon from "@/app/icons/sd.svg";
import LoadingIcon from "@/app/icons/three-dots.svg";
import BotIcon from "@/app/icons/bot.svg";
import EditIcon from "@/app/icons/rename.svg";
import ReloadIcon from "@/app/icons/reload.svg";
import CopyIcon from "@/app/icons/copy.svg";
import ExcelIcon from "@/app/icons/excel.svg";
import WordIcon from "@/app/icons/word.svg";
import MindIcon from "@/app/icons/mind.svg";
import PptIcon from "@/app/icons/ppt.svg";
import PdfIcon from "@/app/icons/pdf.svg";
import HtmlIcon from "@/app/icons/HTML.svg";
import { Button, Dropdown, MenuProps, message as msgModal, Space } from "antd";
import { HTMLPreview } from "../artifacts";
import { getMindPrompt, getWrtingPrompt } from "@/app/utils/prompt";
import { htmlToPdf2 } from "@/app/utils/fileExport/toPdf";
import { hasTable, htmlToExcel } from "@/app/utils/fileExport/export2Excel";
import { writePromptParam } from "@/app/types/prompt";
import dynamic from "next/dynamic";
import { rewriteItems, mergedData } from "./menuData";
const EditorComponent = dynamic(
async () => (await import("./editor")).EditorComponent,
{
loading: () => null,
},
);
export function WritingPage() {
const chatStore = useChatStore();
const isMobileScreen = useMobileScreen();
const navigate = useNavigate();
const clientConfig = useMemo(() => getClientConfig(), []);
const showMaxIcon = !isMobileScreen && !clientConfig?.isApp;
const config = useAppConfig();
const scrollRef = useRef<HTMLDivElement>(null);
const isWriting = location.pathname === Path.Writing;
const { height } = useWindowSize();
const [width, setWidth] = useState("100%");
const [isEdit, setIsEdit] = useState(false);
const [loading, setLoading] = useState(false);
const [htmlHeader, setHtmlheader] = useState("");
const [htmlCode, setHtmlCode] = useState<string>(
localStorage.getItem("htmlCode") || "",
);
const query = useLocation(); //获取路由参数
let { msg, writeMessage } = query.state || {}; //获取路由参数
const items: MenuProps["items"] = rewriteItems.map((item, index) => ({
key: (index + 1).toString(),
label: (
<a
target="_blank"
rel="noopener noreferrer"
href="#"
onClick={(e) => {
e.preventDefault(); // 阻止默认行为
rewrite(item); // 调用 rewrite 函数并传递菜单项文本
}}
>
{item}
</a>
),
}));
useEffect(() => {
if (!msg) {
return;
}
if (!writeMessage) {
return;
}
const navigateGetData = async () => {
try {
const param: writePromptParam = {
writingPurposeName: mergedData[0].default,
writingStyleName: mergedData[2].default,
writingLanguageName: mergedData[3].default,
prompt: writeMessage,
writingTypeName: mergedData[4].default,
isImgName: mergedData[5].default,
writingCount: "200",
fileData: "",
};
const input = getWrtingPrompt(param);
setLoading(true);
console.log("------------------------" + input);
const response = await chatStore.directLlmInvoke(input, "gpt-4o-mini");
let cleanedContent = response.startsWith("```html")
? response.substring(8)
: response;
if (cleanedContent.endsWith("```")) {
cleanedContent = cleanedContent.substring(
0,
cleanedContent.length - 4,
);
}
//保存html头部
const bodyTagRegex = /<body[^>]*>/i;
const bodyTagMatch = cleanedContent.match(bodyTagRegex);
if (bodyTagMatch && bodyTagMatch.index !== undefined) {
// 截取从文档开头到 <body> 标签的起始位置
const contentUpToBody = cleanedContent.slice(
0,
bodyTagMatch.index + bodyTagMatch[0].length,
);
setHtmlheader(contentUpToBody); //保存html头部
}
localStorage.setItem("htmlCode", cleanedContent);
setHtmlCode(cleanedContent);
} catch (error) {
msgModal.error("生成失败,请重试");
} finally {
setLoading(false);
}
};
navigateGetData();
}, []);
function wrapContentInDivWithWidth(html: string): string {
const parser = new DOMParser();
const doc = parser.parseFromString(html, "text/html");
const body = doc.body;
const centerStyle =
"display: flex;flex-direction: column;justify-content: center;align-items: center;margin:0";
body.style.cssText += centerStyle;
if (!body) {
return `<html><head><meta charset="UTF-8"></head>
<body style="${centerStyle}">
<div style="width: ${width}">${html}</div></body></html>`;
}
// 创建一个新的<div>,并设置宽度
const wrapperDiv = doc.createElement("div");
wrapperDiv.style.width = width;
// 将<body>中的所有子节点移到<div>中
while (body.firstChild) {
wrapperDiv.appendChild(body.firstChild);
}
// 将<div>添加到<body>中
body.appendChild(wrapperDiv);
// 将修改后的DOM转换回HTML字符串
return doc.documentElement.outerHTML;
}
const handleCopy = async () => {
try {
const blob = new Blob([htmlCode], { type: "text/html" });
const clipboardItem = new ClipboardItem({ "text/html": blob });
await navigator.clipboard.write([clipboardItem]);
msgModal.success("复制成功!");
} catch (error) {
msgModal.error("复制失败");
}
};
//跳转到ppt页面
function toPowerpoint(pptMessage: string) {
navigate(Path.Powerpoint, { state: { msg: true, pptMessage: pptMessage } });
}
// 转至思维导图页面
const toMind = useCallback(
(content: string) => {
const { setMindMapData } = useMindMapStore.getState();
setMindMapData(
[
{
role: "user",
content: getMindPrompt(content, true),
},
],
content,
);
navigate(Path.Mind, { state: { msg: true } });
},
[navigate],
);
//导出html文件
const exportHtml = useCallback(() => {
try {
const htmlContent = wrapContentInDivWithWidth(htmlCode);
const parser = new DOMParser();
const doc = parser.parseFromString(htmlContent, "text/html");
// 提取<h1>标签的内容作为文件名
let fileName = "output.html"; // 默认文件名
const h1Element = doc.querySelector("h1");
if (h1Element && h1Element.textContent) {
// 使用<h1>的内容作为文件名,并清理非法字符
fileName =
h1Element.textContent
.trim()
.replace(/[\u0000-\u001f\\?*:"<>|]/g, "") + ".html";
}
const blob = new Blob([htmlContent], { type: "text/html" });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = fileName;
a.click();
URL.revokeObjectURL(url);
msgModal.success("导出成功");
} catch (error) {
msgModal.error("导出失败");
}
}, [wrapContentInDivWithWidth]);
async function rewrite(msg: string) {
const messagesStr = localStorage.getItem("aiWrite");
if (!messagesStr) return;
let messages: any;
try {
messages = JSON.parse(messagesStr);
} catch (error) {
return;
}
// 检查是否是数组且包含合法 message 对象
if (!Array.isArray(messages)) return;
if (
!messages.every(
(m) =>
typeof m === "object" &&
m !== null &&
"role" in m &&
"content" in m &&
typeof m.role === "string" &&
typeof m.content === "string",
)
)
return;
try {
setLoading(true);
messages.push({ role: "user", content: msg });
const response = await chatStore.sendContext(messages, "gpt-4o-mini");
messages.push({ role: "assistant", content: response });
let cleanedContent = response.startsWith("```html")
? response.substring(8)
: response;
if (cleanedContent.endsWith("```")) {
cleanedContent = cleanedContent.substring(0, cleanedContent.length - 4);
}
const bodyTagRegex = /<body[^>]*>/i;
const bodyTagMatch = cleanedContent.match(bodyTagRegex);
if (bodyTagMatch?.index !== undefined) {
setHtmlheader(
cleanedContent.slice(0, bodyTagMatch.index + bodyTagMatch[0].length),
);
}
localStorage.setItem("htmlCode", cleanedContent);
localStorage.setItem("aiWrite", JSON.stringify(messages));
setHtmlCode(cleanedContent);
} catch (error) {
msgModal.error("重写失败,请重试");
} finally {
setLoading(false);
}
}
useEffect(() => {
localStorage.setItem("htmlCode", htmlCode);
}, [htmlCode]);
return (
<>
<WriteSiderBar
className={clsx({ [homeStyles["sidebar-show"]]: isWriting })}
htmlCode={htmlCode}
setHtmlCode={setHtmlCode}
loading={loading}
setLoading={setLoading}
setWidth={setWidth}
setHtmlheader={setHtmlheader}
/>
<WindowContent>
<div className={chatStyles.chat} key={"1"}>
<div className="window-header" data-tauri-drag-region>
{isMobileScreen && (
<div className="window-actions">
<div className={"window-action-button"}>
<IconButton
icon={<ReturnIcon />}
bordered
title={Locale.Chat.Actions.ChatList}
onClick={() => navigate(Path.BgRemoval)}
/>
</div>
</div>
)}
<div
className={clsx(
"window-header-title",
chatStyles["chat-body-title"],
)}
>
<div className={`window-header-main-title`}>AI-Writing</div>
</div>
<div className={chatStyles["chat-message-actions"]}>
{htmlCode && (
<div className={chatStyles["chat-input-actions"]}>
<Dropdown
menu={{ items }}
placement="bottom"
arrow={{ pointAtCenter: true }}
>
<Button>
<Space>
<ReloadIcon />
{Locale.Chat.Actions.ReWrite}
</Space>
</Button>
</Dropdown>
<ChatAction
text={Locale.Chat.Actions.Copy}
icon={<CopyIcon />}
onClick={handleCopy}
disabled={isEdit}
/>
{!isEdit ? (
<ChatAction
text={Locale.Chat.Actions.Edit}
icon={<EditIcon />}
onClick={() => {
setIsEdit(true);
}}
/>
) : (
<ChatAction
text={Locale.Chat.Actions.CancelEdit}
icon={<EditIcon />}
onClick={() => {
setIsEdit(false);
}}
/>
)}
<ChatAction
text={Locale.Export.Pdf}
icon={<PdfIcon />}
onClick={async () => {
setLoading(true);
const html = wrapContentInDivWithWidth(htmlCode);
await htmlToPdf2(html);
setLoading(false);
}}
disabled={isEdit}
/>
<ChatAction
text={Locale.Export.Word}
icon={<WordIcon />}
onClick={() => {
const html = wrapContentInDivWithWidth(htmlCode);
exportHtmlToWord(html);
}}
disabled={isEdit}
/>
{hasTable(htmlCode) && (
<ChatAction
text={Locale.Export.Excel}
icon={<ExcelIcon />}
onClick={() => {
htmlToExcel(htmlCode);
}}
disabled={isEdit}
/>
)}
<ChatAction
text={Locale.Export.Ppt}
icon={<PptIcon />}
onClick={() => {
toPowerpoint(htmlCode);
}}
disabled={isEdit}
/>
<ChatAction
text={Locale.Export.Mind.title}
icon={<MindIcon />}
onClick={() => {
toMind(htmlCode);
}}
disabled={isEdit}
/>
<ChatAction
text={Locale.Export.Html}
icon={<HtmlIcon />}
onClick={() => {
exportHtml();
}}
disabled={isEdit}
/>
</div>
)}
</div>
<div className="window-actions">
{showMaxIcon && (
<div className="window-action-button">
<IconButton
aria={Locale.Chat.Actions.FullScreen}
icon={config.tightBorder ? <MinIcon /> : <MaxIcon />}
bordered
onClick={() => {
config.update(
(config) => (config.tightBorder = !config.tightBorder),
);
}}
/>
</div>
)}
{isMobileScreen && <SDIcon width={50} height={50} />}
</div>
</div>
<div
className={`${chatStyles["chat-body"]} ${styles["write-body"]}`}
ref={scrollRef}
>
{loading ? (
<div className={clsx("no-dark", styles["loading-content"])}>
<BotIcon />
<LoadingIcon />
</div>
) : (
htmlCode &&
(isEdit ? (
<EditorComponent
htmlCode={htmlCode}
setHtmlCode={setHtmlCode}
/>
) : (
<HTMLPreview
code={htmlCode}
autoHeight={!document.fullscreenElement}
height={!document.fullscreenElement ? "100%" : height}
width={width}
/>
))
)}
</div>
</div>
</WindowContent>
</>
);
}