mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-10 20:16:37 +08:00
Merge branch 'main' of https://github.com/Yidadaa/ChatGPT-Next-Web
This commit is contained in:
commit
de93c01527
@ -281,15 +281,13 @@
|
|||||||
border: var(--border-in-light);
|
border: var(--border-in-light);
|
||||||
position: relative;
|
position: relative;
|
||||||
transition: all ease 0.3s;
|
transition: all ease 0.3s;
|
||||||
min-width: 0;
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
min-width: 330px;
|
|
||||||
|
|
||||||
.chat-message-actions {
|
.chat-message-actions {
|
||||||
height: 40px;
|
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: translateY(0px);
|
transform: translateY(0px);
|
||||||
|
max-width: 100%;
|
||||||
|
height: 40px;
|
||||||
|
|
||||||
.chat-message-action-date {
|
.chat-message-action-date {
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
@ -299,7 +297,6 @@
|
|||||||
|
|
||||||
.chat-message-actions {
|
.chat-message-actions {
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 100%;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
@ -308,11 +305,21 @@
|
|||||||
transform: translateY(10px);
|
transform: translateY(10px);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
|
max-width: 0;
|
||||||
|
|
||||||
|
.chat-input-actions {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-message-action-date {
|
.chat-message-action-date {
|
||||||
|
white-space: nowrap;
|
||||||
|
transition: all ease 0.6s;
|
||||||
color: var(--black);
|
color: var(--black);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
text-align: right;
|
||||||
|
margin-left: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -294,8 +294,8 @@ function ChatAction(props: {
|
|||||||
const iconRef = useRef<HTMLDivElement>(null);
|
const iconRef = useRef<HTMLDivElement>(null);
|
||||||
const textRef = useRef<HTMLDivElement>(null);
|
const textRef = useRef<HTMLDivElement>(null);
|
||||||
const [width, setWidth] = useState({
|
const [width, setWidth] = useState({
|
||||||
full: 20,
|
full: 16,
|
||||||
icon: 20,
|
icon: 16,
|
||||||
});
|
});
|
||||||
|
|
||||||
function updateWidth() {
|
function updateWidth() {
|
||||||
@ -309,10 +309,6 @@ function ChatAction(props: {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
updateWidth();
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={`${styles["chat-input-action"]} clickable`}
|
className={`${styles["chat-input-action"]} clickable`}
|
||||||
@ -320,6 +316,8 @@ function ChatAction(props: {
|
|||||||
props.onClick();
|
props.onClick();
|
||||||
setTimeout(updateWidth, 1);
|
setTimeout(updateWidth, 1);
|
||||||
}}
|
}}
|
||||||
|
onMouseEnter={updateWidth}
|
||||||
|
onTouchStart={updateWidth}
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"--icon-width": `${width.icon}px`,
|
"--icon-width": `${width.icon}px`,
|
||||||
@ -515,14 +513,6 @@ export function Chat() {
|
|||||||
{ leading: true, trailing: true },
|
{ leading: true, trailing: true },
|
||||||
);
|
);
|
||||||
|
|
||||||
const onPromptSelect = (prompt: Prompt) => {
|
|
||||||
setTimeout(() => {
|
|
||||||
setPromptHints([]);
|
|
||||||
setUserInput(prompt.content);
|
|
||||||
inputRef.current?.focus();
|
|
||||||
}, 30);
|
|
||||||
};
|
|
||||||
|
|
||||||
// auto grow input
|
// auto grow input
|
||||||
const [inputRows, setInputRows] = useState(2);
|
const [inputRows, setInputRows] = useState(2);
|
||||||
const measure = useDebouncedCallback(
|
const measure = useDebouncedCallback(
|
||||||
@ -595,6 +585,23 @@ export function Chat() {
|
|||||||
setAutoScroll(true);
|
setAutoScroll(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onPromptSelect = (prompt: Prompt) => {
|
||||||
|
setTimeout(() => {
|
||||||
|
setPromptHints([]);
|
||||||
|
|
||||||
|
const matchedChatCommand = chatCommands.match(prompt.content);
|
||||||
|
if (matchedChatCommand.matched) {
|
||||||
|
// if user is selecting a chat command, just trigger it
|
||||||
|
matchedChatCommand.invoke();
|
||||||
|
setUserInput("");
|
||||||
|
} else {
|
||||||
|
// or fill the prompt
|
||||||
|
setUserInput(prompt.content);
|
||||||
|
}
|
||||||
|
inputRef.current?.focus();
|
||||||
|
}, 30);
|
||||||
|
};
|
||||||
|
|
||||||
// stop response
|
// stop response
|
||||||
const onUserStop = (messageId: number) => {
|
const onUserStop = (messageId: number) => {
|
||||||
ChatControllerPool.stop(sessionIndex, messageId);
|
ChatControllerPool.stop(sessionIndex, messageId);
|
||||||
@ -937,30 +944,30 @@ export function Chat() {
|
|||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
<ChatAction
|
|
||||||
text={Locale.Chat.Actions.Delete}
|
|
||||||
icon={<DeleteIcon />}
|
|
||||||
onClick={() => onDelete(message.id ?? i)}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<ChatAction
|
<ChatAction
|
||||||
text={Locale.Chat.Actions.Retry}
|
text={Locale.Chat.Actions.Retry}
|
||||||
icon={<ResetIcon />}
|
icon={<ResetIcon />}
|
||||||
onClick={() => onResend(message.id ?? i)}
|
onClick={() => onResend(message.id ?? i)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<ChatAction
|
||||||
|
text={Locale.Chat.Actions.Delete}
|
||||||
|
icon={<DeleteIcon />}
|
||||||
|
onClick={() => onDelete(message.id ?? i)}
|
||||||
|
/>
|
||||||
|
|
||||||
<ChatAction
|
<ChatAction
|
||||||
text={Locale.Chat.Actions.Pin}
|
text={Locale.Chat.Actions.Pin}
|
||||||
icon={<PinIcon />}
|
icon={<PinIcon />}
|
||||||
onClick={() => onPinMessage(message)}
|
onClick={() => onPinMessage(message)}
|
||||||
/>
|
/>
|
||||||
</>
|
|
||||||
)}
|
|
||||||
<ChatAction
|
<ChatAction
|
||||||
text={Locale.Chat.Actions.Copy}
|
text={Locale.Chat.Actions.Copy}
|
||||||
icon={<CopyIcon />}
|
icon={<CopyIcon />}
|
||||||
onClick={() => copyToClipboard(message.content)}
|
onClick={() => copyToClipboard(message.content)}
|
||||||
/>
|
/>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={styles["chat-message-action-date"]}>
|
<div className={styles["chat-message-action-date"]}>
|
||||||
|
@ -46,6 +46,7 @@ import { InputRange } from "./input-range";
|
|||||||
import { useNavigate } from "react-router-dom";
|
import { useNavigate } from "react-router-dom";
|
||||||
import { Avatar, AvatarPicker } from "./emoji";
|
import { Avatar, AvatarPicker } from "./emoji";
|
||||||
import { getClientConfig } from "../config/client";
|
import { getClientConfig } from "../config/client";
|
||||||
|
import { useSyncStore } from "../store/sync";
|
||||||
|
|
||||||
function EditPromptModal(props: { id: number; onClose: () => void }) {
|
function EditPromptModal(props: { id: number; onClose: () => void }) {
|
||||||
const promptStore = usePromptStore();
|
const promptStore = usePromptStore();
|
||||||
@ -198,6 +199,78 @@ function UserPromptModal(props: { onClose?: () => void }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function SyncItems() {
|
||||||
|
const syncStore = useSyncStore();
|
||||||
|
const webdav = syncStore.webDavConfig;
|
||||||
|
|
||||||
|
// not ready: https://github.com/Yidadaa/ChatGPT-Next-Web/issues/920#issuecomment-1609866332
|
||||||
|
return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<List>
|
||||||
|
<ListItem
|
||||||
|
title={"上次同步:" + new Date().toLocaleString()}
|
||||||
|
subTitle={"20 次对话,100 条消息,200 提示词,20 面具"}
|
||||||
|
>
|
||||||
|
<IconButton
|
||||||
|
icon={<ResetIcon />}
|
||||||
|
text="同步"
|
||||||
|
onClick={() => {
|
||||||
|
syncStore.check().then(console.log);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</ListItem>
|
||||||
|
|
||||||
|
<ListItem
|
||||||
|
title={"本地备份"}
|
||||||
|
subTitle={"20 次对话,100 条消息,200 提示词,20 面具"}
|
||||||
|
></ListItem>
|
||||||
|
|
||||||
|
<ListItem
|
||||||
|
title={"Web Dav Server"}
|
||||||
|
subTitle={Locale.Settings.AccessCode.SubTitle}
|
||||||
|
>
|
||||||
|
<input
|
||||||
|
value={webdav.server}
|
||||||
|
type="text"
|
||||||
|
placeholder={"https://example.com"}
|
||||||
|
onChange={(e) => {
|
||||||
|
syncStore.update(
|
||||||
|
(config) => (config.server = e.currentTarget.value),
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</ListItem>
|
||||||
|
|
||||||
|
<ListItem title="Web Dav User Name" subTitle="user name here">
|
||||||
|
<input
|
||||||
|
value={webdav.username}
|
||||||
|
type="text"
|
||||||
|
placeholder={"username"}
|
||||||
|
onChange={(e) => {
|
||||||
|
syncStore.update(
|
||||||
|
(config) => (config.username = e.currentTarget.value),
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</ListItem>
|
||||||
|
|
||||||
|
<ListItem title="Web Dav Password" subTitle="password here">
|
||||||
|
<input
|
||||||
|
value={webdav.password}
|
||||||
|
type="text"
|
||||||
|
placeholder={"password"}
|
||||||
|
onChange={(e) => {
|
||||||
|
syncStore.update(
|
||||||
|
(config) => (config.password = e.currentTarget.value),
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</ListItem>
|
||||||
|
</List>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
function formatVersionDate(t: string) {
|
function formatVersionDate(t: string) {
|
||||||
const d = new Date(+t);
|
const d = new Date(+t);
|
||||||
const year = d.getUTCFullYear();
|
const year = d.getUTCFullYear();
|
||||||
@ -556,6 +629,7 @@ export function Settings() {
|
|||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
value={accessStore.openaiUrl}
|
value={accessStore.openaiUrl}
|
||||||
|
placeholder="https://api.openai.com/"
|
||||||
onChange={(e) =>
|
onChange={(e) =>
|
||||||
accessStore.updateOpenAiUrl(e.currentTarget.value)
|
accessStore.updateOpenAiUrl(e.currentTarget.value)
|
||||||
}
|
}
|
||||||
@ -596,6 +670,8 @@ export function Settings() {
|
|||||||
</ListItem>
|
</ListItem>
|
||||||
</List>
|
</List>
|
||||||
|
|
||||||
|
<SyncItems />
|
||||||
|
|
||||||
<List>
|
<List>
|
||||||
<ModelConfigList
|
<ModelConfigList
|
||||||
modelConfig={config.modelConfig}
|
modelConfig={config.modelConfig}
|
||||||
|
@ -33,6 +33,7 @@ export enum StoreKey {
|
|||||||
Mask = "mask-store",
|
Mask = "mask-store",
|
||||||
Prompt = "prompt-store",
|
Prompt = "prompt-store",
|
||||||
Update = "chat-update",
|
Update = "chat-update",
|
||||||
|
Sync = "sync",
|
||||||
}
|
}
|
||||||
|
|
||||||
export const MAX_SIDEBAR_WIDTH = 500;
|
export const MAX_SIDEBAR_WIDTH = 500;
|
||||||
|
87
app/store/sync.ts
Normal file
87
app/store/sync.ts
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
import { Updater } from "../typing";
|
||||||
|
import { create } from "zustand";
|
||||||
|
import { persist } from "zustand/middleware";
|
||||||
|
import { StoreKey } from "../constant";
|
||||||
|
|
||||||
|
export interface WebDavConfig {
|
||||||
|
server: string;
|
||||||
|
username: string;
|
||||||
|
password: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SyncStore {
|
||||||
|
webDavConfig: WebDavConfig;
|
||||||
|
lastSyncTime: number;
|
||||||
|
|
||||||
|
update: Updater<WebDavConfig>;
|
||||||
|
check: () => Promise<boolean>;
|
||||||
|
|
||||||
|
path: (path: string) => string;
|
||||||
|
headers: () => { Authorization: string };
|
||||||
|
}
|
||||||
|
|
||||||
|
const FILE = {
|
||||||
|
root: "/chatgpt-next-web/",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const useSyncStore = create<SyncStore>()(
|
||||||
|
persist(
|
||||||
|
(set, get) => ({
|
||||||
|
webDavConfig: {
|
||||||
|
server: "",
|
||||||
|
username: "",
|
||||||
|
password: "",
|
||||||
|
},
|
||||||
|
|
||||||
|
lastSyncTime: 0,
|
||||||
|
|
||||||
|
update(updater) {
|
||||||
|
const config = { ...get().webDavConfig };
|
||||||
|
updater(config);
|
||||||
|
set({ webDavConfig: config });
|
||||||
|
},
|
||||||
|
|
||||||
|
async check() {
|
||||||
|
try {
|
||||||
|
const res = await fetch(this.path(""), {
|
||||||
|
method: "PROFIND",
|
||||||
|
headers: this.headers(),
|
||||||
|
});
|
||||||
|
console.log(res);
|
||||||
|
return res.status === 207;
|
||||||
|
} catch (e) {
|
||||||
|
console.error("[Sync] ", e);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
path(path: string) {
|
||||||
|
let url = get().webDavConfig.server;
|
||||||
|
|
||||||
|
if (!url.endsWith("/")) {
|
||||||
|
url += "/";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (path.startsWith("/")) {
|
||||||
|
path = path.slice(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
return url + path;
|
||||||
|
},
|
||||||
|
|
||||||
|
headers() {
|
||||||
|
const auth = btoa(
|
||||||
|
[get().webDavConfig.username, get().webDavConfig.password].join(":"),
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
Authorization: `Basic ${auth}`,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
{
|
||||||
|
name: StoreKey.Sync,
|
||||||
|
version: 1,
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
Loading…
Reference in New Issue
Block a user