123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- /**
- * AccessibleBlockly
- *
- * Copyright 2016 Google Inc.
- * https://developers.google.com/blockly/
- *
- * Licensed under the Apache License, Version 2.0 (the 'License');
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an 'AS IS' BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * @fileoverview Angular2 Component that details how blocks are
- * rendered in the toolbox in AccessibleBlockly. Also handles any interactions
- * with the blocks.
- * @author madeeha@google.com (Madeeha Ghori)
- */
- blocklyApp.ToolboxTreeComponent = ng.core
- .Component({
- selector: 'blockly-toolbox-tree',
- template: `
- <li [id]="idMap['toolboxBlockRoot']" role="treeitem"
- [ngClass]="{blocklyHasChildren: displayBlockMenu}"
- [attr.aria-labelledBy]="generateAriaLabelledByAttr(idMap['toolboxBlockSummary'], 'blockly-toolbox-block')"
- [attr.aria-level]="level">
- <label #toolboxBlockSummary [id]="idMap['toolboxBlockSummary']">{{getBlockDescription()}}</label>
- <ol role="group" *ngIf="displayBlockMenu">
- <li [id]="idMap['blockCopy']" role="treeitem" *ngIf="!isWorkspaceEmpty()"
- [attr.aria-labelledBy]="generateAriaLabelledByAttr(idMap['blockCopyButton'], 'blockly-button')"
- [attr.aria-level]="level + 1">
- <button [id]="idMap['blockCopyButton']" (click)="copyToClipboard()" tabindex="-1">
- {{'COPY_TO_CLIPBOARD'|translate}}
- </button>
- </li>
- <li [id]="idMap['sendToSelected']" role="treeitem" *ngIf="!isWorkspaceEmpty()"
- [attr.aria-label]="getAriaLabelForCopyToMarkedSpotButton()"
- [attr.aria-level]="level + 1"
- [attr.aria-disabled]="!canBeCopiedToMarkedConnection()">
- <button [id]="idMap['sendToSelectedButton']" (click)="copyToMarkedSpot()"
- [disabled]="!canBeCopiedToMarkedConnection()" tabindex="-1">
- {{'COPY_TO_MARKED_SPOT'|translate}}
- </button>
- </li>
- <li [id]="idMap['workspaceCopy']" role="treeitem"
- [attr.aria-labelledBy]="generateAriaLabelledByAttr(idMap['workspaceCopyButton'], 'blockly-button')"
- [attr.aria-level]="level + 1">
- <button [id]="idMap['workspaceCopyButton']" (click)="copyToWorkspace()" tabindex="-1">
- {{'COPY_TO_WORKSPACE'|translate}}
- </button>
- </li>
- </ol>
- </li>
- `,
- directives: [ng.core.forwardRef(function() {
- return blocklyApp.ToolboxTreeComponent;
- })],
- inputs: [
- 'block', 'displayBlockMenu', 'level', 'tree', 'isFirstToolboxTree'],
- pipes: [blocklyApp.TranslatePipe]
- })
- .Class({
- constructor: [
- blocklyApp.ClipboardService, blocklyApp.NotificationsService,
- blocklyApp.TreeService, blocklyApp.UtilsService,
- function(
- _clipboardService, _notificationsService,
- _treeService, _utilsService) {
- this.clipboardService = _clipboardService;
- this.notificationsService = _notificationsService;
- this.treeService = _treeService;
- this.utilsService = _utilsService;
- }],
- ngOnInit: function() {
- var idKeys = ['toolboxBlockRoot', 'toolboxBlockSummary'];
- if (this.displayBlockMenu) {
- idKeys = idKeys.concat([
- 'workspaceCopy', 'workspaceCopyButton', 'sendToSelected',
- 'sendToSelectedButton', 'blockCopy', 'blockCopyButton']);
- }
- this.idMap = {};
- for (var i = 0; i < idKeys.length; i++) {
- this.idMap[idKeys[i]] = this.block.id + idKeys[i];
- }
- },
- ngAfterViewInit: function() {
- // If this is the first tree in the category-less toolbox, set its active
- // descendant after the ids have been computed.
- // Note that a timeout is needed here in order to trigger Angular
- // change detection.
- if (this.isFirstToolboxTree) {
- var that = this;
- setTimeout(function() {
- that.treeService.setActiveDesc(
- that.idMap['toolboxBlockRoot'], 'blockly-toolbox-tree');
- });
- }
- },
- getAriaLabelForCopyToMarkedSpotButton: function() {
- // TODO(sll): Find a way to make this more like the other buttons.
- var ariaLabel = 'Attach to link button';
- if (!this.clipboardService.isAnyConnectionMarked()) {
- ariaLabel += ', unavailable. Add a link in the workspace first.';
- }
- return ariaLabel;
- },
- isWorkspaceEmpty: function() {
- return this.utilsService.isWorkspaceEmpty();
- },
- getBlockDescription: function() {
- return this.utilsService.getBlockDescription(this.block);
- },
- generateAriaLabelledByAttr: function(mainLabel, secondLabel) {
- return this.utilsService.generateAriaLabelledByAttr(
- mainLabel, secondLabel);
- },
- canBeCopiedToMarkedConnection: function() {
- return this.clipboardService.canBeCopiedToMarkedConnection(this.block);
- },
- copyToClipboard: function() {
- this.clipboardService.copy(this.block);
- this.notificationsService.setStatusMessage(
- this.getBlockDescription() + ' ' + Blockly.Msg.COPIED_BLOCK_MSG);
- },
- copyToWorkspace: function() {
- var blockDescription = this.getBlockDescription();
- var xml = Blockly.Xml.blockToDom(this.block);
- var newBlockId = Blockly.Xml.domToBlock(blocklyApp.workspace, xml).id;
- var that = this;
- setTimeout(function() {
- that.treeService.focusOnBlock(newBlockId);
- that.notificationsService.setStatusMessage(
- blockDescription + ' added to workspace. ' +
- 'Now on added block in workspace.');
- });
- },
- copyToMarkedSpot: function() {
- var blockDescription = this.getBlockDescription();
- // Clean up the active desc for the destination tree.
- var oldDestinationTreeId = this.treeService.getTreeIdForBlock(
- this.clipboardService.getMarkedConnectionBlock().id);
- this.treeService.clearActiveDesc(oldDestinationTreeId);
- var newBlockId = this.clipboardService.pasteToMarkedConnection(
- this.block);
- // Invoke a digest cycle, so that the DOM settles.
- var that = this;
- setTimeout(function() {
- that.treeService.focusOnBlock(newBlockId);
- var newDestinationTreeId = that.treeService.getTreeIdForBlock(
- newBlockId);
- if (newDestinationTreeId != oldDestinationTreeId) {
- // It is possible for the tree ID for the pasted block to change
- // after the paste operation, e.g. when inserting a block between two
- // existing blocks that are joined together. In this case, we need to
- // also reset the active desc for the old destination tree.
- that.treeService.initActiveDesc(oldDestinationTreeId);
- }
- that.notificationsService.setStatusMessage(
- blockDescription + ' connected. ' +
- 'Now on copied block in workspace.');
- });
- }
- });
|