Skip to content

Commit

Permalink
fix: enable dragging arguments out of procedure blocks (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
gonfunko authored Aug 12, 2024
1 parent 453ffa9 commit 0ca0620
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
36 changes: 36 additions & 0 deletions blocks_vertical/procedures.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,40 @@ import * as Blockly from "blockly/core";
import { Colours } from "../core/colours.js";
import { FieldTextInputRemovable } from "../core/field_textinput_removable.js";

class DuplicateOnDragDraggable {
constructor(block) {
this.block = block;
}

isMovable() {
return true;
}

startDrag(e) {
const data = this.block.toCopyData();
this.copy = Blockly.clipboard.paste(data, this.block.workspace);
this.baseStrat = new Blockly.dragging.BlockDragStrategy(this.copy);
this.copy.setDragStrategy(this.baseStrat);
this.baseStrat.startDrag(e);
}

drag(e) {
this.block.workspace
.getGesture(e)
.getCurrentDragger()
.setDraggable(this.copy);
this.baseStrat.drag(e);
}

endDrag(e) {
this.baseStrat?.endDrag(e);
}

revertDrag(e) {
this.copy?.dispose();
}
}

// Serialization and deserialization.

/**
Expand Down Expand Up @@ -918,6 +952,7 @@ Blockly.Blocks["argument_reporter_boolean"] = {
],
extensions: ["colours_more", "output_boolean"],
});
this.setDragStrategy(new DuplicateOnDragDraggable(this));
},
};

Expand All @@ -934,6 +969,7 @@ Blockly.Blocks["argument_reporter_string_number"] = {
],
extensions: ["colours_more", "output_number", "output_string"],
});
this.setDragStrategy(new DuplicateOnDragDraggable(this));
},
};

Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import { buildGlowFilter, glowStack } from "./glows.js";
import { ScratchContinuousToolbox } from "./scratch_continuous_toolbox.js";
import "./scratch_continuous_category.js";
import "./scratch_comment_icon.js";
import "./scratch_dragger.js";
import "./scratch_variable_model.js";
import "./scratch_connection_checker.js";
import "./events_block_comment_change.js";
Expand Down
20 changes: 20 additions & 0 deletions src/scratch_dragger.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/**
* @license
* Copyright 2024 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/

import * as Blockly from "blockly/core";

class ScratchDragger extends Blockly.dragging.Dragger {
setDraggable(draggable) {
this.draggable = draggable;
}
}

Blockly.registry.register(
Blockly.registry.Type.BLOCK_DRAGGER,
Blockly.registry.DEFAULT,
ScratchDragger,
true
);

0 comments on commit 0ca0620

Please # to comment.