ant-design/.dumi/pages/index/components/Theme/BackgroundImage.tsx
二货爱吃白萝卜 87a1004ff4
docs: adjust home image load logic (#43798)
* docs: add webp format

* docs: img loaded keys

* docs: auto color

* docs: fix lint

* chore: fix theme switch

* fix: logo missing
2023-07-25 21:44:30 +08:00

85 lines
2.0 KiB
TypeScript

import { createStyles, css } from 'antd-style';
import React, { useMemo, useState } from 'react';
import { CSSMotionList } from 'rc-motion';
import classNames from 'classnames';
import { COLOR_IMAGES, getClosetColor } from './colorUtil';
export interface BackgroundImageProps {
colorPrimary?: string;
isLight?: boolean;
}
const useStyle = createStyles(({ token }) => ({
image: css`
transition: all ${token.motionDurationSlow};
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
object-fit: cover;
object-position: right top;
`,
}));
const onShow = () => ({
opacity: 1,
});
const onHide = () => ({
opacity: 0,
});
const BackgroundImage: React.FC<BackgroundImageProps> = ({ colorPrimary, isLight }) => {
const activeColor = useMemo(() => getClosetColor(colorPrimary), [colorPrimary]);
const { styles } = useStyle();
const [keyList, setKeyList] = useState<string[]>([]);
React.useLayoutEffect(() => {
setKeyList([activeColor]);
}, [activeColor]);
return (
<CSSMotionList
keys={keyList}
motionName="transition"
onEnterStart={onHide}
onAppearStart={onHide}
onEnterActive={onShow}
onAppearActive={onShow}
onLeaveStart={onShow}
onLeaveActive={onHide}
motionDeadline={500}
>
{({ key: color, className, style }) => {
const cls = classNames(styles.image, className);
const entity = COLOR_IMAGES.find((ent) => ent.color === color);
if (!entity || !entity.url) {
return null;
}
const { opacity } = style || {};
return (
<picture>
<source srcSet={entity.webp} type="image/webp" />
<source srcSet={entity.url} type="image/jpeg" />
<img
className={cls}
style={{
...style,
opacity: isLight ? opacity : 0,
}}
src={entity.url}
alt=""
/>
</picture>
);
}}
</CSSMotionList>
);
};
export default BackgroundImage;