mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-14 00:41:29 +08:00
397fa6172d
* refactor: complete the basic less refactor * refactor: complete the Notification part of placement * refactor: complete the Notification part of RTL * refactor: add necessary FIXME for Notification * chore: remove useless code for Notification * style: remove useless code * refactor: fix the float style issue
86 lines
2.5 KiB
TypeScript
86 lines
2.5 KiB
TypeScript
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import { Keyframes } from '@ant-design/cssinjs';
|
|
import type { GenerateStyle } from '../../_util/theme';
|
|
import type { NotificationToken } from '.';
|
|
|
|
const genNotificationPlacementStyle: GenerateStyle<NotificationToken, CSSObject> = token => {
|
|
const { componentCls, notificationWidth, notificationMarginEdge } = token;
|
|
|
|
const notificationTopFadeIn = new Keyframes('antNotificationTopFadeIn', {
|
|
'0%': {
|
|
marginTop: '-100%', // FIXME: hardcode in v4
|
|
opacity: 0, // FIXME: hardcode in v4
|
|
},
|
|
|
|
'100%': {
|
|
marginTop: 0, // FIXME: hardcode in v4
|
|
opacity: 1, // FIXME: hardcode in v4
|
|
},
|
|
});
|
|
|
|
const notificationBottomFadeIn = new Keyframes('antNotificationBottomFadeIn', {
|
|
'0%': {
|
|
marginBottom: '-100%', // FIXME: hardcode in v4
|
|
opacity: 0, // FIXME: hardcode in v4
|
|
},
|
|
|
|
'100%': {
|
|
marginBottom: 0, // FIXME: hardcode in v4
|
|
opacity: 1, // FIXME: hardcode in v4
|
|
},
|
|
});
|
|
|
|
const notificationLeftFadeIn = new Keyframes('antNotificationLeftFadeIn', {
|
|
'0%': {
|
|
right: {
|
|
_skip_check_: true,
|
|
value: notificationWidth,
|
|
},
|
|
opacity: 0, // FIXME: hardcode in v4
|
|
},
|
|
|
|
'100%': {
|
|
right: {
|
|
_skip_check_: true,
|
|
value: 0, // FIXME: hardcode in v4
|
|
},
|
|
opacity: 1, // FIXME: hardcode in v4
|
|
},
|
|
});
|
|
|
|
return {
|
|
[`&${componentCls}-top, &${componentCls}-bottom`]: {
|
|
// marginRight: 0,
|
|
// marginLeft: 0,
|
|
marginInline: '0 0', // FIXME: hardcode in v4
|
|
},
|
|
|
|
[`&${componentCls}-top`]: {
|
|
[`${componentCls}-fade-enter${componentCls}-fade-enter-active, ${componentCls}-fade-appear${componentCls}-fade-appear-active`]:
|
|
{
|
|
animationName: notificationTopFadeIn,
|
|
},
|
|
},
|
|
|
|
[`&${componentCls}-bottom`]: {
|
|
[`${componentCls}-fade-enter${componentCls}-fade-enter-active, ${componentCls}-fade-appear${componentCls}-fade-appear-active`]:
|
|
{
|
|
animationName: notificationBottomFadeIn,
|
|
},
|
|
},
|
|
|
|
[`&${componentCls}-topLeft, &${componentCls}-bottomLeft`]: {
|
|
// marginRight: 0,
|
|
marginInlineEnd: 0, // FIXME: hardcode in v4
|
|
// marginLeft: notificationMarginEdge,
|
|
marginInlineStart: notificationMarginEdge,
|
|
|
|
[`${componentCls}-fade-enter${componentCls}-fade-enter-active, ${componentCls}-fade-appear${componentCls}-fade-appear-active`]:
|
|
{
|
|
animationName: notificationLeftFadeIn,
|
|
},
|
|
},
|
|
};
|
|
};
|
|
export default genNotificationPlacementStyle;
|