我正在使用Draft.js插件Resizeable。
我正在尝试使用原始长宽比调整图像大小。
但是,对于下面的代码,当我使用鼠标在图像的下边缘调整大小时,光标会改变,但无法调整大小。它只适用于左右边缘。
const resizeablePlugin = createResizeablePlugin({
vertical: 'relative',
horizontal: 'relative'
});
查看source code后,我仍然无法找出原因。
答案 0 :(得分:3)
当您通过顶部或底部边缘调整大小时,此插件的开发人员似乎没有提供此机会以节省比率更改图像大小。配置选项vertical: 'relative'
表示插件应以相对单位(百分比)设置height
值。您可以使用devtools检查当您尝试调整图像大小时height
值确实会发生变化。但是,当我们使用保存比率调整图像大小时,我们应该更改width
值以达到行为。
可以通过稍微重写源代码来实现。检查this fork of your sandbox。
检查createDecorator.js
它与/node_modules/draft-js-resizeable-plugin/lib/createDecorator.js
中存储的文件相同。我改变了什么?查找doDrag
函数(我使用// !
推销已添加或更改的所有字符串):
...
var startWidth = parseInt(document.defaultView.getComputedStyle(pane).width, 10);
var startHeight = parseInt(document.defaultView.getComputedStyle(pane).height, 10);
var imageRect = pane.getBoundingClientRect(); // !
var imageRatio = imageRect.width / imageRect.height; // ! get image ratio
// Do the actual drag operation
var doDrag = function doDrag(dragEvent) {
var width = startWidth + dragEvent.clientX - startX;
var height = startHeight + dragEvent.clientY - startY;
var block = store.getEditorRef().refs.editor;
width = block.clientWidth < width ? block.clientWidth : width;
height = block.clientHeight < height ? block.clientHeight : height;
var widthForPercCalculation = (isTop || isBottom) && vertical === 'relative' ? height * imageRatio : width; // ! calculate new width value in percents
var widthPerc = 100 / block.clientWidth * widthForPercCalculation; // !
var heightPerc = 100 / block.clientHeight * height;
var newState = {};
if ((isLeft || isRight) && horizontal === 'relative') {
newState.width = resizeSteps ? round(widthPerc, resizeSteps) : widthPerc;
} else if ((isLeft || isRight) && horizontal === 'absolute') {
newState.width = resizeSteps ? round(width, resizeSteps) : width;
}
if ((isTop || isBottom) && vertical === 'relative') {
newState.width = resizeSteps ? round(widthPerc, resizeSteps) : widthPerc; // ! here we update width not height value
} else if ((isTop || isBottom) && vertical === 'absolute') {
newState.height = resizeSteps ? round(height, resizeSteps) : height;
}
...
我想你可以要求这个插件开发团队添加此功能或 分叉项目。