mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-19 02:56:23 +08:00
120 lines
2.4 KiB
TypeScript
120 lines
2.4 KiB
TypeScript
import { getDataCenter } from '@affine/datacenter';
|
|
import { styled } from '@/styles';
|
|
import { Button } from '@/ui/button';
|
|
import { useModal } from '@/providers/GlobalModalProvider';
|
|
import { GoogleIcon, StayLogOutIcon } from './Icons';
|
|
|
|
export const GoogleLoginButton = () => {
|
|
const { triggerLoginModal } = useModal();
|
|
return (
|
|
<StyledGoogleButton
|
|
onClick={() => {
|
|
getDataCenter()
|
|
.then(dc => dc.apis.signInWithGoogle?.())
|
|
.then(() => {
|
|
triggerLoginModal();
|
|
})
|
|
.catch(error => {
|
|
console.log('sign google error', error);
|
|
});
|
|
}}
|
|
>
|
|
<ButtonWrapper>
|
|
<IconWrapper>
|
|
<GoogleIcon />
|
|
</IconWrapper>
|
|
<TextWrapper>
|
|
<Title>Continue with Google</Title>
|
|
<Description>Set up an AFFiNE account to sync data</Description>
|
|
</TextWrapper>
|
|
</ButtonWrapper>
|
|
</StyledGoogleButton>
|
|
);
|
|
};
|
|
|
|
export const StayLogOutButton = () => {
|
|
return (
|
|
<StyledStayLogOutButton>
|
|
<ButtonWrapper>
|
|
<IconWrapper>
|
|
<StayLogOutIcon />
|
|
</IconWrapper>
|
|
<TextWrapper>
|
|
<Title>Stay logged out</Title>
|
|
<Description>All changes are saved locally</Description>
|
|
</TextWrapper>
|
|
</ButtonWrapper>
|
|
</StyledStayLogOutButton>
|
|
);
|
|
};
|
|
|
|
const StyledGoogleButton = styled(Button)(() => {
|
|
return {
|
|
width: '361px',
|
|
height: '56px',
|
|
padding: '4px',
|
|
background: '#6880FF',
|
|
color: '#fff',
|
|
|
|
'& > span': {
|
|
marginLeft: 0,
|
|
},
|
|
|
|
':hover': {
|
|
background: '#516BF4',
|
|
color: '#fff',
|
|
},
|
|
};
|
|
});
|
|
|
|
const StyledStayLogOutButton = styled(Button)(() => {
|
|
return {
|
|
width: '361px',
|
|
height: '56px',
|
|
padding: '4px',
|
|
|
|
'& > span': {
|
|
marginLeft: 0,
|
|
},
|
|
|
|
':hover': {
|
|
borderColor: '#6880FF',
|
|
},
|
|
};
|
|
});
|
|
|
|
const ButtonWrapper = styled('div')({
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
});
|
|
|
|
const IconWrapper = styled('div')({
|
|
width: '48px',
|
|
height: '48px',
|
|
flex: '0 48px',
|
|
borderRadius: '5px',
|
|
overflow: 'hidden',
|
|
marginRight: '12px',
|
|
});
|
|
|
|
const TextWrapper = styled('div')({
|
|
flex: 1,
|
|
textAlign: 'left',
|
|
});
|
|
|
|
const Title = styled('h1')(() => {
|
|
return {
|
|
fontSize: '18px',
|
|
lineHeight: '26px',
|
|
fontWeight: 500,
|
|
};
|
|
});
|
|
|
|
const Description = styled('p')(() => {
|
|
return {
|
|
fontSize: '16px',
|
|
lineHeight: '22px',
|
|
fontWeight: 400,
|
|
};
|
|
});
|