-
Notifications
You must be signed in to change notification settings - Fork 662
Expand file tree
/
Copy pathbackpack_helpers.ts
More file actions
219 lines (211 loc) · 6.94 KB
/
Copy pathbackpack_helpers.ts
File metadata and controls
219 lines (211 loc) · 6.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Helper and utility methods for the backpack plugin.
* @author kozbial@google.com (Monica Kozbial)
*/
import * as Blockly from 'blockly/core';
import {Backpack} from './backpack';
import {BackpackContextMenuOptions} from './options';
/**
* Registers a context menu option to remove a block from a backpack flyout.
*/
function registerRemoveFromBackpack() {
if (Blockly.ContextMenuRegistry.registry.getItem('remove_from_backpack')) {
return;
}
const removeFromBackpack = {
displayText: Blockly.Msg['REMOVE_FROM_BACKPACK'],
preconditionFn: function (scope: Blockly.ContextMenuRegistry.Scope) {
if (!scope.block) return 'hidden';
const ws = scope.block.workspace;
if (ws.isFlyout && ws.targetWorkspace) {
const backpack = ws.targetWorkspace
.getComponentManager()
.getComponent('backpack') as Backpack;
const backpackFlyout = backpack && backpack.getFlyout();
if (
backpack &&
backpackFlyout &&
backpackFlyout.getWorkspace().id === ws.id
) {
return 'enabled';
}
}
return 'hidden';
},
callback: function (scope: Blockly.ContextMenuRegistry.Scope) {
if (!scope.block || !scope.block.workspace.targetWorkspace) return;
const backpack = scope.block.workspace.targetWorkspace
.getComponentManager()
.getComponent('backpack') as Backpack;
backpack.removeBlock(scope.block);
},
scopeType: Blockly.ContextMenuRegistry.ScopeType.BLOCK,
id: 'remove_from_backpack',
// Use a larger weight to push the option lower on the context menu.
weight: 200,
};
Blockly.ContextMenuRegistry.registry.register(removeFromBackpack);
}
/**
* Registers context menu options for adding a block to the backpack.
*
* @param disablePreconditionContainsCheck Whether to disable the
* precondition check for whether the backpack contains the block.
*/
function registerCopyToBackpack(disablePreconditionContainsCheck: boolean) {
if (Blockly.ContextMenuRegistry.registry.getItem('copy_to_backpack')) {
return;
}
const copyToBackpack = {
displayText: function (scope: Blockly.ContextMenuRegistry.Scope) {
if (!scope.block) {
return '';
}
return Blockly.Msg['COPY_TO_BACKPACK'];
},
preconditionFn: function (scope: Blockly.ContextMenuRegistry.Scope) {
if (!scope.block) return 'hidden';
const ws = scope.block.workspace;
if (!ws.isFlyout) {
const backpack = ws
.getComponentManager()
.getComponent('backpack') as Backpack;
if (backpack) {
if (disablePreconditionContainsCheck) {
return 'enabled';
}
return backpack.containsBlock(scope.block) ? 'disabled' : 'enabled';
}
}
return 'hidden';
},
callback: function (scope: Blockly.ContextMenuRegistry.Scope) {
if (!scope.block) return;
const backpack = scope.block.workspace
.getComponentManager()
.getComponent('backpack') as Backpack;
backpack.addBlock(scope.block);
},
scopeType: Blockly.ContextMenuRegistry.ScopeType.BLOCK,
id: 'copy_to_backpack',
// Use a larger weight to push the option lower on the context menu.
weight: 200,
};
Blockly.ContextMenuRegistry.registry.register(copyToBackpack);
}
/**
* Registers context menu options for copying all blocks from the workspace to
* the backpack.
*/
function registerCopyAllBackpack() {
if (Blockly.ContextMenuRegistry.registry.getItem('copy_all_to_backpack')) {
return;
}
const copyAllToBackpack = {
displayText: Blockly.Msg['COPY_ALL_TO_BACKPACK'],
preconditionFn: function (scope: Blockly.ContextMenuRegistry.Scope) {
const ws = scope.workspace;
if (ws && !ws.isFlyout) {
const backpack = ws.getComponentManager().getComponent('backpack');
if (backpack) {
return 'enabled';
}
}
return 'hidden';
},
callback: function (scope: Blockly.ContextMenuRegistry.Scope) {
const ws = scope.workspace;
if (!ws) return;
const backpack = ws
.getComponentManager()
.getComponent('backpack') as Backpack;
backpack.addBlocks(ws.getTopBlocks(true));
},
scopeType: Blockly.ContextMenuRegistry.ScopeType.WORKSPACE,
id: 'copy_all_to_backpack',
// Use a larger weight to push the option lower on the context menu.
weight: 200,
};
Blockly.ContextMenuRegistry.registry.register(copyAllToBackpack);
}
/**
* Registers context menu options for pasting all blocks from the backpack to
* the workspace.
*/
function registerPasteAllBackpack() {
if (Blockly.ContextMenuRegistry.registry.getItem('paste_all_from_backpack')) {
return;
}
const pasteAllFromBackpack = {
displayText: function (scope: Blockly.ContextMenuRegistry.Scope) {
if (!scope.workspace) {
return '';
}
const backpack = scope.workspace
.getComponentManager()
.getComponent('backpack') as Backpack;
const backpackCount = backpack.getCount();
return `${Blockly.Msg['PASTE_ALL_FROM_BACKPACK']} (${backpackCount})`;
},
preconditionFn: function (scope: Blockly.ContextMenuRegistry.Scope) {
const ws = scope.workspace;
if (ws && !ws.isFlyout) {
const backpack = ws.getComponentManager().getComponent('backpack');
if (backpack) {
return 'enabled';
}
}
return 'hidden';
},
callback: function (scope: Blockly.ContextMenuRegistry.Scope) {
const ws = scope.workspace;
if (!ws) return;
const backpack = ws
.getComponentManager()
.getComponent('backpack') as Backpack;
const contents = backpack.getContents();
contents.forEach((blockText) => {
const block = Blockly.serialization.blocks.append(
JSON.parse(blockText),
ws,
) as Blockly.BlockSvg;
block.scheduleSnapAndBump();
});
},
scopeType: Blockly.ContextMenuRegistry.ScopeType.WORKSPACE,
id: 'paste_all_from_backpack',
// Use a larger weight to push the option lower on the context menu.
weight: 200,
};
Blockly.ContextMenuRegistry.registry.register(pasteAllFromBackpack);
}
/**
* Register all context menu options.
*
* @param contextMenuOptions The backpack context menu options.
* @param workspace The workspace to register the context menu options.
*/
export function registerContextMenus(
contextMenuOptions: BackpackContextMenuOptions,
workspace: Blockly.WorkspaceSvg,
) {
if (contextMenuOptions.removeFromBackpack) {
registerRemoveFromBackpack();
}
if (contextMenuOptions.copyToBackpack) {
registerCopyToBackpack(
contextMenuOptions.disablePreconditionChecks ?? false,
);
}
if (contextMenuOptions.copyAllToBackpack) {
registerCopyAllBackpack();
}
if (contextMenuOptions.pasteAllToBackpack) {
registerPasteAllBackpack();
}
}