12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import { genStyleHooks, mergeToken } from '../../theme/internal';
- // ============================== Shared ==============================
- const genSharedEmptyStyle = token => {
- const {
- componentCls,
- margin,
- marginXS,
- marginXL,
- fontSize,
- lineHeight
- } = token;
- return {
- [componentCls]: {
- marginInline: marginXS,
- fontSize,
- lineHeight,
- textAlign: 'center',
- // 原来 &-image 没有父子结构,现在为了外层承担我们的 hashId,改成父子结构
- [`${componentCls}-image`]: {
- height: token.emptyImgHeight,
- marginBottom: marginXS,
- opacity: token.opacityImage,
- img: {
- height: '100%'
- },
- svg: {
- maxWidth: '100%',
- height: '100%',
- margin: 'auto'
- }
- },
- [`${componentCls}-description`]: {
- color: token.colorTextDescription
- },
- // 原来 &-footer 没有父子结构,现在为了外层承担我们的 hashId,改成父子结构
- [`${componentCls}-footer`]: {
- marginTop: margin
- },
- '&-normal': {
- marginBlock: marginXL,
- color: token.colorTextDescription,
- [`${componentCls}-description`]: {
- color: token.colorTextDescription
- },
- [`${componentCls}-image`]: {
- height: token.emptyImgHeightMD
- }
- },
- '&-small': {
- marginBlock: marginXS,
- color: token.colorTextDescription,
- [`${componentCls}-image`]: {
- height: token.emptyImgHeightSM
- }
- }
- }
- };
- };
- // ============================== Export ==============================
- export default genStyleHooks('Empty', token => {
- const {
- componentCls,
- controlHeightLG,
- calc
- } = token;
- const emptyToken = mergeToken(token, {
- emptyImgCls: `${componentCls}-img`,
- emptyImgHeight: calc(controlHeightLG).mul(2.5).equal(),
- emptyImgHeightMD: controlHeightLG,
- emptyImgHeightSM: calc(controlHeightLG).mul(0.875).equal()
- });
- return genSharedEmptyStyle(emptyToken);
- });
|