build: format the code with prettier

This commit is contained in:
Tristan Yang
2023-05-19 16:31:28 +08:00
parent 7afc132bbb
commit 5bd0183651
259 changed files with 7627 additions and 5607 deletions
+23 -14
View File
@@ -1,20 +1,21 @@
import { useState, useEffect, ChangeEvent, FormEvent } from "react";
import { useNavigate } from "react-router-dom";
import { ChangeEvent, FormEvent, useEffect, useState } from "react";
import toast from "react-hot-toast";
import BASE_URL from "@/app/config";
import Input from "@/components/styled/Input";
import Button from "@/components/styled/Button";
import { useSendLoginMagicLinkMutation } from "@/app/services/auth";
import SentTip from "./SentTip";
import { useTranslation } from "react-i18next";
import SocialLoginButtons from "../login/SocialLoginButtons";
import Divider from "@/components/Divider";
import SignInLink from "../reg/SignInLink";
import { useNavigate } from "react-router-dom";
import BASE_URL from "@/app/config";
import { useSendLoginMagicLinkMutation } from "@/app/services/auth";
import { useAppSelector } from "@/app/store";
import Divider from "@/components/Divider";
import Button from "@/components/styled/Button";
import Input from "@/components/styled/Input";
import SocialLoginButtons from "../login/SocialLoginButtons";
import SignInLink from "../reg/SignInLink";
import SentTip from "./SentTip";
export default function SendMagicLinkPage() {
const { t } = useTranslation("auth");
const serverName = useAppSelector(store => store.server.name);
const serverName = useAppSelector((store) => store.server.name);
const [sent, setSent] = useState(false);
const [sendMagicLink, { isSuccess, isLoading, error }] = useSendLoginMagicLinkMutation();
const navigateTo = useNavigate();
@@ -73,8 +74,14 @@ export default function SendMagicLinkPage() {
) : (
<>
<div className="flex flex-col items-center">
<img src={`${BASE_URL}/resource/organization/logo`} alt="logo" className="w-14 h-14 mb-7 rounded-full" />
<h2 className="font-semibold text-2xl text-gray-800 dark:text-gray-200 mb-2">{t("enter")} {serverName} </h2>
<img
src={`${BASE_URL}/resource/organization/logo`}
alt="logo"
className="w-14 h-14 mb-7 rounded-full"
/>
<h2 className="font-semibold text-2xl text-gray-800 dark:text-gray-200 mb-2">
{t("enter")} {serverName}{" "}
</h2>
<span className="text-center text-gray-500 mb-6">{t("placeholder_email")}</span>
</div>
<form onSubmit={handleLogin} className="flex flex-col gap-5 w-[360px]">
@@ -94,7 +101,9 @@ export default function SendMagicLinkPage() {
</Button>
</form>
<Divider content="OR" />
<Button onClick={handlePwdPath} className="w-full" >{t("login.password")}</Button>
<Button onClick={handlePwdPath} className="w-full">
{t("login.password")}
</Button>
<div className="flex flex-col gap-3 py-3">
<SocialLoginButtons />
</div>