chore: update changelog link and remove obsolete changelog components (#2918)

This commit is contained in:
JimmFly
2023-06-29 18:19:26 +08:00
committed by GitHub
parent f76d8b8818
commit 7f00011542
6 changed files with 3 additions and 249 deletions

View File

@@ -1,114 +0,0 @@
import { keyframes, style } from '@vanilla-extract/css';
const slideIn = keyframes({
'0%': {
height: '0px',
},
'50%': {
height: '36px',
},
'100%': {
height: '32px',
},
});
const slideIn2 = keyframes({
'0%': {
transform: 'translateX(100%)',
},
'50%': {
transform: 'translateX(100%)',
},
'80%': {
transform: 'translateX(-10%)',
},
'100%': {
transform: 'translateX(0%)',
},
});
const slideOut = keyframes({
'0%': {
height: '32px',
},
'60%': {
height: '32px',
},
'80%': {
height: '32px',
},
'100%': {
height: '0px',
},
});
const slideOut2 = keyframes({
'0%': {
transform: 'translateX(0%)',
},
'100%': {
transform: 'translateX(100%)',
},
});
export const changeLogWrapperSlideInStyle = style({
width: 'calc(100% + 4px)',
flexShrink: 0,
animation: `${slideIn} 1s ease-in-out forwards`,
display: 'flex',
justifyContent: 'flex-start',
alignItems: 'center',
marginBottom: '4px',
position: 'relative',
userSelect: 'none',
transition: 'all 0.3s',
overflow: 'hidden',
});
export const changeLogWrapperSlideOutStyle = style({
animation: `${slideOut} .3s ease-in-out forwards`,
});
export const changeLogSlideInStyle = style({
// fixme: if width is 100% and marginLeft is 0,
// the UI will overflow on app sidebar
width: '99%',
height: '32px',
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
color: 'var(--affine-primary-color)',
backgroundColor: 'var(--affine-tertiary-color)',
border: '1px solid var(--affine-primary-color)',
borderRight: 'none',
paddingLeft: '14px',
borderRadius: '16px 0 0 16px',
cursor: 'pointer',
zIndex: 1001,
position: 'absolute',
userSelect: 'none',
transition: 'all 0.3s',
animation: `${slideIn2} 1s ease-in-out forwards`,
});
export const changeLogSlideOutStyle = style({
animation: `${slideOut2} .3s ease-in-out forwards`,
});
export const linkStyle = style({
textAlign: 'left',
color: 'var(--affine-text-emphasis-color)',
display: 'flex',
flexDirection: 'row',
justifyContent: 'flex-start',
alignItems: 'center',
maxWidth: 'calc(100% - 32px)',
});
export const linkTextStyle = style({
whiteSpace: 'nowrap',
textOverflow: 'ellipsis',
overflow: 'hidden',
});
export const iconStyle = style({
fontSize: '20px',
marginRight: '12px',
});
export const iconButtonStyle = style({
fontSize: '20px',
marginRight: '0',
color: 'var(--affine-icon-color)',
});

View File

@@ -1,67 +0,0 @@
import { useAFFiNEI18N } from '@affine/i18n/hooks';
import { CloseIcon, NewIcon } from '@blocksuite/icons';
import clsx from 'clsx';
import { useState } from 'react';
import { IconButton } from '../..';
import {
changeLogSlideInStyle,
changeLogSlideOutStyle,
changeLogWrapperSlideInStyle,
changeLogWrapperSlideOutStyle,
iconButtonStyle,
iconStyle,
linkStyle,
linkTextStyle,
} from './index.css';
type ChangeLogProps = {
onCloseWhatsNew: () => void;
};
export const ChangeLog = (props: ChangeLogProps) => {
const { onCloseWhatsNew } = props;
const [isClose, setIsClose] = useState(false);
const t = useAFFiNEI18N();
const handleClose = () => {
setIsClose(true);
onCloseWhatsNew();
};
return (
<div
className={clsx(changeLogWrapperSlideInStyle, {
[changeLogWrapperSlideOutStyle]: isClose,
})}
>
<div
data-testid="change-log"
className={clsx(changeLogSlideInStyle, {
[changeLogSlideOutStyle]: isClose,
})}
>
<div
className={linkStyle}
onClick={() => {
window.open(
'https://github.com/toeverything/AFFiNE/releases',
'_blank'
);
}}
>
<NewIcon className={iconStyle} />
<div className={linkTextStyle}>{t["Discover what's new!"]()}</div>
</div>
<IconButton
className={iconButtonStyle}
onClick={() => {
handleClose();
}}
data-testid="change-log-close-button"
>
<CloseIcon />
</IconButton>
</div>
</div>
);
};
export default ChangeLog;