You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
2.7 KiB
103 lines
2.7 KiB
// deps-lint-skip-all
|
|
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import type { GenerateStyle, FullToken } from '../../_util/theme';
|
|
import { resetComponent, genComponentStyleHook, mergeToken } from '../../_util/theme';
|
|
|
|
/** Component only token. Which will handle additional calculation of alias token */
|
|
export interface ComponentToken {}
|
|
|
|
type BackTopToken = FullToken<'BackTop'> & {
|
|
backTopBackground: string;
|
|
backTopColor: string;
|
|
backTopHoverBackground: string;
|
|
};
|
|
|
|
// ============================== Shared ==============================
|
|
const genSharedBackTopStyle: GenerateStyle<BackTopToken, CSSObject> = (token): CSSObject => {
|
|
const { componentCls } = token;
|
|
|
|
return {
|
|
[componentCls]: {
|
|
...resetComponent(token),
|
|
|
|
position: 'fixed',
|
|
// FIXME right
|
|
insetInlineEnd: 100,
|
|
// FIXME bottom
|
|
insetBlockEnd: 50,
|
|
// FIX ME @zindex-back-top
|
|
zIndex: token.zIndexPopupBase,
|
|
width: 40,
|
|
height: 40,
|
|
cursor: 'pointer',
|
|
|
|
'&:empty': {
|
|
display: 'none',
|
|
},
|
|
|
|
[`${componentCls}-content`]: {
|
|
width: 40,
|
|
height: 40,
|
|
overflow: 'hidden',
|
|
// FIXME @back-top-color
|
|
color: token.backTopColor,
|
|
textAlign: 'center',
|
|
// FIXME @back-top-bg
|
|
backgroundColor: token.backTopBackground,
|
|
// FIXME
|
|
borderRadius: 20,
|
|
transition: `all ${token.motionDurationSlow}`,
|
|
|
|
'&:hover': {
|
|
// FIX ME @back-top-hover-bg
|
|
backgroundColor: token.backTopHoverBackground,
|
|
transition: `all ${token.motionDurationSlow}`,
|
|
},
|
|
},
|
|
|
|
// change to .backtop .backtop-icon
|
|
[`${componentCls}-icon`]: {
|
|
// FIXME
|
|
fontSize: 24,
|
|
// FIXME
|
|
lineHeight: '40px',
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
const genMediaBackTopStyle: GenerateStyle<BackTopToken> = (token): CSSObject => {
|
|
const { componentCls } = token;
|
|
|
|
return {
|
|
[`@media (max-width: ${token.screenMD}px)`]: {
|
|
[componentCls]: {
|
|
marginInlineEnd: 60,
|
|
},
|
|
},
|
|
|
|
[`@media (max-width: ${token.screenXS}px)`]: {
|
|
[componentCls]: {
|
|
marginInlineEnd: 20,
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
// ============================== Export ==============================
|
|
export default genComponentStyleHook<'BackTop'>(
|
|
'BackTop',
|
|
|
|
token => {
|
|
const backTopBackground = 'rgb(16, 136, 233)';
|
|
const backTopColor = '#fff';
|
|
const backTopHoverBackground = '#000000d9';
|
|
|
|
const backTopToken = mergeToken<BackTopToken>(token, {
|
|
backTopBackground,
|
|
backTopColor,
|
|
backTopHoverBackground,
|
|
});
|
|
return [genSharedBackTopStyle(backTopToken), genMediaBackTopStyle(backTopToken)];
|
|
},
|
|
);
|
|
|