ant-design/.dumi/theme/slots/Header/SwitchBtn.tsx

123 lines
2.9 KiB
TypeScript
Raw Normal View History

import { createStyles } from 'antd-style';
import React from 'react';
import classNames from 'classnames';
import { Tooltip } from 'antd';
export interface LangBtnProps {
label1: React.ReactNode;
label2: React.ReactNode;
tooltip1?: React.ReactNode;
tooltip2?: React.ReactNode;
value: 1 | 2;
pure?: boolean;
onClick?: React.MouseEventHandler;
2023-10-15 19:17:32 +08:00
['aria-label']?: string;
}
2022-11-29 13:14:06 +08:00
const BASE_SIZE = '1.2em';
const useStyle = createStyles(({ token, css }) => {
const {
colorText,
colorBorder,
colorBgContainer,
colorBgTextHover,
borderRadius,
controlHeight,
motionDurationMid,
} = token;
return {
btn: css`
color: ${colorText};
border-color: ${colorBorder};
padding: 0 !important;
2022-11-29 13:14:06 +08:00
width: ${controlHeight}px;
height: ${controlHeight}px;
display: inline-flex;
align-items: center;
justify-content: center;
2022-11-29 13:14:06 +08:00
border: none;
background: transparent;
border-radius: ${borderRadius}px;
2022-11-29 13:14:06 +08:00
transition: all ${motionDurationMid};
cursor: pointer;
.btn-inner {
transition: all ${motionDurationMid};
}
&:hover {
background: ${colorBgTextHover};
2022-11-29 13:14:06 +08:00
}
img {
2022-11-29 13:14:06 +08:00
width: ${BASE_SIZE};
height: ${BASE_SIZE};
}
.anticon {
font-size: ${BASE_SIZE};
}
`,
innerDiv: css`
position: relative;
width: ${BASE_SIZE};
height: ${BASE_SIZE};
`,
labelStyle: css`
position: absolute;
font-size: ${BASE_SIZE};
line-height: 1;
border: 1px solid ${colorText};
color: ${colorText};
`,
label1Style: css`
left: -5%;
top: 0;
z-index: 1;
background-color: ${colorText};
color: ${colorBgContainer};
transform: scale(0.7);
transform-origin: 0 0;
`,
label2Style: css`
right: -5%;
bottom: 0;
z-index: 0;
transform: scale(0.5);
transform-origin: 100% 100%;
`,
};
});
const LangBtn: React.FC<LangBtnProps> = (props) => {
const { label1, label2, tooltip1, tooltip2, value, pure, onClick } = props;
const {
styles: { btn, innerDiv, labelStyle, label1Style, label2Style },
} = useStyle();
const node = (
<button onClick={onClick} className={btn} key="lang-button" aria-label={props['aria-label']}>
2022-11-29 13:14:06 +08:00
<div className="btn-inner">
{pure && (value === 1 ? label1 : label2)}
{!pure && (
<div className={innerDiv}>
<span className={classNames(labelStyle, value === 1 ? label1Style : label2Style)}>
{label1}
</span>
<span className={classNames(labelStyle, value === 1 ? label2Style : label1Style)}>
{label2}
</span>
2022-11-29 13:14:06 +08:00
</div>
)}
</div>
</button>
);
if (tooltip1 || tooltip2) {
return <Tooltip title={value === 1 ? tooltip1 : tooltip2}>{node}</Tooltip>;
}
return node;
};
export default LangBtn;