mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-09 03:26:38 +08:00
x
This commit is contained in:
parent
fcc9d6002a
commit
83381519cb
@ -2,17 +2,23 @@ import React, { useEffect, useRef, useMemo, useState, Fragment } from "react";
|
|||||||
|
|
||||||
import styles from "./home.module.scss";
|
import styles from "./home.module.scss";
|
||||||
|
|
||||||
|
import { IconButton } from "./button";
|
||||||
|
import SettingsIcon from "../icons/settings.svg";
|
||||||
|
import GithubIcon from "../icons/github.svg";
|
||||||
|
import ChatGptIcon from "../icons/chatgpt.svg";
|
||||||
import AddIcon from "../icons/add.svg";
|
import AddIcon from "../icons/add.svg";
|
||||||
import CloseIcon from "../icons/close.svg";
|
import CloseIcon from "../icons/close.svg";
|
||||||
import DragIcon from "../icons/drag.svg";
|
import DeleteIcon from "../icons/delete.svg";
|
||||||
import GithubIcon from "../icons/github.svg";
|
|
||||||
import MaskIcon from "../icons/mask.svg";
|
import MaskIcon from "../icons/mask.svg";
|
||||||
|
import DragIcon from "../icons/drag.svg";
|
||||||
import DiscoveryIcon from "../icons/discovery.svg";
|
import DiscoveryIcon from "../icons/discovery.svg";
|
||||||
|
|
||||||
import Locale from "../locales";
|
import Locale from "../locales";
|
||||||
|
|
||||||
import { useAppConfig, useChatStore } from "../store";
|
import { useAppConfig, useChatStore } from "../store";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
DEFAULT_SIDEBAR_WIDTH,
|
DEFAULT_SIDEBAR_WIDTH,
|
||||||
MAX_SIDEBAR_WIDTH,
|
MAX_SIDEBAR_WIDTH,
|
||||||
@ -27,8 +33,11 @@ import { signOut } from "next-auth/react";
|
|||||||
import dynamic from "next/dynamic";
|
import dynamic from "next/dynamic";
|
||||||
import { Link, useNavigate } from "react-router-dom";
|
import { Link, useNavigate } from "react-router-dom";
|
||||||
import { isIOS, useMobileScreen } from "../utils";
|
import { isIOS, useMobileScreen } from "../utils";
|
||||||
|
import dynamic from "next/dynamic";
|
||||||
import { showConfirm, Selector } from "./ui-lib";
|
import { showConfirm, Selector } from "./ui-lib";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const ChatList = dynamic(async () => (await import("./chat-list")).ChatList, {
|
const ChatList = dynamic(async () => (await import("./chat-list")).ChatList, {
|
||||||
loading: () => null,
|
loading: () => null,
|
||||||
});
|
});
|
||||||
@ -70,101 +79,6 @@ export function useDragSideBar() {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const onDragStart = (e: MouseEvent) => {
|
|
||||||
// Remembers the initial width each time the mouse is pressed
|
|
||||||
startX.current = e.clientX;
|
|
||||||
startDragWidth.current = config.sidebarWidth;
|
|
||||||
const dragStartTime = Date.now();
|
|
||||||
|
|
||||||
const handleDragMove = (e: MouseEvent) => {
|
|
||||||
if (Date.now() < lastUpdateTime.current + 20) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
lastUpdateTime.current = Date.now();
|
|
||||||
const d = e.clientX - startX.current;
|
|
||||||
const nextWidth = limit(startDragWidth.current + d);
|
|
||||||
config.update((config) => {
|
|
||||||
if (nextWidth < MIN_SIDEBAR_WIDTH) {
|
|
||||||
config.sidebarWidth = NARROW_SIDEBAR_WIDTH;
|
|
||||||
} else {
|
|
||||||
config.sidebarWidth = nextWidth;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleDragEnd = () => {
|
|
||||||
// In useRef the data is non-responsive, so `config.sidebarWidth` can't get the dynamic sidebarWidth
|
|
||||||
window.removeEventListener("pointermove", handleDragMove);
|
|
||||||
window.removeEventListener("pointerup", handleDragEnd);
|
|
||||||
|
|
||||||
// if user click the drag icon, should toggle the sidebar
|
|
||||||
const shouldFireClick = Date.now() - dragStartTime < 300;
|
|
||||||
if (shouldFireClick) {
|
|
||||||
toggleSideBar();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
window.addEventListener("pointermove", handleDragMove);
|
|
||||||
window.addEventListener("pointerup", handleDragEnd);
|
|
||||||
};
|
|
||||||
|
|
||||||
const isMobileScreen = useMobileScreen();
|
|
||||||
const shouldNarrow =
|
|
||||||
!isMobileScreen && config.sidebarWidth < MIN_SIDEBAR_WIDTH;
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const barWidth = shouldNarrow
|
|
||||||
? NARROW_SIDEBAR_WIDTH
|
|
||||||
: limit(config.sidebarWidth ?? DEFAULT_SIDEBAR_WIDTH);
|
|
||||||
const sideBarWidth = isMobileScreen ? "100vw" : `${barWidth}px`;
|
|
||||||
document.documentElement.style.setProperty("--sidebar-width", sideBarWidth);
|
|
||||||
}, [config.sidebarWidth, isMobileScreen, shouldNarrow]);
|
|
||||||
|
|
||||||
return {
|
|
||||||
onDragStart,
|
|
||||||
shouldNarrow,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
export function SideBarContainer(props: {
|
|
||||||
children: React.ReactNode;
|
|
||||||
onDragStart: (e: MouseEvent) => void;
|
|
||||||
shouldNarrow: boolean;
|
|
||||||
className?: string;
|
|
||||||
}) {
|
|
||||||
const isMobileScreen = useMobileScreen();
|
|
||||||
const isIOSMobile = useMemo(
|
|
||||||
() => isIOS() && isMobileScreen,
|
|
||||||
[isMobileScreen],
|
|
||||||
);
|
|
||||||
const { children, className, onDragStart, shouldNarrow } = props;
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
className={`${styles.sidebar} ${className} ${
|
|
||||||
shouldNarrow && styles["narrow-sidebar"]
|
|
||||||
}`}
|
|
||||||
style={{
|
|
||||||
// #3016 disable transition on ios mobile screen
|
|
||||||
transition: isMobileScreen && isIOSMobile ? "none" : undefined,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{children}
|
|
||||||
<div
|
|
||||||
className={styles["sidebar-drag"]}
|
|
||||||
onPointerDown={(e) => onDragStart(e as any)}
|
|
||||||
>
|
|
||||||
<DragIcon />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function SideBarHeader(props: {
|
|
||||||
title?: string | React.ReactNode;
|
|
||||||
subTitle?: string | React.ReactNode;
|
|
||||||
logo?: React.ReactNode;
|
|
||||||
children?: React.ReactNode;
|
|
||||||
}) {
|
|
||||||
const { title, subTitle, logo, children } = props;
|
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<div className={styles["sidebar-header"]} data-tauri-drag-region>
|
<div className={styles["sidebar-header"]} data-tauri-drag-region>
|
||||||
@ -220,8 +134,8 @@ export function SideBar(props: { className?: string }) {
|
|||||||
{...props}
|
{...props}
|
||||||
>
|
>
|
||||||
<SideBarHeader
|
<SideBarHeader
|
||||||
title="NextChat"
|
title="AdExGPT - via API"
|
||||||
subTitle="Build your own AI assistant."
|
subTitle="secure local UI for OpenAI API."
|
||||||
logo={<ChatGptIcon />}
|
logo={<ChatGptIcon />}
|
||||||
>
|
>
|
||||||
<div className={styles["sidebar-header-bar"]}>
|
<div className={styles["sidebar-header-bar"]}>
|
||||||
|
Loading…
Reference in New Issue
Block a user