diff --git a/src/components/profile/profile-new.tsx b/src/components/profile/profile-new.tsx index ff7945f..05a7815 100644 --- a/src/components/profile/profile-new.tsx +++ b/src/components/profile/profile-new.tsx @@ -4,6 +4,7 @@ import { useTranslation } from "react-i18next"; import { useLockFn, useSetState } from "ahooks"; import { Button, + Collapse, Dialog, DialogActions, DialogContent, @@ -21,7 +22,6 @@ import { Settings } from "@mui/icons-material"; import { createProfile } from "@/services/cmds"; import Notice from "../base/base-notice"; import FileInput from "./file-input"; -import { Smoother } from "./smoother"; interface Props { open: boolean; @@ -94,98 +94,98 @@ const ProfileNew = (props: Props) => { {t("Create Profile")} - - - Type - - + + Type + + + setForm({ name: e.target.value })} + /> + + setForm({ desc: e.target.value })} + /> + + {form.type === "remote" && ( setForm({ name: e.target.value })} + value={form.url} + onChange={(e) => setForm({ url: e.target.value })} /> + )} + {form.type === "local" && ( + (fileDataRef.current = val)} /> + )} + + setForm({ desc: e.target.value })} + value={option.user_agent} + onChange={(e) => setOption({ user_agent: e.target.value })} /> - - {form.type === "remote" && ( - setForm({ url: e.target.value })} - /> - )} - - {form.type === "local" && ( - (fileDataRef.current = val)} /> - )} - - {form.type === "remote" && showOpt && ( - <> - setOption({ user_agent: e.target.value })} - /> - - setOption((o) => ({ - self_proxy: c ? false : o.self_proxy, - with_proxy: c, - })) - } - /> + + setOption((o) => ({ + self_proxy: c ? false : o.self_proxy, + with_proxy: c, + })) } /> - - setOption((o) => ({ - with_proxy: c ? false : o.with_proxy, - self_proxy: c, - })) - } - /> + } + /> + + setOption((o) => ({ + with_proxy: c ? false : o.with_proxy, + self_proxy: c, + })) } /> - - )} - + } + /> + diff --git a/src/components/profile/smoother.tsx b/src/components/profile/smoother.tsx deleted file mode 100644 index 1a1a2dc..0000000 --- a/src/components/profile/smoother.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import { useEffect, useRef } from "react"; - -export const Smoother: React.FC = ({ children }) => { - const self = useRef(null); - useEffect(() => { - if (typeof window.getComputedStyle == "undefined") return; - const element = self.current; - if (!element) return; - var height = window.getComputedStyle(element).height; - element.style.transition = "none"; - element.style.height = "auto"; - var targetHeight = window.getComputedStyle(element).height; - element.style.height = height; - - setTimeout(() => { - element.style.transition = "height .5s"; - element.style.height = targetHeight; - }, 0); - }); - return ( -
- {children} -
- ); -};