import { EmailIcon } from "outline-icons"; import * as React from "react"; import { useTranslation } from "react-i18next"; import styled from "styled-components"; import ButtonLarge from "~/components/ButtonLarge"; import InputLarge from "~/components/InputLarge"; import PluginIcon from "~/components/PluginIcon"; import { client } from "~/utils/ApiClient"; import Desktop from "~/utils/Desktop"; import { getRedirectUrl } from "../urls"; type Props = { id: string; name: string; authUrl: string; isCreate: boolean; onEmailSuccess: (email: string) => void; }; function AuthenticationProvider(props: Props) { const { t } = useTranslation(); const [showEmailSignin, setShowEmailSignin] = React.useState(false); const [isSubmitting, setSubmitting] = React.useState(false); const [email, setEmail] = React.useState(""); const { isCreate, id, name, authUrl } = props; const handleChangeEmail = (event: React.ChangeEvent) => { setEmail(event.target.value); }; const handleSubmitEmail = async ( event: React.SyntheticEvent ) => { event.preventDefault(); if (showEmailSignin && email) { setSubmitting(true); try { const response = await client.post(event.currentTarget.action, { email, client: Desktop.isElectron() ? "desktop" : undefined, }); if (response.redirect) { window.location.href = response.redirect; } else { props.onEmailSuccess(email); } } finally { setSubmitting(false); } } else { setShowEmailSignin(true); } }; const href = getRedirectUrl(authUrl); if (id === "email") { if (isCreate) { return null; } return (
{showEmailSignin ? ( <> {t("Sign In")} → ) : ( } fullwidth> {t("Continue with Email")} )}
); } return ( (window.location.href = href)} icon={} fullwidth > {t("Continue with {{ authProviderName }}", { authProviderName: name, })} ); } const Wrapper = styled.div` width: 100%; `; const Form = styled.form` width: 100%; display: flex; justify-content: space-between; `; export default AuthenticationProvider;