1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 05:16:41 +07:00

#38 added image preloaders

This commit is contained in:
Fedor Katurov 2021-06-21 16:38:11 +07:00
parent d0989ac58b
commit 92b273f377
10 changed files with 192 additions and 62 deletions

View file

@ -0,0 +1,90 @@
import React, { FC, MouseEventHandler, useCallback, useEffect, useState } from 'react';
import classNames from 'classnames';
import { describeArc, getURL } from '~/utils/dom';
import { PRESETS } from '~/constants/urls';
import styles from './styles.module.scss';
import { IFile } from '~/redux/types';
import { LoaderCircleInner } from '~/components/input/LoaderCircleInner';
import { LoaderCircle } from '~/components/input/LoaderCircle';
interface IProps {
file: IFile;
onLoad?: () => void;
onClick?: MouseEventHandler;
className?: string;
}
const ImagePreloader: FC<IProps> = ({ file, onLoad, onClick, className }) => {
const [maxHeight, setMaxHeight] = useState(window.innerHeight - 140);
const [loaded, setLoaded] = useState(false);
const onImageLoad = useCallback(() => {
setLoaded(true);
if (onLoad) {
onLoad();
}
}, [setLoaded, onLoad]);
const onResize = useCallback(() => {
setMaxHeight(window.innerHeight - 140);
}, [setMaxHeight]);
useEffect(() => {
window.addEventListener('resize', onResize);
return () => window.removeEventListener('resize', onResize);
}, [onResize]);
return (
<>
<svg
viewBox={`0 0 ${file?.metadata?.width || 0} ${file?.metadata?.height || 0}`}
className={classNames(styles.preview, { [styles.is_loaded]: loaded })}
style={{
maxHeight,
height: file?.metadata?.height || 'auto',
}}
onClick={onClick}
>
<defs>
<filter id="f1" x="0" y="0">
<feGaussianBlur
stdDeviation="30 30"
x="0%"
y="0%"
width="100%"
height="100%"
in="blend"
edgeMode="none"
result="blur2"
/>
</filter>
</defs>
<rect fill="#242222" width="100%" height="100%" stroke="none" rx="8" ry="8" />
<image
xlinkHref={getURL(file, PRESETS['300'])}
width="100%"
height="100%"
filter="url(#f1)"
/>
</svg>
<img
className={classNames(styles.image, { [styles.is_loaded]: loaded }, className)}
src={getURL(file, PRESETS['1600'])}
alt=""
key={file.id}
onLoad={onImageLoad}
style={{ maxHeight }}
onClick={onClick}
/>
{!loaded && <LoaderCircle className={styles.icon} size={64} />}
</>
);
};
export { ImagePreloader };

View file

@ -0,0 +1,30 @@
@import "~/styles/variables.scss";
.image {
position: absolute;
opacity: 0;
&.is_loaded {
opacity: 1;
position: static;
}
}
.preview {
border-radius: $radius;
&.is_loaded {
display: none;
}
}
.icon {
position: absolute;
right: 30px;
bottom: 40px;
opacity: 0.4;
svg {
fill: currentColor;
}
}