refactor: login buttons
This commit is contained in:
@@ -120,6 +120,7 @@ export default function ConfigSMTP() {
|
|||||||
<div className="input">
|
<div className="input">
|
||||||
<Label htmlFor="desc">Password</Label>
|
<Label htmlFor="desc">Password</Label>
|
||||||
<Input
|
<Input
|
||||||
|
type={"password"}
|
||||||
disabled={!enabled}
|
disabled={!enabled}
|
||||||
data-type="password"
|
data-type="password"
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
|
|||||||
@@ -1,4 +1,17 @@
|
|||||||
|
import { useState } from "react";
|
||||||
|
import { HiEye, HiEyeOff } from "react-icons/hi";
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
|
const StyledWrapper = styled.div`
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
.view {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
right: 10px;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
`;
|
||||||
const StyledInput = styled.input`
|
const StyledInput = styled.input`
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
@@ -10,6 +23,12 @@ const StyledInput = styled.input`
|
|||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
color: #333;
|
color: #333;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
|
&.large {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
|
padding: 10px 14px;
|
||||||
|
}
|
||||||
&.none {
|
&.none {
|
||||||
outline: none;
|
outline: none;
|
||||||
border: none;
|
border: none;
|
||||||
@@ -23,6 +42,30 @@ const StyledInput = styled.input`
|
|||||||
&::placeholder {
|
&::placeholder {
|
||||||
color: #78787c;
|
color: #78787c;
|
||||||
}
|
}
|
||||||
|
&[type="password"] {
|
||||||
|
padding-right: 30px;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export default StyledInput;
|
export default function Input({ type = "text", ...rest }) {
|
||||||
|
const [inputType, setInputType] = useState(type);
|
||||||
|
const togglePasswordVisible = () => {
|
||||||
|
setInputType((prev) => (prev == "password" ? "text" : "password"));
|
||||||
|
};
|
||||||
|
return type == "password" ? (
|
||||||
|
<StyledWrapper>
|
||||||
|
<StyledInput type={inputType} {...rest} />
|
||||||
|
<div className="view" onClick={togglePasswordVisible}>
|
||||||
|
{inputType == "password" ? (
|
||||||
|
<HiEyeOff color="#78787c" />
|
||||||
|
) : (
|
||||||
|
<HiEye color="#78787c" />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</StyledWrapper>
|
||||||
|
) : (
|
||||||
|
<StyledInput type={inputType} {...rest} />
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// export default StyledInput;
|
||||||
|
|||||||
@@ -2,9 +2,12 @@
|
|||||||
import { useGoogleLogin } from "react-google-login";
|
import { useGoogleLogin } from "react-google-login";
|
||||||
import { googleClientID } from "../../app/config";
|
import { googleClientID } from "../../app/config";
|
||||||
import googleSvg from "../../assets/icons/google.svg?url";
|
import googleSvg from "../../assets/icons/google.svg?url";
|
||||||
|
import { StyledSocialButton } from "./styled";
|
||||||
export default function GoogleLoginButton({ login }) {
|
export default function GoogleLoginButton({ login }) {
|
||||||
const { signIn, loaded } = useGoogleLogin({
|
const { signIn, loaded } = useGoogleLogin({
|
||||||
|
onScriptLoadFailure: (wtf) => {
|
||||||
|
console.log("google login script load failure", wtf);
|
||||||
|
},
|
||||||
clientId: googleClientID,
|
clientId: googleClientID,
|
||||||
onSuccess: ({ tokenId, ...rest }) => {
|
onSuccess: ({ tokenId, ...rest }) => {
|
||||||
console.log("success", tokenId, rest);
|
console.log("success", tokenId, rest);
|
||||||
@@ -14,21 +17,17 @@ export default function GoogleLoginButton({ login }) {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
onFailure: (wtf) => {
|
onFailure: (wtf) => {
|
||||||
console.log("failure", wtf);
|
console.log("google login failure", wtf);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const handleGoogleLogin = () => {
|
const handleGoogleLogin = () => {
|
||||||
signIn();
|
signIn();
|
||||||
};
|
};
|
||||||
|
console.log("google login ", loaded);
|
||||||
return (
|
return (
|
||||||
<button
|
<StyledSocialButton onClick={handleGoogleLogin} href="#">
|
||||||
disabled={!loaded}
|
|
||||||
onClick={handleGoogleLogin}
|
|
||||||
href="#"
|
|
||||||
className="btn social"
|
|
||||||
>
|
|
||||||
<img className="icon" src={googleSvg} alt="google icon" />
|
<img className="icon" src={googleSvg} alt="google icon" />
|
||||||
Sign in with Google
|
Sign in with Google
|
||||||
</button>
|
</StyledSocialButton>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ import { useState, useEffect, useRef } from "react";
|
|||||||
import MetaMaskOnboarding from "@metamask/onboarding";
|
import MetaMaskOnboarding from "@metamask/onboarding";
|
||||||
import { useLazyGetMetamaskNonceQuery } from "../../app/services/auth";
|
import { useLazyGetMetamaskNonceQuery } from "../../app/services/auth";
|
||||||
import metamaskSvg from "../../assets/icons/metamask.svg?url";
|
import metamaskSvg from "../../assets/icons/metamask.svg?url";
|
||||||
|
import { StyledSocialButton } from "./styled";
|
||||||
|
|
||||||
export default function MetamaskLoginButton({ login }) {
|
export default function MetamaskLoginButton({ login }) {
|
||||||
const [requesting, setRequesting] = useState(false);
|
const [requesting, setRequesting] = useState(false);
|
||||||
const [getNonce] = useLazyGetMetamaskNonceQuery();
|
const [getNonce] = useLazyGetMetamaskNonceQuery();
|
||||||
@@ -43,14 +45,13 @@ export default function MetamaskLoginButton({ login }) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<button
|
<StyledSocialButton
|
||||||
disabled={requesting}
|
disabled={requesting}
|
||||||
onClick={handleMetamaskLogin}
|
onClick={handleMetamaskLogin}
|
||||||
href="#"
|
href="#"
|
||||||
className="btn social"
|
|
||||||
>
|
>
|
||||||
<img className="icon" src={metamaskSvg} alt="meta mask icon" />
|
<img className="icon" src={metamaskSvg} alt="meta mask icon" />
|
||||||
Sign in with MetaMask
|
Sign in with MetaMask
|
||||||
</button>
|
</StyledSocialButton>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
import { useEffect } from "react";
|
import { useEffect } from "react";
|
||||||
import { useGetOpenidMutation } from "../../app/services/auth";
|
import { useGetOpenidMutation } from "../../app/services/auth";
|
||||||
import solidSvg from "../../assets/icons/solid.svg?url";
|
import solidSvg from "../../assets/icons/solid.svg?url";
|
||||||
|
import { StyledSocialButton } from "./styled";
|
||||||
|
|
||||||
export default function SolidLoginButton() {
|
export default function SolidLoginButton() {
|
||||||
const [getOpenId, { data, isLoading, isSuccess }] = useGetOpenidMutation();
|
const [getOpenId, { data, isLoading, isSuccess }] = useGetOpenidMutation();
|
||||||
|
|
||||||
@@ -21,14 +23,13 @@ export default function SolidLoginButton() {
|
|||||||
}, [data, isSuccess]);
|
}, [data, isSuccess]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<button
|
<StyledSocialButton
|
||||||
disabled={isLoading}
|
disabled={isLoading}
|
||||||
onClick={handleSolidLogin}
|
onClick={handleSolidLogin}
|
||||||
href="#"
|
href="#"
|
||||||
className="btn social"
|
|
||||||
>
|
>
|
||||||
<img src={solidSvg} className="icon" alt="solid icon" />
|
<img src={solidSvg} className="icon" alt="solid icon" />
|
||||||
{isLoading ? `Redirecting...` : `Sign in with Solid`}
|
{isLoading ? `Redirecting...` : `Sign in with Solid`}
|
||||||
</button>
|
</StyledSocialButton>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ import BASE_URL from "../../app/config";
|
|||||||
import StyledWrapper from "./styled";
|
import StyledWrapper from "./styled";
|
||||||
import MetamaskLoginButton from "./MetamaskLoginButton";
|
import MetamaskLoginButton from "./MetamaskLoginButton";
|
||||||
import SolidLoginButton from "./SolidLoginButton";
|
import SolidLoginButton from "./SolidLoginButton";
|
||||||
|
import Input from "../../common/component/styled/Input";
|
||||||
|
import Button from "../../common/component/styled/Button";
|
||||||
import GoogleLoginButton from "./GoogleLoginButton";
|
import GoogleLoginButton from "./GoogleLoginButton";
|
||||||
import { useLoginMutation } from "../../app/services/auth";
|
import { useLoginMutation } from "../../app/services/auth";
|
||||||
import { setAuthData } from "../../app/slices/auth.data";
|
import { setAuthData } from "../../app/slices/auth.data";
|
||||||
@@ -96,7 +97,8 @@ export default function LoginPage() {
|
|||||||
<span className="desc">Please enter your details.</span>
|
<span className="desc">Please enter your details.</span>
|
||||||
</div>
|
</div>
|
||||||
<form onSubmit={handleLogin}>
|
<form onSubmit={handleLogin}>
|
||||||
<input
|
<Input
|
||||||
|
className="large"
|
||||||
name="email"
|
name="email"
|
||||||
value={email}
|
value={email}
|
||||||
required
|
required
|
||||||
@@ -104,7 +106,8 @@ export default function LoginPage() {
|
|||||||
data-type="email"
|
data-type="email"
|
||||||
onChange={handleInput}
|
onChange={handleInput}
|
||||||
/>
|
/>
|
||||||
<input
|
<Input
|
||||||
|
className="large"
|
||||||
type="password"
|
type="password"
|
||||||
value={password}
|
value={password}
|
||||||
name="password"
|
name="password"
|
||||||
@@ -113,9 +116,9 @@ export default function LoginPage() {
|
|||||||
onChange={handleInput}
|
onChange={handleInput}
|
||||||
placeholder="Enter your password"
|
placeholder="Enter your password"
|
||||||
/>
|
/>
|
||||||
<button className="btn" type="submit" disabled={isLoading}>
|
<Button type="submit" disabled={isLoading}>
|
||||||
{isLoading ? "Signing" : `Sign in`}
|
{isLoading ? "Signing" : `Sign in`}
|
||||||
</button>
|
</Button>
|
||||||
</form>
|
</form>
|
||||||
<hr className="or" />
|
<hr className="or" />
|
||||||
<GoogleLoginButton login={login} />
|
<GoogleLoginButton login={login} />
|
||||||
|
|||||||
+16
-39
@@ -1,4 +1,20 @@
|
|||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
|
import Button from "../../common/component/styled/Button";
|
||||||
|
export const StyledSocialButton = styled(Button)`
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 12px;
|
||||||
|
color: #344054;
|
||||||
|
border: 1px solid #d0d5dd;
|
||||||
|
background: none !important;
|
||||||
|
.icon {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
|
`;
|
||||||
const StyledWrapper = styled.div`
|
const StyledWrapper = styled.div`
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@@ -39,18 +55,7 @@ const StyledWrapper = styled.div`
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
input {
|
|
||||||
width: 360px;
|
width: 360px;
|
||||||
background: #ffffff;
|
|
||||||
border: 1px solid #d0d5dd;
|
|
||||||
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
|
|
||||||
border-radius: 8px;
|
|
||||||
padding: 10px 14px;
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 24px;
|
|
||||||
color: #667085;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.or {
|
.or {
|
||||||
border: none;
|
border: none;
|
||||||
@@ -71,34 +76,6 @@ const StyledWrapper = styled.div`
|
|||||||
color: #667085;
|
color: #667085;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.btn {
|
|
||||||
display: inline-block;
|
|
||||||
text-align: center;
|
|
||||||
width: 100%;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 24px;
|
|
||||||
color: #ffffff;
|
|
||||||
padding: 10px;
|
|
||||||
background: #1fe1f9;
|
|
||||||
border: 1px solid #1fe1f9;
|
|
||||||
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
|
|
||||||
border-radius: 8px;
|
|
||||||
&.social {
|
|
||||||
margin-bottom: 16px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 12px;
|
|
||||||
color: #344054;
|
|
||||||
border-color: #d0d5dd;
|
|
||||||
background: none;
|
|
||||||
.icon {
|
|
||||||
width: 24px;
|
|
||||||
height: 24px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user