source: src/components/image/image.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 2.8 KB
Line 
1import { forwardRef } from 'react';
2import { LazyLoadImage } from 'react-lazy-load-image-component';
3// @mui
4import { alpha, useTheme } from '@mui/material/styles';
5import Box from '@mui/material/Box';
6//
7import { getRatio } from './utils';
8import { ImageProps } from './types';
9
10// ----------------------------------------------------------------------
11
12const 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
120export default Image;
Note: See TracBrowser for help on using the repository browser.