mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
feat: Improve ImageBlockComponent with responsive resizing and layout
This commit is contained in:
parent
f8974da088
commit
552d21046e
1 changed files with 64 additions and 39 deletions
|
|
@ -18,7 +18,7 @@ function ImageBlockComponent(props: any) {
|
||||||
const course = useCourse() as any
|
const course = useCourse() as any
|
||||||
const editorState = useEditorProvider() as any
|
const editorState = useEditorProvider() as any
|
||||||
const session = useLHSession() as any
|
const session = useLHSession() as any
|
||||||
const access_token = session?.data?.tokens?.access_token;
|
const access_token = session?.data?.tokens?.access_token;
|
||||||
|
|
||||||
const isEditable = editorState.isEditable
|
const isEditable = editorState.isEditable
|
||||||
const [image, setImage] = React.useState(null)
|
const [image, setImage] = React.useState(null)
|
||||||
|
|
@ -29,6 +29,7 @@ function ImageBlockComponent(props: any) {
|
||||||
const [imageSize, setImageSize] = React.useState({
|
const [imageSize, setImageSize] = React.useState({
|
||||||
width: props.node.attrs.size ? props.node.attrs.size.width : 300,
|
width: props.node.attrs.size ? props.node.attrs.size.width : 300,
|
||||||
})
|
})
|
||||||
|
|
||||||
const fileId = blockObject
|
const fileId = blockObject
|
||||||
? `${blockObject.content.file_id}.${blockObject.content.file_format}`
|
? `${blockObject.content.file_id}.${blockObject.content.file_format}`
|
||||||
: null
|
: null
|
||||||
|
|
@ -54,48 +55,70 @@ function ImageBlockComponent(props: any) {
|
||||||
useEffect(() => {}, [course, org])
|
useEffect(() => {}, [course, org])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NodeViewWrapper className="block-image">
|
<NodeViewWrapper className="block-image w-full">
|
||||||
<FileUploadBlock isEditable={isEditable} isLoading={isLoading} isEmpty={!blockObject} Icon={Image}>
|
<FileUploadBlock isEditable={isEditable} isLoading={isLoading} isEmpty={!blockObject} Icon={Image}>
|
||||||
<FileUploadBlockInput onChange={handleImageChange} accept={SUPPORTED_FILES} />
|
<FileUploadBlockInput onChange={handleImageChange} accept={SUPPORTED_FILES} />
|
||||||
<FileUploadBlockButton onClick={handleSubmit} disabled={!image}/>
|
<FileUploadBlockButton onClick={handleSubmit} disabled={!image}/>
|
||||||
</FileUploadBlock>
|
</FileUploadBlock>
|
||||||
|
|
||||||
{blockObject && (
|
{blockObject && isEditable && (
|
||||||
<Resizable
|
<div className="w-full flex justify-center">
|
||||||
defaultSize={{ width: imageSize.width, height: '100%' }}
|
<Resizable
|
||||||
handleStyles={{
|
defaultSize={{ width: imageSize.width, height: '100%' }}
|
||||||
right: {
|
handleStyles={{
|
||||||
position: 'unset',
|
right: {
|
||||||
width: 7,
|
position: 'unset',
|
||||||
height: 30,
|
width: 7,
|
||||||
borderRadius: 20,
|
height: 30,
|
||||||
cursor: 'col-resize',
|
borderRadius: 20,
|
||||||
backgroundColor: 'black',
|
cursor: 'col-resize',
|
||||||
opacity: '0.3',
|
backgroundColor: 'black',
|
||||||
margin: 'auto',
|
opacity: '0.3',
|
||||||
marginLeft: 5,
|
margin: 'auto',
|
||||||
},
|
marginLeft: 5,
|
||||||
}}
|
|
||||||
style={{
|
|
||||||
margin: 'auto',
|
|
||||||
display: 'flex',
|
|
||||||
justifyContent: 'center',
|
|
||||||
alignItems: 'center',
|
|
||||||
height: '100%',
|
|
||||||
}}
|
|
||||||
maxWidth={1000}
|
|
||||||
minWidth={200}
|
|
||||||
onResizeStop={(e, direction, ref, d) => {
|
|
||||||
props.updateAttributes({
|
|
||||||
size: {
|
|
||||||
width: imageSize.width + d.width,
|
|
||||||
},
|
},
|
||||||
})
|
}}
|
||||||
setImageSize({
|
style={{
|
||||||
width: imageSize.width + d.width,
|
display: 'flex',
|
||||||
})
|
justifyContent: 'center',
|
||||||
}}
|
alignItems: 'center',
|
||||||
>
|
height: '100%',
|
||||||
|
maxWidth: '100%',
|
||||||
|
}}
|
||||||
|
maxWidth="100%"
|
||||||
|
minWidth={200}
|
||||||
|
enable={{ right: true }}
|
||||||
|
onResizeStop={(e, direction, ref, d) => {
|
||||||
|
const newWidth = Math.min(imageSize.width + d.width, ref.parentElement?.clientWidth || 1000);
|
||||||
|
props.updateAttributes({
|
||||||
|
size: {
|
||||||
|
width: newWidth,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
setImageSize({
|
||||||
|
width: newWidth,
|
||||||
|
})
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src={`${getActivityBlockMediaDirectory(
|
||||||
|
org?.org_uuid,
|
||||||
|
course?.courseStructure.course_uuid,
|
||||||
|
props.extension.options.activity.activity_uuid,
|
||||||
|
blockObject.block_uuid,
|
||||||
|
blockObject ? fileId : ' ',
|
||||||
|
'imageBlock'
|
||||||
|
)}`}
|
||||||
|
alt=""
|
||||||
|
className="rounded-lg shadow max-w-full h-auto"
|
||||||
|
style={{ width: '100%' }}
|
||||||
|
/>
|
||||||
|
</Resizable>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{blockObject && !isEditable && (
|
||||||
|
<div className="w-full flex justify-center">
|
||||||
<img
|
<img
|
||||||
src={`${getActivityBlockMediaDirectory(
|
src={`${getActivityBlockMediaDirectory(
|
||||||
org?.org_uuid,
|
org?.org_uuid,
|
||||||
|
|
@ -106,10 +129,12 @@ function ImageBlockComponent(props: any) {
|
||||||
'imageBlock'
|
'imageBlock'
|
||||||
)}`}
|
)}`}
|
||||||
alt=""
|
alt=""
|
||||||
className="rounded-lg shadow "
|
className="rounded-lg shadow max-w-full h-auto"
|
||||||
|
style={{ width: imageSize.width, maxWidth: '100%' }}
|
||||||
/>
|
/>
|
||||||
</Resizable>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{isLoading && (
|
{isLoading && (
|
||||||
<div>
|
<div>
|
||||||
<AlertTriangle color="#e1e0e0" size={50} />
|
<AlertTriangle color="#e1e0e0" size={50} />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue