auth.tsx 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. import styles from "./auth.module.scss";
  2. import { IconButton } from "./button";
  3. import { useNavigate } from "react-router-dom";
  4. import { Path } from "../constant";
  5. import { useAccessStore } from "../store";
  6. import Locale from "../locales";
  7. import BotIcon from "../icons/bot.svg";
  8. import { useEffect } from "react";
  9. import { getClientConfig } from "../config/client";
  10. export function AuthPage() {
  11. const navigate = useNavigate();
  12. const accessStore = useAccessStore();
  13. const goHome = () => navigate(Path.Home);
  14. const goChat = () => navigate(Path.Chat);
  15. const resetAccessCode = () => {
  16. accessStore.update((access) => {
  17. access.openaiApiKey = "";
  18. access.accessCode = "";
  19. });
  20. }; // Reset access code to empty string
  21. useEffect(() => {
  22. const clientConfig = getClientConfig();
  23. if (clientConfig?.isApp) { // Force to set custom endpoint to true if it's app
  24. navigate(Path.Settings);
  25. accessStore.update((state) => {
  26. state.useCustomConfig = true;
  27. });
  28. }
  29. // eslint-disable-next-line react-hooks/exhaustive-deps
  30. }, []);
  31. return (
  32. <div className={styles["auth-page"]}>
  33. <div className={`no-dark ${styles["auth-logo"]}`}>
  34. <BotIcon />
  35. </div>
  36. <div className={styles["auth-title"]}>{Locale.Auth.Title}</div>
  37. <div className={styles["auth-tips"]}>{Locale.Auth.Tips}</div>
  38. <input
  39. className={styles["auth-input"]}
  40. type="password"
  41. placeholder={Locale.Auth.Input}
  42. value={accessStore.accessCode}
  43. onChange={(e) => {
  44. accessStore.update(
  45. (access) => (access.accessCode = e.currentTarget.value),
  46. );
  47. }}
  48. />
  49. {!accessStore.hideUserApiKey ? (
  50. <>
  51. <div className={styles["auth-tips"]}>{Locale.Auth.SubTips}</div>
  52. <input
  53. className={styles["auth-input"]}
  54. type="password"
  55. placeholder={Locale.Settings.Access.OpenAI.ApiKey.Placeholder}
  56. value={accessStore.openaiApiKey}
  57. onChange={(e) => {
  58. accessStore.update(
  59. (access) => (access.openaiApiKey = e.currentTarget.value),
  60. );
  61. }}
  62. />
  63. </>
  64. ) : null}
  65. <div className={styles["auth-actions"]}>
  66. <IconButton
  67. text={Locale.Auth.Confirm}
  68. type="primary"
  69. onClick={goChat}
  70. />
  71. <IconButton
  72. text={Locale.Auth.Later}
  73. onClick={() => {
  74. resetAccessCode();
  75. goHome();
  76. }}
  77. />
  78. </div>
  79. </div>
  80. );
  81. }