Skip to content
Snippets Groups Projects
Commit 202a17b8 authored by jtimotei's avatar jtimotei
Browse files

MC options don't get outside the problem widget even while dragging

parent 76b3d64a
Branches fix-cb-snap
No related tags found
1 merge request!15Refactorings and compatibility fix
Pipeline #17830 passed with warnings
...@@ -188,11 +188,15 @@ class ExamEditor extends React.Component { ...@@ -188,11 +188,15 @@ class ExamEditor extends React.Component {
}) })
} }
updateMCOPosition = (widget, data) => { updateState = (widget, data) => {
this.props.updateMCWidgetPosition(widget, { this.props.updateMCWidgetPosition(widget, {
x: Math.round(data.x), x: Math.round(data.x),
y: Math.round(data.y) y: Math.round(data.y)
}) })
}
updateMCOPosition = (widget, data) => {
this.updateState(widget, data)
widget.problem.mc_options.forEach( widget.problem.mc_options.forEach(
(option, i) => { (option, i) => {
...@@ -326,6 +330,28 @@ class ExamEditor extends React.Component { ...@@ -326,6 +330,28 @@ class ExamEditor extends React.Component {
onDragStart={() => { onDragStart={() => {
this.props.selectWidget(widget.id) this.props.selectWidget(widget.id)
}} }}
onDrag={(e, data) => {
if (widget.problem.mc_options.length > 0) {
let xPos = widget.problem.mc_options[0].widget.x
let yPos = widget.problem.mc_options[0].widget.y
let width = 24 * widget.problem.mc_options.length
let height = 38
if (xPos < data.x) {
xPos = data.x
} else if (xPos + width > data.x + widget.width) {
xPos = data.x + widget.width - width
}
if (yPos < data.y) {
yPos = data.y
} else if (yPos + height > data.y + widget.height) {
yPos = data.y + widget.height - height
}
this.updateState(widget, { x: xPos, y: yPos })
}
}}
onDragStop={(e, data) => { onDragStop={(e, data) => {
this.props.updateWidget(widget.id, { this.props.updateWidget(widget.id, {
x: { $set: Math.round(data.x) }, x: { $set: Math.round(data.x) },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment