1 | import { forwardRef } from 'react';
|
---|
2 | import { LazyLoadImage } from 'react-lazy-load-image-component';
|
---|
3 | // @mui
|
---|
4 | import { alpha, useTheme } from '@mui/material/styles';
|
---|
5 | import Box from '@mui/material/Box';
|
---|
6 | //
|
---|
7 | import { getRatio } from './utils';
|
---|
8 | import { ImageProps } from './types';
|
---|
9 |
|
---|
10 | // ----------------------------------------------------------------------
|
---|
11 |
|
---|
12 | const Image = forwardRef<HTMLSpanElement, ImageProps>(
|
---|
13 | (
|
---|
14 | {
|
---|
15 | ratio,
|
---|
16 | overlay,
|
---|
17 | disabledEffect = false,
|
---|
18 | //
|
---|
19 | alt,
|
---|
20 | src,
|
---|
21 | afterLoad,
|
---|
22 | delayTime,
|
---|
23 | threshold,
|
---|
24 | beforeLoad,
|
---|
25 | delayMethod,
|
---|
26 | placeholder,
|
---|
27 | wrapperProps,
|
---|
28 | scrollPosition,
|
---|
29 | effect = 'blur',
|
---|
30 | visibleByDefault,
|
---|
31 | wrapperClassName,
|
---|
32 | useIntersectionObserver,
|
---|
33 | sx,
|
---|
34 | ...other
|
---|
35 | },
|
---|
36 | ref
|
---|
37 | ) => {
|
---|
38 | const theme = useTheme();
|
---|
39 |
|
---|
40 | const overlayStyles = !!overlay && {
|
---|
41 | '&:before': {
|
---|
42 | content: "''",
|
---|
43 | top: 0,
|
---|
44 | left: 0,
|
---|
45 | width: 1,
|
---|
46 | height: 1,
|
---|
47 | zIndex: 1,
|
---|
48 | position: 'absolute',
|
---|
49 | background: overlay || alpha(theme.palette.grey[900], 0.48),
|
---|
50 | },
|
---|
51 | };
|
---|
52 |
|
---|
53 | const content = (
|
---|
54 | <Box
|
---|
55 | component={LazyLoadImage}
|
---|
56 | //
|
---|
57 | alt={alt}
|
---|
58 | src={src}
|
---|
59 | afterLoad={afterLoad}
|
---|
60 | delayTime={delayTime}
|
---|
61 | threshold={threshold}
|
---|
62 | beforeLoad={beforeLoad}
|
---|
63 | delayMethod={delayMethod}
|
---|
64 | placeholder={placeholder}
|
---|
65 | wrapperProps={wrapperProps}
|
---|
66 | scrollPosition={scrollPosition}
|
---|
67 | visibleByDefault={visibleByDefault}
|
---|
68 | effect={disabledEffect ? undefined : effect}
|
---|
69 | useIntersectionObserver={useIntersectionObserver}
|
---|
70 | wrapperClassName={wrapperClassName || 'component-image-wrapper'}
|
---|
71 | placeholderSrc={disabledEffect ? '/assets/transparent.png' : '/assets/placeholder.svg'}
|
---|
72 | //
|
---|
73 | sx={{
|
---|
74 | width: 1,
|
---|
75 | height: 1,
|
---|
76 | objectFit: 'cover',
|
---|
77 | verticalAlign: 'bottom',
|
---|
78 | ...(!!ratio && {
|
---|
79 | top: 0,
|
---|
80 | left: 0,
|
---|
81 | position: 'absolute',
|
---|
82 | }),
|
---|
83 | }}
|
---|
84 | />
|
---|
85 | );
|
---|
86 |
|
---|
87 | return (
|
---|
88 | <Box
|
---|
89 | ref={ref}
|
---|
90 | component="span"
|
---|
91 | className="component-image"
|
---|
92 | sx={{
|
---|
93 | overflow: 'hidden',
|
---|
94 | position: 'relative',
|
---|
95 | verticalAlign: 'bottom',
|
---|
96 | display: 'inline-block',
|
---|
97 | ...(!!ratio && {
|
---|
98 | width: 1,
|
---|
99 | }),
|
---|
100 | '& span.component-image-wrapper': {
|
---|
101 | width: 1,
|
---|
102 | height: 1,
|
---|
103 | verticalAlign: 'bottom',
|
---|
104 | backgroundSize: 'cover !important',
|
---|
105 | ...(!!ratio && {
|
---|
106 | pt: getRatio(ratio),
|
---|
107 | }),
|
---|
108 | },
|
---|
109 | ...overlayStyles,
|
---|
110 | ...sx,
|
---|
111 | }}
|
---|
112 | {...other}
|
---|
113 | >
|
---|
114 | {content}
|
---|
115 | </Box>
|
---|
116 | );
|
---|
117 | }
|
---|
118 | );
|
---|
119 |
|
---|
120 | export default Image;
|
---|