mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
Moving closure compilation into the build file. Fixing up goog.requires for accessible blockly. Adding accessible to the build script.
107 lines
3.7 KiB
JavaScript
107 lines
3.7 KiB
JavaScript
/**
|
|
* 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 a Blockly.Workspace is
|
|
* rendered in AccessibleBlockly.
|
|
*
|
|
* @author madeeha@google.com (Madeeha Ghori)
|
|
*/
|
|
|
|
goog.provide('blocklyApp.WorkspaceComponent');
|
|
|
|
goog.require('blocklyApp.NotificationsService');
|
|
goog.require('blocklyApp.ToolboxModalService');
|
|
goog.require('blocklyApp.TranslatePipe');
|
|
goog.require('blocklyApp.TreeService');
|
|
|
|
goog.require('blocklyApp.WorkspaceBlockComponent');
|
|
|
|
|
|
blocklyApp.WorkspaceComponent = ng.core.Component({
|
|
selector: 'blockly-workspace',
|
|
template: `
|
|
<div class="blocklyWorkspaceColumn">
|
|
<h3 #workspaceTitle id="blockly-workspace-title">{{'WORKSPACE'|translate}}</h3>
|
|
|
|
<div *ngIf="workspace" class="blocklyWorkspace">
|
|
<ol #tree *ngFor="#topBlock of workspace.topBlocks_; #groupIndex = index"
|
|
[id]="tree.id || getNewTreeId()"
|
|
tabindex="0" role="tree" class="blocklyTree blocklyWorkspaceFocusTarget"
|
|
[attr.aria-activedescendant]="getActiveDescId(tree.id)"
|
|
[attr.aria-labelledby]="workspaceTitle.id"
|
|
(keydown)="onKeypress($event, tree)"
|
|
(focus)="speakLocation(groupIndex, tree.id)">
|
|
<blockly-workspace-block [level]="0" [block]="topBlock" [tree]="tree">
|
|
</blockly-workspace-block>
|
|
</ol>
|
|
|
|
<span *ngIf="workspace.topBlocks_.length === 0">
|
|
<p id="emptyWorkspaceBtnLabel">
|
|
{{'NO_BLOCKS_IN_WORKSPACE'|translate}}
|
|
<button (click)="showToolboxModalForCreateNewGroup()"
|
|
class="blocklyWorkspaceFocusTarget"
|
|
id="{{ID_FOR_EMPTY_WORKSPACE_BTN}}"
|
|
aria-describedby="emptyWorkspaceBtnLabel">
|
|
{{'CREATE_NEW_BLOCK_GROUP'|translate}}
|
|
</button>
|
|
</p>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
`,
|
|
directives: [blocklyApp.WorkspaceBlockComponent],
|
|
pipes: [blocklyApp.TranslatePipe]
|
|
})
|
|
.Class({
|
|
constructor: [
|
|
blocklyApp.NotificationsService,
|
|
blocklyApp.ToolboxModalService,
|
|
blocklyApp.TreeService,
|
|
function(notificationsService, toolboxModalService, treeService) {
|
|
this.notificationsService = notificationsService;
|
|
this.toolboxModalService = toolboxModalService;
|
|
this.treeService = treeService;
|
|
|
|
this.ID_FOR_EMPTY_WORKSPACE_BTN = blocklyApp.ID_FOR_EMPTY_WORKSPACE_BTN;
|
|
this.workspace = blocklyApp.workspace;
|
|
this.currentTreeId = 0;
|
|
}
|
|
],
|
|
getNewTreeId: function() {
|
|
this.currentTreeId++;
|
|
return 'blockly-tree-' + this.currentTreeId;
|
|
},
|
|
getActiveDescId: function(treeId) {
|
|
return this.treeService.getActiveDescId(treeId);
|
|
},
|
|
onKeypress: function(e, tree) {
|
|
this.treeService.onKeypress(e, tree);
|
|
},
|
|
showToolboxModalForCreateNewGroup: function() {
|
|
this.toolboxModalService.showToolboxModalForCreateNewGroup(
|
|
this.ID_FOR_EMPTY_WORKSPACE_BTN);
|
|
},
|
|
speakLocation: function(groupIndex, treeId) {
|
|
this.notificationsService.speak(
|
|
'Now in workspace group ' + (groupIndex + 1) + ' of ' +
|
|
this.workspace.topBlocks_.length);
|
|
}
|
|
});
|