fix: blocks being dragged behind toolbox (#7619)

* fix: add layer manager to fix dragging

* chore: fix block animations

* chore: add tests

* chore: format
This commit is contained in:
Beka Westberg
2023-11-08 23:25:45 +00:00
committed by GitHub
parent d8eb7b56bb
commit 02cd1c6a1b
14 changed files with 376 additions and 56 deletions

View File

@@ -100,6 +100,7 @@
import './jso_serialization_test.js';
import './json_test.js';
import './keydown_test.js';
import './layering_test.js';
import './blocks/lists_test.js';
import './blocks/logic_ternary_test.js';
import './metrics_test.js';

View File

@@ -0,0 +1,94 @@
/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {
sharedTestSetup,
sharedTestTeardown,
} from './test_helpers/setup_teardown.js';
suite('Layering', function () {
setup(function () {
sharedTestSetup.call(this);
this.workspace = Blockly.inject('blocklyDiv', {});
this.layerManager = this.workspace.getLayerManager();
});
teardown(function () {
sharedTestTeardown.call(this);
});
function createRenderedElement() {
const g = Blockly.utils.dom.createSvgElement('g', {});
return {
getSvgRoot: () => g,
};
}
suite('appending layers', function () {
test('layer is not appended if it already exists', function () {
const elem1 = createRenderedElement();
const elem2 = createRenderedElement();
this.layerManager.append(elem1, 999);
const layerCount = this.layerManager.layers.size;
this.layerManager.append(elem2, 999);
chai.assert.equal(
this.layerManager.layers.size,
layerCount,
'Expected the element to be appended to the existing layer',
);
});
test('more positive layers are appended after less positive layers', function () {
// Checks that if the element comes after all elements, its still gets
// appended.
const elem1 = createRenderedElement();
const elem2 = createRenderedElement();
this.layerManager.append(elem1, 1000);
this.layerManager.append(elem2, 1010);
const layer1000 = this.layerManager.layers.get(1000);
const layer1010 = this.layerManager.layers.get(1010);
chai.assert.equal(
layer1000.nextSibling,
layer1010,
'Expected layer 1000 to be direclty before layer 1010',
);
});
test('less positive layers are appended before more positive layers', function () {
const elem1 = createRenderedElement();
const elem2 = createRenderedElement();
this.layerManager.append(elem1, 1010);
this.layerManager.append(elem2, 1000);
const layer1010 = this.layerManager.layers.get(1010);
const layer1000 = this.layerManager.layers.get(1000);
chai.assert.equal(
layer1000.nextSibling,
layer1010,
'Expected layer 1000 to be direclty before layer 1010',
);
});
});
suite('dragging', function () {
test('moving an element to the drag layer adds it to the drag group', function () {
const elem = createRenderedElement();
this.layerManager.moveToDragLayer(elem);
chai.assert.equal(
this.layerManager.dragLayer.firstChild,
elem.getSvgRoot(),
'Expected the element to be the first element in the drag layer.',
);
});
});
});

View File

@@ -126,7 +126,7 @@ suite('Theme', function () {
try {
const blockStyles = createBlockStyles();
const theme = new Blockly.Theme('themeName', blockStyles);
workspace = new Blockly.WorkspaceSvg(new Blockly.Options({}));
workspace = Blockly.inject('blocklyDiv', {});
const blockA = workspace.newBlock('stack_block');
blockA.setStyle = function () {

View File

@@ -163,19 +163,6 @@ suite('Workspace comment', function () {
// Nothing should go wrong the second time dispose is called.
comment.dispose();
});
test('WorkspaceCommentSvg disposed', function () {
const comment = new Blockly.WorkspaceCommentSvg(
this.workspace,
'comment text',
0,
0,
'comment id',
);
comment.dispose();
// Nothing should go wrong the second time dispose is called.
comment.dispose();
});
});
suite('Width and height', function () {