* Remove type from COLORS constant * Remove type from InputTypes in InputWidget * Remove type from ReduxActionTypes * Remove type from ReduxErrorActionTypes * Remove type from SocialLoginTypes * Fix widget actions issues * Remove OPEN_SUB_PANE commented redux action
116 lines
3.1 KiB
TypeScript
116 lines
3.1 KiB
TypeScript
import React from "react";
|
|
import styled from "styled-components";
|
|
import {
|
|
getSocialLoginButtonProps,
|
|
SocialLoginType,
|
|
} from "constants/SocialLogin";
|
|
import { getTypographyByKey } from "constants/DefaultTheme";
|
|
import AnalyticsUtil, { EventName } from "utils/AnalyticsUtil";
|
|
import { useLocation } from "react-router-dom";
|
|
import PerformanceTracker, {
|
|
PerformanceTransactionName,
|
|
} from "utils/PerformanceTracker";
|
|
import { useIntiateOnboarding } from "components/editorComponents/Onboarding/utils";
|
|
|
|
const ThirdPartyAuthWrapper = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
`;
|
|
|
|
//TODO(abhinav): Port this to use themes.
|
|
const StyledSocialLoginButton = styled.a`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: solid 1px ${(props) => props.theme.colors.auth.socialBtnBorder};
|
|
padding: ${(props) => props.theme.spaces[2]}px;
|
|
|
|
&:first-child {
|
|
margin-bottom: ${(props) => props.theme.spaces[4]}px;
|
|
}
|
|
|
|
&:only-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
background-color: ${(props) => props.theme.colors.auth.socialBtnHighlight};
|
|
}
|
|
|
|
& .login-method {
|
|
${(props) => getTypographyByKey(props, "btnLarge")}
|
|
color: ${(props) => props.theme.colors.auth.socialBtnText};
|
|
text-transform: uppercase;
|
|
}
|
|
`;
|
|
|
|
const ButtonLogo = styled.img`
|
|
margin: ${(props) => props.theme.spaces[2]}px;
|
|
width: 14px;
|
|
height: 14px;
|
|
`;
|
|
|
|
export const SocialLoginTypes = {
|
|
GOOGLE: "google",
|
|
GITHUB: "github",
|
|
};
|
|
|
|
type SignInType = "SIGNIN" | "SIGNUP";
|
|
|
|
function SocialLoginButton(props: {
|
|
logo: string;
|
|
name: string;
|
|
url: string;
|
|
type: SignInType;
|
|
}) {
|
|
const location = useLocation();
|
|
const initiateOnboarding = useIntiateOnboarding();
|
|
const queryParams = new URLSearchParams(location.search);
|
|
let url = props.url;
|
|
const redirectUrl = queryParams.get("redirectUrl");
|
|
if (redirectUrl != null) {
|
|
url += `?redirectUrl=${encodeURIComponent(redirectUrl)}`;
|
|
}
|
|
return (
|
|
<StyledSocialLoginButton
|
|
href={url}
|
|
onClick={() => {
|
|
let eventName: EventName = "LOGIN_CLICK";
|
|
if (props.type === "SIGNUP") {
|
|
eventName = "SIGNUP_CLICK";
|
|
|
|
// Set onboarding flag on signup
|
|
initiateOnboarding();
|
|
}
|
|
PerformanceTracker.startTracking(
|
|
eventName === "SIGNUP_CLICK"
|
|
? PerformanceTransactionName.SIGN_UP
|
|
: PerformanceTransactionName.LOGIN_CLICK,
|
|
{ name: props.name.toUpperCase() },
|
|
);
|
|
AnalyticsUtil.logEvent(eventName, {
|
|
loginMethod: props.name.toUpperCase(),
|
|
});
|
|
}}
|
|
>
|
|
<ButtonLogo alt={` ${props.name} login`} src={props.logo} />
|
|
<div className="login-method">{`continue with ${props.name}`}</div>
|
|
</StyledSocialLoginButton>
|
|
);
|
|
}
|
|
|
|
export function ThirdPartyAuth(props: {
|
|
logins: SocialLoginType[];
|
|
type: SignInType;
|
|
}) {
|
|
const socialLoginButtons = getSocialLoginButtonProps(props.logins).map(
|
|
(item) => {
|
|
return <SocialLoginButton key={item.name} {...item} type={props.type} />;
|
|
},
|
|
);
|
|
return <ThirdPartyAuthWrapper>{socialLoginButtons}</ThirdPartyAuthWrapper>;
|
|
}
|
|
|
|
export default ThirdPartyAuth;
|