mirror of
https://github.com/google/blockly.git
synced 2026-01-08 09:30:06 +01:00
* fix(build): Restore erroneously-deleted filter function This was deleted in PR #7406 as it was mainly being used to filter core/ vs. test/mocha/ deps into separate deps files - but it turns out also to be used for filtering error messages too. Oops. * refactor(tests): Migrate advanced compilation test to ES Modules * refactor(build): Migrate main.js to TypeScript This turns out to be pretty straight forward, even if it would cause crashing if one actually tried to import this module instead of just feeding it to Closure Compiler. * chore(build): Remove goog.declareModuleId calls Replace goog.declareModuleId calls with a comment recording the former module ID for posterity (or at least until we decide how to reformat the renamings file. * chore(tests): Delete closure/goog/* For the moment we still need something to serve as base.js for the benefit of closure-make-deps, so we keep a vestigial base.js around, containing only the @provideGoog declaration. * refactor(build): Remove vestigial base.js By changing slightly the command line arguments to closure-make-deps and closure-calculate-chunks the need to have any base.js is eliminated. * chore: Typo fix for PR #7415
139 lines
2.9 KiB
TypeScript
139 lines
2.9 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* The class representing a cursor.
|
|
* Used primarily for keyboard navigation.
|
|
*
|
|
* @class
|
|
*/
|
|
// Former goog.module ID: Blockly.Cursor
|
|
|
|
import * as registry from '../registry.js';
|
|
|
|
import {ASTNode} from './ast_node.js';
|
|
import {Marker} from './marker.js';
|
|
|
|
/**
|
|
* Class for a cursor.
|
|
* A cursor controls how a user navigates the Blockly AST.
|
|
*/
|
|
export class Cursor extends Marker {
|
|
override type = 'cursor';
|
|
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Find the next connection, field, or block.
|
|
*
|
|
* @returns The next element, or null if the current node is not set or there
|
|
* is no next value.
|
|
*/
|
|
next(): ASTNode | null {
|
|
const curNode = this.getCurNode();
|
|
if (!curNode) {
|
|
return null;
|
|
}
|
|
|
|
let newNode = curNode.next();
|
|
while (
|
|
newNode &&
|
|
newNode.next() &&
|
|
(newNode.getType() === ASTNode.types.NEXT ||
|
|
newNode.getType() === ASTNode.types.BLOCK)
|
|
) {
|
|
newNode = newNode.next();
|
|
}
|
|
|
|
if (newNode) {
|
|
this.setCurNode(newNode);
|
|
}
|
|
return newNode;
|
|
}
|
|
|
|
/**
|
|
* Find the in connection or field.
|
|
*
|
|
* @returns The in element, or null if the current node is not set or there is
|
|
* no in value.
|
|
*/
|
|
in(): ASTNode | null {
|
|
let curNode: ASTNode | null = this.getCurNode();
|
|
if (!curNode) {
|
|
return null;
|
|
}
|
|
// If we are on a previous or output connection, go to the block level
|
|
// before performing next operation.
|
|
if (
|
|
curNode.getType() === ASTNode.types.PREVIOUS ||
|
|
curNode.getType() === ASTNode.types.OUTPUT
|
|
) {
|
|
curNode = curNode.next();
|
|
}
|
|
const newNode = curNode?.in() ?? null;
|
|
|
|
if (newNode) {
|
|
this.setCurNode(newNode);
|
|
}
|
|
return newNode;
|
|
}
|
|
|
|
/**
|
|
* Find the previous connection, field, or block.
|
|
*
|
|
* @returns The previous element, or null if the current node is not set or
|
|
* there is no previous value.
|
|
*/
|
|
prev(): ASTNode | null {
|
|
const curNode = this.getCurNode();
|
|
if (!curNode) {
|
|
return null;
|
|
}
|
|
let newNode = curNode.prev();
|
|
|
|
while (
|
|
newNode &&
|
|
newNode.prev() &&
|
|
(newNode.getType() === ASTNode.types.NEXT ||
|
|
newNode.getType() === ASTNode.types.BLOCK)
|
|
) {
|
|
newNode = newNode.prev();
|
|
}
|
|
|
|
if (newNode) {
|
|
this.setCurNode(newNode);
|
|
}
|
|
return newNode;
|
|
}
|
|
|
|
/**
|
|
* Find the out connection, field, or block.
|
|
*
|
|
* @returns The out element, or null if the current node is not set or there
|
|
* is no out value.
|
|
*/
|
|
out(): ASTNode | null {
|
|
const curNode = this.getCurNode();
|
|
if (!curNode) {
|
|
return null;
|
|
}
|
|
let newNode = curNode.out();
|
|
|
|
if (newNode && newNode.getType() === ASTNode.types.BLOCK) {
|
|
newNode = newNode.prev() || newNode;
|
|
}
|
|
|
|
if (newNode) {
|
|
this.setCurNode(newNode);
|
|
}
|
|
return newNode;
|
|
}
|
|
}
|
|
|
|
registry.register(registry.Type.CURSOR, registry.DEFAULT, Cursor);
|