ant-design/.dumi/theme/builtins/IconSearch/index.tsx
二货爱吃白萝卜 2cdf586291
chore: fix lint (#43873)
* chore: fix lint

* chore: fix lint

* test: fix 16

* fix: lint
2023-07-28 16:17:43 +08:00

66 lines
1.5 KiB
TypeScript

import React, { Suspense } from 'react';
import { createStyles } from 'antd-style';
import { Skeleton } from 'antd';
const IconSearch = React.lazy(() => import('./IconSearch'));
const useStyle = createStyles(({ css }) => ({
searchWrapper: css`
display: flex;
gap: 16px;
> *:first-child {
flex: 0 0 328px;
}
> *:last-child {
flex: 1;
}
`,
fallbackWrapper: css`
display: flex;
flex-wrap: wrap;
justify-content: space-between;
> * {
flex: 0 0 15%;
margin: 3px 0;
}
`,
skeletonWrapper: css`
text-align: center;
> * {
width: 100% !important;
}
`,
}));
const IconSearchFallback = () => {
const { styles } = useStyle();
return (
<>
<div className={styles.searchWrapper}>
<Skeleton.Button active style={{ width: '100%', height: 40 }} />
<Skeleton.Input active style={{ width: '100%', height: 40 }} />
</div>
<Skeleton.Button active style={{ margin: '28px 0 10px', width: 100 }} />
<div className={styles.fallbackWrapper}>
{Array(24)
.fill(1)
.map((_, index) => (
<div key={index} className={styles.skeletonWrapper}>
<Skeleton.Node active style={{ height: 110, width: '100%' }}>
{' '}
</Skeleton.Node>
</div>
))}
</div>
</>
);
};
export default () => (
<Suspense fallback={<IconSearchFallback />}>
<IconSearch />
</Suspense>
);