feat: updating ImageComponent

- adding format
- adding method to read image from file
- adding method to load image from base64 byte string
This commit is contained in:
Mose Müller
2023-08-10 10:24:15 +02:00
parent 8d55f3b853
commit a333de9957
3 changed files with 57 additions and 18 deletions

View File

@ -160,6 +160,7 @@ export const GenericComponent = React.memo(
readOnly={attribute.readonly}
docString={attribute.doc}
// Add any other specific props for the ImageComponent here
format={attribute.value['format']['value'] as string}
/>
);
} else {

View File

@ -9,33 +9,36 @@ interface ImageComponentProps {
value: string;
readOnly: boolean;
docString: string;
// Define your component specific props here
format: string;
}
export const ImageComponent = React.memo((props: ImageComponentProps) => {
const renderCount = useRef(0);
const { name, parentPath, value, docString } = props;
// Your component logic here
const { name, parentPath, value, docString, format } = props;
useEffect(() => {
renderCount.current++;
console.log(value);
});
return (
<div className={'imageComponent'} id={parentPath.concat('.' + name)}>
{process.env.NODE_ENV === 'development' && (
<p>Render count: {renderCount.current}</p>
)}
<DocStringComponent docString={docString} />
{/* Your component JSX here */}
<Card>
<Card.Header
style={{ cursor: 'pointer' }} // Change cursor style on hover
>
{name}
</Card.Header>
<Image src={`data:image/jpeg;base64,${value}`}></Image>
{process.env.NODE_ENV === 'development' && (
<p>Render count: {renderCount.current}</p>
)}
<DocStringComponent docString={docString} />
{/* Your component JSX here */}
{format === '' && value === '' ? (
<p>No image set in the backend.</p>
) : (
<Image src={`data:image/${format.toLowerCase()};base64,${value}`}></Image>
)}
</Card>
</div>
);