mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
8a95a41100
Co-authored-by: Bavisetti Narayan <72156168+NarayanBavisetti@users.noreply.github.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Bavisetti Narayan <narayan@Bavisettis-MacBook-Pro.local> Co-authored-by: Nikhil <118773738+pablohashescobar@users.noreply.github.com> Co-authored-by: M. Palanikannan <73993394+Palanikannan1437@users.noreply.github.com> Co-authored-by: Lakhan Baheti <94619783+1akhanBaheti@users.noreply.github.com> Co-authored-by: Dakshesh Jain <65905942+dakshesh14@users.noreply.github.com> Co-authored-by: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com>
58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
import { Editor } from "@tiptap/react";
|
|
import Moveable from "react-moveable";
|
|
|
|
export const ImageResizer = ({ editor }: { editor: Editor }) => {
|
|
const updateMediaSize = () => {
|
|
const imageInfo = document.querySelector(
|
|
".ProseMirror-selectednode",
|
|
) as HTMLImageElement;
|
|
if (imageInfo) {
|
|
const selection = editor.state.selection;
|
|
editor.commands.setImage({
|
|
src: imageInfo.src,
|
|
width: Number(imageInfo.style.width.replace("px", "")),
|
|
height: Number(imageInfo.style.height.replace("px", "")),
|
|
} as any);
|
|
editor.commands.setNodeSelection(selection.from);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Moveable
|
|
target={document.querySelector(".ProseMirror-selectednode") as any}
|
|
container={null}
|
|
origin={false}
|
|
edge={false}
|
|
throttleDrag={0}
|
|
keepRatio={true}
|
|
resizable={true}
|
|
throttleResize={0}
|
|
onResize={({
|
|
target,
|
|
width,
|
|
height,
|
|
delta,
|
|
}:
|
|
any) => {
|
|
delta[0] && (target!.style.width = `${width}px`);
|
|
delta[1] && (target!.style.height = `${height}px`);
|
|
}}
|
|
onResizeEnd={() => {
|
|
updateMediaSize();
|
|
}}
|
|
scalable={true}
|
|
renderDirections={["w", "e"]}
|
|
onScale={({
|
|
target,
|
|
transform,
|
|
}:
|
|
any) => {
|
|
target!.style.transform = transform;
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|