mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
138 lines
4 KiB
TypeScript
138 lines
4 KiB
TypeScript
import { NodeViewWrapper } from "@tiptap/react";
|
|
import React from "react";
|
|
import styled from "styled-components";
|
|
import { Resizable } from 're-resizable';
|
|
|
|
import * as AspectRatio from '@radix-ui/react-aspect-ratio';
|
|
import { AlertCircle, AlertTriangle, Image, ImagePlus, Info } from "lucide-react";
|
|
import { getImageFile, uploadNewImageFile } from "../../../../../services/blocks/Image/images";
|
|
import { getBackendUrl } from "../../../../../services/config/config";
|
|
import { getActivityBlockMediaDirectory } from "@services/media/media";
|
|
|
|
function ImageBlockComponent(props: any) {
|
|
const [image, setImage] = React.useState(null);
|
|
const [isLoading, setIsLoading] = React.useState(false);
|
|
const [blockObject, setblockObject] = React.useState(props.node.attrs.blockObject);
|
|
const [imageSize, setImageSize] = React.useState({ width: props.node.attrs.size ? props.node.attrs.size.width : 300 });
|
|
const fileId = blockObject ? `${blockObject.block_data.file_id}.${blockObject.block_data.file_format}` : null;
|
|
|
|
const handleImageChange = (event: React.ChangeEvent<any>) => {
|
|
setImage(event.target.files[0]);
|
|
};
|
|
|
|
const handleSubmit = async (e: any) => {
|
|
e.preventDefault();
|
|
setIsLoading(true);
|
|
let object = await uploadNewImageFile(image, props.extension.options.activity.activity_id);
|
|
setIsLoading(false);
|
|
setblockObject(object);
|
|
props.updateAttributes({
|
|
blockObject: object,
|
|
size: imageSize,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<NodeViewWrapper className="block-image">
|
|
{!blockObject && (
|
|
<BlockImageWrapper contentEditable={props.extension.options.editable}>
|
|
<div>
|
|
<Image color="#e1e0e0" size={50} />
|
|
<br />
|
|
</div>
|
|
<input onChange={handleImageChange} type="file" name="" id="" />
|
|
<br />
|
|
<button onClick={handleSubmit}>Submit</button>
|
|
</BlockImageWrapper>
|
|
)}
|
|
{blockObject && (
|
|
<Resizable defaultSize={{ width: imageSize.width, height: "100%" }}
|
|
handleStyles={{
|
|
right: { width: '10px', height: '100%', cursor: 'col-resize' },
|
|
top: { width: 0 },
|
|
bottom: { width: 0 },
|
|
left: { width: 0 },
|
|
topRight: { width: 0 },
|
|
bottomRight: { width: 0 },
|
|
bottomLeft: { width: 0 },
|
|
topLeft: { width: 0 },
|
|
|
|
}}
|
|
style={{ margin: "auto" }}
|
|
maxWidth={850}
|
|
minWidth={400}
|
|
onResizeStop={(e, direction, ref, d) => {
|
|
props.updateAttributes({
|
|
size: {
|
|
width: imageSize.width + d.width,
|
|
}
|
|
});
|
|
setImageSize({
|
|
width: imageSize.width + d.width,
|
|
});
|
|
}}
|
|
>
|
|
|
|
<BlockImage>
|
|
<AspectRatio.Root ratio={16 / 9}>
|
|
<img
|
|
src={`${getActivityBlockMediaDirectory(props.extension.options.activity.org_id,
|
|
props.extension.options.activity.course_id,
|
|
props.extension.options.activity.activity_id,
|
|
blockObject.block_id,
|
|
blockObject ? fileId : ' ', 'imageBlock')}`}
|
|
alt=""
|
|
/>
|
|
{blockObject.block_id}
|
|
</AspectRatio.Root>
|
|
|
|
|
|
</BlockImage>
|
|
</Resizable>
|
|
)}
|
|
{isLoading && (
|
|
<div>
|
|
<AlertTriangle color="#e1e0e0" size={50} />
|
|
</div>
|
|
)}
|
|
</NodeViewWrapper>
|
|
);
|
|
}
|
|
|
|
export default ImageBlockComponent;
|
|
|
|
const BlockImageWrapper = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: #f9f9f9;
|
|
border-radius: 3px;
|
|
padding: 30px;
|
|
min-height: 74px;
|
|
border: ${(props) => (props.contentEditable ? "2px dashed #713f1117" : "none")};
|
|
|
|
// center
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
`;
|
|
|
|
const BlockImage = styled.div`
|
|
display: flex;
|
|
|
|
|
|
// center
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
|
|
|
|
img{
|
|
object-fit: "cover";
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
`;
|