mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
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:
@@ -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';
|
||||
|
||||
94
tests/mocha/layering_test.js
Normal file
94
tests/mocha/layering_test.js
Normal 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.',
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -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 () {
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user