File size: 2,830 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
import React from 'react';
import Switch from '@mui/material/Switch';
import TextField from '@mui/material/TextField';
import FormControlLabel from '@mui/material/FormControlLabel';
import type { ImageLoaded, ImageUploaded } from '@react-page/editor';
import { ImageUpload } from '@react-page/editor';
import Typography from '@mui/material/Typography';
import type { BackgroundProps } from '../../types/component';
export interface ImageComponentProps {
ensureModeOn: () => void;
onImageLoaded: (image: ImageLoaded) => void;
onImageUploaded: () => void;
}
class ImageComponent extends React.Component<
BackgroundProps & ImageComponentProps
> {
handleChangeBackground = (e: React.ChangeEvent<HTMLInputElement>) => {
this.props.ensureModeOn();
this.props.onChange({ background: e.target.value });
};
handleChangeIsParallax = (e: React.ChangeEvent<HTMLInputElement>) => {
this.props.ensureModeOn();
this.props.onChange({
isParallax:
this.props.data.isParallax === undefined
? false
: !this.props.data.isParallax,
});
};
handleImageLoaded = (image: ImageLoaded) => {
this.props.ensureModeOn();
this.props.onImageLoaded(image);
};
handleImageUploaded = (resp: ImageUploaded) => {
this.props.onImageUploaded();
this.props.onChange({ background: resp.url });
};
render() {
const {
data: { isParallax = true, background = '' },
} = this.props;
return (
<div>
<div style={{ display: 'flex' }}>
{this.props.imageUpload && (
<React.Fragment>
<ImageUpload
translations={this.props.translations}
imageUpload={this.props.imageUpload}
imageLoaded={this.handleImageLoaded}
imageUploaded={this.handleImageUploaded}
/>
<Typography
variant="body1"
style={{ margin: '20px 16px 0 16px' }}
>
{this.props.translations?.or}
</Typography>
</React.Fragment>
)}
<TextField
placeholder={this.props.translations?.srcPlaceholder}
label={
this.props.imageUpload
? this.props.translations?.haveUrl
: this.props.translations?.imageUrl
}
style={{ width: '256px' }}
value={background}
onChange={this.handleChangeBackground}
/>
<FormControlLabel
control={
<Switch
onChange={this.handleChangeIsParallax}
checked={isParallax}
/>
}
label={this.props.translations?.isParallax}
/>
</div>
</div>
);
}
}
export default ImageComponent;
|