|
@@ -27,7 +27,7 @@ import { Avatar } from "./emoji";
|
|
import dynamic from "next/dynamic";
|
|
import dynamic from "next/dynamic";
|
|
import NextImage from "next/image";
|
|
import NextImage from "next/image";
|
|
|
|
|
|
-import { toBlob, toJpeg, toPng } from "html-to-image";
|
|
|
|
|
|
+import { toBlob, toPng } from "html-to-image";
|
|
import { DEFAULT_MASK_AVATAR } from "../store/mask";
|
|
import { DEFAULT_MASK_AVATAR } from "../store/mask";
|
|
import { api } from "../client/api";
|
|
import { api } from "../client/api";
|
|
import { prettyObject } from "../utils/format";
|
|
import { prettyObject } from "../utils/format";
|
|
@@ -41,7 +41,22 @@ const Markdown = dynamic(async () => (await import("./markdown")).Markdown, {
|
|
export function ExportMessageModal(props: { onClose: () => void }) {
|
|
export function ExportMessageModal(props: { onClose: () => void }) {
|
|
return (
|
|
return (
|
|
<div className="modal-mask">
|
|
<div className="modal-mask">
|
|
- <Modal title={Locale.Export.Title} onClose={props.onClose}>
|
|
|
|
|
|
+ <Modal
|
|
|
|
+ title={Locale.Export.Title}
|
|
|
|
+ onClose={props.onClose}
|
|
|
|
+ footer={
|
|
|
|
+ <div
|
|
|
|
+ style={{
|
|
|
|
+ width: "100%",
|
|
|
|
+ textAlign: "center",
|
|
|
|
+ fontSize: 14,
|
|
|
|
+ opacity: 0.5,
|
|
|
|
+ }}
|
|
|
|
+ >
|
|
|
|
+ 只有清除上下文之后的消息会被展示
|
|
|
|
+ </div>
|
|
|
|
+ }
|
|
|
|
+ >
|
|
<div style={{ minHeight: "40vh" }}>
|
|
<div style={{ minHeight: "40vh" }}>
|
|
<MessageExporter />
|
|
<MessageExporter />
|
|
</div>
|
|
</div>
|
|
@@ -149,7 +164,7 @@ export function MessageExporter() {
|
|
if (exportConfig.includeContext) {
|
|
if (exportConfig.includeContext) {
|
|
ret.push(...session.mask.context);
|
|
ret.push(...session.mask.context);
|
|
}
|
|
}
|
|
- ret.push(...session.messages.filter((m, i) => selection.has(m.id)));
|
|
|
|
|
|
+ ret.push(...session.messages.filter((m) => selection.has(m.id)));
|
|
return ret;
|
|
return ret;
|
|
}, [
|
|
}, [
|
|
exportConfig.includeContext,
|
|
exportConfig.includeContext,
|
|
@@ -437,13 +452,13 @@ export function ImagePreviewer(props: {
|
|
showToast(Locale.Export.Image.Toast);
|
|
showToast(Locale.Export.Image.Toast);
|
|
const dom = previewRef.current;
|
|
const dom = previewRef.current;
|
|
if (!dom) return;
|
|
if (!dom) return;
|
|
-
|
|
|
|
|
|
+
|
|
const isApp = getClientConfig()?.isApp;
|
|
const isApp = getClientConfig()?.isApp;
|
|
-
|
|
|
|
|
|
+
|
|
try {
|
|
try {
|
|
const blob = await toPng(dom);
|
|
const blob = await toPng(dom);
|
|
if (!blob) return;
|
|
if (!blob) return;
|
|
-
|
|
|
|
|
|
+
|
|
if (isMobile || (isApp && window.__TAURI__)) {
|
|
if (isMobile || (isApp && window.__TAURI__)) {
|
|
if (isApp && window.__TAURI__) {
|
|
if (isApp && window.__TAURI__) {
|
|
const result = await window.__TAURI__.dialog.save({
|
|
const result = await window.__TAURI__.dialog.save({
|
|
@@ -459,7 +474,7 @@ export function ImagePreviewer(props: {
|
|
},
|
|
},
|
|
],
|
|
],
|
|
});
|
|
});
|
|
-
|
|
|
|
|
|
+
|
|
if (result !== null) {
|
|
if (result !== null) {
|
|
const response = await fetch(blob);
|
|
const response = await fetch(blob);
|
|
const buffer = await response.arrayBuffer();
|
|
const buffer = await response.arrayBuffer();
|