File size: 2,731 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 98 |
import Checkbox from '@mui/material/Checkbox';
import FormControlLabel from '@mui/material/FormControlLabel';
import TextField from '@mui/material/TextField';
import Typography from '@mui/material/Typography';
import { ImageUpload, useUiTranslator } from '@react-page/editor';
import React from 'react';
import type { ImageControlType } from '../types/controls';
const ImageControls: ImageControlType = (props) => {
const { t } = useUiTranslator();
return (
<>
{/* Button and existing image text box */}
<div style={{ display: 'flex' }}>
{props.imageUpload && (
<>
<ImageUpload
translations={props.translations}
imageUpload={props.imageUpload}
imageUploaded={(image) =>
props.onChange({
src: image.url,
})
}
/>
<Typography variant="body1" style={{ margin: '20px 16px 0 16px' }}>
{t(props.translations?.or)}
</Typography>
</>
)}
<TextField
placeholder={t(props.translations?.srcPlaceholder) ?? ''}
label={t(
props.imageUpload
? props.translations?.haveUrl
: props.translations?.imageUrl
)}
name="src"
// style={{ flex: 1 }}
value={props.data.src ?? ''}
onChange={(e) =>
props.onChange({
src: e.target.value,
})
}
/>
</div>
<br />
{/* Image link textbox and checkbox */}
<TextField
placeholder={t(props.translations?.hrefPlaceholder) ?? ''}
label={t(props.translations?.hrefLabel) ?? ''}
name="href"
style={{ width: '400px' }}
value={props.data.href ?? ''}
onChange={(e) =>
props.onChange({
href: e.target.value,
})
}
/>
<FormControlLabel
control={
<Checkbox
checked={props.data.openInNewWindow ?? false}
onChange={(e) =>
props.onChange({
openInNewWindow: e.target.checked,
})
}
/>
}
label={t(props.translations?.openNewWindow)}
/>
<br />
{/* Image's meta like alt... */}
<TextField
placeholder={t(props.translations?.altPlaceholder) ?? ''}
label={t(props.translations?.altLabel) ?? ''}
name="alt"
style={{ width: '400px' }}
value={props.data.alt ?? ''}
onChange={(e) =>
props.onChange({
alt: e.target.value,
})
}
/>
</>
);
};
export default ImageControls;
|