mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
59ad48476b
* chore: add boime lint * fix lint * use files ignore * revert change * ignore clarity.js * fix some errors * fix some errors * fix some errors * fix some errors * add yml file * Update clarity.js Signed-off-by: afc163 <afc163@gmail.com> * add npm run lint:biome * add npm run lint:biome * fix test case * fix ts errors * fix ts errors * fix lint and add .lintstagedrc * shorten prop name * chore: update package.json * update biome.json * chore: remove stylelint * chore: useOptionalChain * fix lint * biome format * prettier all code * prettier all code * fix site test --------- Signed-off-by: afc163 <afc163@gmail.com>
85 lines
2.4 KiB
TypeScript
85 lines
2.4 KiB
TypeScript
import { unit } from '@ant-design/cssinjs';
|
|
import { TinyColor } from '@ctrl/tinycolor';
|
|
|
|
import { resetComponent } from '../../style';
|
|
import type { FullToken, GenerateStyle, GetDefaultToken } from '../../theme/internal';
|
|
import { genStyleHooks, mergeToken } from '../../theme/internal';
|
|
|
|
// biome-ignore lint/suspicious/noEmptyInterface: ComponentToken need to be empty by default
|
|
export interface ComponentToken {}
|
|
|
|
interface QRCodeToken extends FullToken<'QRCode'> {
|
|
QRCodeTextColor: string;
|
|
QRCodeMaskBackgroundColor: string;
|
|
}
|
|
|
|
const genQRCodeStyle: GenerateStyle<QRCodeToken> = (token) => {
|
|
const { componentCls, lineWidth, lineType, colorSplit } = token;
|
|
return {
|
|
[componentCls]: {
|
|
...resetComponent(token),
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
padding: token.paddingSM,
|
|
backgroundColor: token.colorWhite,
|
|
borderRadius: token.borderRadiusLG,
|
|
border: `${unit(lineWidth)} ${lineType} ${colorSplit}`,
|
|
position: 'relative',
|
|
overflow: 'hidden',
|
|
|
|
[`& > ${componentCls}-mask`]: {
|
|
position: 'absolute',
|
|
insetBlockStart: 0,
|
|
insetInlineStart: 0,
|
|
zIndex: 10,
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
width: '100%',
|
|
height: '100%',
|
|
color: token.colorText,
|
|
lineHeight: token.lineHeight,
|
|
background: token.QRCodeMaskBackgroundColor,
|
|
textAlign: 'center',
|
|
[`& > ${componentCls}-expired, & > ${componentCls}-scanned`]: {
|
|
color: token.QRCodeTextColor,
|
|
},
|
|
},
|
|
|
|
'> canvas': {
|
|
alignSelf: 'stretch',
|
|
flex: 'auto',
|
|
minWidth: 0,
|
|
},
|
|
|
|
'&-icon': {
|
|
marginBlockEnd: token.marginXS,
|
|
fontSize: token.controlHeight,
|
|
},
|
|
},
|
|
[`${componentCls}-borderless`]: {
|
|
borderColor: 'transparent',
|
|
padding: 0,
|
|
borderRadius: 0,
|
|
},
|
|
};
|
|
};
|
|
|
|
export const prepareComponentToken: GetDefaultToken<'QRCode'> = (token) => ({
|
|
QRCodeMaskBackgroundColor: new TinyColor(token.colorBgContainer).setAlpha(0.96).toRgbString(),
|
|
});
|
|
|
|
export default genStyleHooks<'QRCode'>(
|
|
'QRCode',
|
|
(token) => {
|
|
const mergedToken = mergeToken<QRCodeToken>(token, {
|
|
QRCodeTextColor: token.colorText,
|
|
});
|
|
|
|
return genQRCodeStyle(mergedToken);
|
|
},
|
|
prepareComponentToken,
|
|
);
|