mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
* feat(generators): Add block generator function dictionary Add a dictionary of block generator functions, provisionally called .forBlock. Look up generator functions there first, but fall back to looking up on 'this' (with deprecation notice) for backwards compatibility. Also tweak error message generation to use template literal. * refactor(generators)!: Update generator definitions to use dictionary * fix(tests): Have blockToCodeTest clean up after itself Have the blockToCodeTest helper function delete the block generator functions it adds to generator once the test is done. * refactor(tests): Use generator dictionary in insertion marker test The use of generators in insertion_marker_test.js was overlooked in the earlier commit making such updates, and some test here were failing due to lack of cleanup in cleanup in the generator_test.js. BREAKING CHANGE: this PR moves the generator functions we provide from their previous location directly on the CodeGenerator instances to the new .forBlock dictionary on each instance. This does not oblige external developers to do the same for their custom generators, but they will need to update any code that references the generator functions we provide (in generators/*/*, i.e. on javascriptGenerator, dartGenerator etc.) e.g. to replace the implementation or reuse the implementation for a different block type.
339 lines
11 KiB
JavaScript
339 lines
11 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2014 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Generating Dart for text blocks.
|
|
*/
|
|
|
|
import * as goog from '../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.Dart.texts');
|
|
|
|
import {NameType} from '../../core/names.js';
|
|
import {dartGenerator as Dart} from '../dart.js';
|
|
|
|
|
|
Dart.addReservedWords('Html,Math');
|
|
|
|
Dart.forBlock['text'] = function(block) {
|
|
// Text value.
|
|
const code = Dart.quote_(block.getFieldValue('TEXT'));
|
|
return [code, Dart.ORDER_ATOMIC];
|
|
};
|
|
|
|
Dart.forBlock['text_multiline'] = function(block) {
|
|
// Text value.
|
|
const code = Dart.multiline_quote_(block.getFieldValue('TEXT'));
|
|
const order =
|
|
code.indexOf('+') !== -1 ? Dart.ORDER_ADDITIVE : Dart.ORDER_ATOMIC;
|
|
return [code, order];
|
|
};
|
|
|
|
Dart.forBlock['text_join'] = function(block) {
|
|
// Create a string made up of any number of elements of any type.
|
|
switch (block.itemCount_) {
|
|
case 0:
|
|
return ["''", Dart.ORDER_ATOMIC];
|
|
case 1: {
|
|
const element =
|
|
Dart.valueToCode(block, 'ADD0', Dart.ORDER_UNARY_POSTFIX) || "''";
|
|
const code = element + '.toString()';
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
}
|
|
default: {
|
|
const elements = new Array(block.itemCount_);
|
|
for (let i = 0; i < block.itemCount_; i++) {
|
|
elements[i] =
|
|
Dart.valueToCode(block, 'ADD' + i, Dart.ORDER_NONE) || "''";
|
|
}
|
|
const code = '[' + elements.join(',') + '].join()';
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
}
|
|
}
|
|
};
|
|
|
|
Dart.forBlock['text_append'] = function(block) {
|
|
// Append to a variable in place.
|
|
const varName =
|
|
Dart.nameDB_.getName(block.getFieldValue('VAR'), NameType.VARIABLE);
|
|
const value = Dart.valueToCode(block, 'TEXT', Dart.ORDER_NONE) || "''";
|
|
return varName + ' = [' + varName + ', ' + value + '].join();\n';
|
|
};
|
|
|
|
Dart.forBlock['text_length'] = function(block) {
|
|
// String or array length.
|
|
const text =
|
|
Dart.valueToCode(block, 'VALUE', Dart.ORDER_UNARY_POSTFIX) || "''";
|
|
return [text + '.length', Dart.ORDER_UNARY_POSTFIX];
|
|
};
|
|
|
|
Dart.forBlock['text_isEmpty'] = function(block) {
|
|
// Is the string null or array empty?
|
|
const text =
|
|
Dart.valueToCode(block, 'VALUE', Dart.ORDER_UNARY_POSTFIX) || "''";
|
|
return [text + '.isEmpty', Dart.ORDER_UNARY_POSTFIX];
|
|
};
|
|
|
|
Dart.forBlock['text_indexOf'] = function(block) {
|
|
// Search the text for a substring.
|
|
const operator =
|
|
block.getFieldValue('END') === 'FIRST' ? 'indexOf' : 'lastIndexOf';
|
|
const substring = Dart.valueToCode(block, 'FIND', Dart.ORDER_NONE) || "''";
|
|
const text =
|
|
Dart.valueToCode(block, 'VALUE', Dart.ORDER_UNARY_POSTFIX) || "''";
|
|
const code = text + '.' + operator + '(' + substring + ')';
|
|
if (block.workspace.options.oneBasedIndex) {
|
|
return [code + ' + 1', Dart.ORDER_ADDITIVE];
|
|
}
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
};
|
|
|
|
Dart.forBlock['text_charAt'] = function(block) {
|
|
// Get letter at index.
|
|
// Note: Until January 2013 this block did not have the WHERE input.
|
|
const where = block.getFieldValue('WHERE') || 'FROM_START';
|
|
const textOrder = (where === 'FIRST' || where === 'FROM_START') ?
|
|
Dart.ORDER_UNARY_POSTFIX :
|
|
Dart.ORDER_NONE;
|
|
const text = Dart.valueToCode(block, 'VALUE', textOrder) || "''";
|
|
let at;
|
|
switch (where) {
|
|
case 'FIRST': {
|
|
const code = text + '[0]';
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
}
|
|
case 'FROM_START': {
|
|
at = Dart.getAdjusted(block, 'AT');
|
|
const code = text + '[' + at + ']';
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
}
|
|
case 'LAST':
|
|
at = 1;
|
|
// Fall through.
|
|
case 'FROM_END': {
|
|
at = Dart.getAdjusted(block, 'AT', 1);
|
|
const functionName = Dart.provideFunction_('text_get_from_end', `
|
|
String ${Dart.FUNCTION_NAME_PLACEHOLDER_}(String text, num x) {
|
|
return text[text.length - x];
|
|
}
|
|
`);
|
|
const code = functionName + '(' + text + ', ' + at + ')';
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
}
|
|
case 'RANDOM': {
|
|
Dart.definitions_['import_dart_math'] = 'import \'dart:math\' as Math;';
|
|
const functionName = Dart.provideFunction_('text_random_letter', `
|
|
String ${Dart.FUNCTION_NAME_PLACEHOLDER_}(String text) {
|
|
int x = new Math.Random().nextInt(text.length);
|
|
return text[x];
|
|
}
|
|
`);
|
|
const code = functionName + '(' + text + ')';
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
}
|
|
}
|
|
throw Error('Unhandled option (text_charAt).');
|
|
};
|
|
|
|
Dart.forBlock['text_getSubstring'] = function(block) {
|
|
// Get substring.
|
|
const where1 = block.getFieldValue('WHERE1');
|
|
const where2 = block.getFieldValue('WHERE2');
|
|
const requiresLengthCall = (where1 !== 'FROM_END' && where2 === 'FROM_START');
|
|
const textOrder =
|
|
requiresLengthCall ? Dart.ORDER_UNARY_POSTFIX : Dart.ORDER_NONE;
|
|
const text = Dart.valueToCode(block, 'STRING', textOrder) || "''";
|
|
let code;
|
|
if (where1 === 'FIRST' && where2 === 'LAST') {
|
|
code = text;
|
|
return [code, Dart.ORDER_NONE];
|
|
} else if (text.match(/^'?\w+'?$/) || requiresLengthCall) {
|
|
// If the text is a variable or literal or doesn't require a call for
|
|
// length, don't generate a helper function.
|
|
let at1;
|
|
switch (where1) {
|
|
case 'FROM_START':
|
|
at1 = Dart.getAdjusted(block, 'AT1');
|
|
break;
|
|
case 'FROM_END':
|
|
at1 = Dart.getAdjusted(block, 'AT1', 1, false, Dart.ORDER_ADDITIVE);
|
|
at1 = text + '.length - ' + at1;
|
|
break;
|
|
case 'FIRST':
|
|
at1 = '0';
|
|
break;
|
|
default:
|
|
throw Error('Unhandled option (text_getSubstring).');
|
|
}
|
|
let at2;
|
|
switch (where2) {
|
|
case 'FROM_START':
|
|
at2 = Dart.getAdjusted(block, 'AT2', 1);
|
|
break;
|
|
case 'FROM_END':
|
|
at2 = Dart.getAdjusted(block, 'AT2', 0, false, Dart.ORDER_ADDITIVE);
|
|
at2 = text + '.length - ' + at2;
|
|
break;
|
|
case 'LAST':
|
|
break;
|
|
default:
|
|
throw Error('Unhandled option (text_getSubstring).');
|
|
}
|
|
|
|
if (where2 === 'LAST') {
|
|
code = text + '.substring(' + at1 + ')';
|
|
} else {
|
|
code = text + '.substring(' + at1 + ', ' + at2 + ')';
|
|
}
|
|
} else {
|
|
const at1 = Dart.getAdjusted(block, 'AT1');
|
|
const at2 = Dart.getAdjusted(block, 'AT2');
|
|
const functionName = Dart.provideFunction_('text_get_substring', `
|
|
String ${Dart.FUNCTION_NAME_PLACEHOLDER_}(String text, String where1, num at1, String where2, num at2) {
|
|
int getAt(String where, num at) {
|
|
if (where == 'FROM_END') {
|
|
at = text.length - 1 - at;
|
|
} else if (where == 'FIRST') {
|
|
at = 0;
|
|
} else if (where == 'LAST') {
|
|
at = text.length - 1;
|
|
} else if (where != 'FROM_START') {
|
|
throw 'Unhandled option (text_getSubstring).';
|
|
}
|
|
return at;
|
|
}
|
|
at1 = getAt(where1, at1);
|
|
at2 = getAt(where2, at2) + 1;
|
|
return text.substring(at1, at2);
|
|
}
|
|
`);
|
|
code = functionName + '(' + text + ', \'' + where1 + '\', ' + at1 + ', \'' +
|
|
where2 + '\', ' + at2 + ')';
|
|
}
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
};
|
|
|
|
Dart.forBlock['text_changeCase'] = function(block) {
|
|
// Change capitalization.
|
|
const OPERATORS = {
|
|
'UPPERCASE': '.toUpperCase()',
|
|
'LOWERCASE': '.toLowerCase()',
|
|
'TITLECASE': null
|
|
};
|
|
const operator = OPERATORS[block.getFieldValue('CASE')];
|
|
const textOrder = operator ? Dart.ORDER_UNARY_POSTFIX : Dart.ORDER_NONE;
|
|
const text = Dart.valueToCode(block, 'TEXT', textOrder) || "''";
|
|
let code;
|
|
if (operator) {
|
|
// Upper and lower case are functions built into Dart.
|
|
code = text + operator;
|
|
} else {
|
|
// Title case is not a native Dart function. Define one.
|
|
const functionName = Dart.provideFunction_('text_toTitleCase', `
|
|
String ${Dart.FUNCTION_NAME_PLACEHOLDER_}(String str) {
|
|
RegExp exp = new RegExp(r'\\b');
|
|
List<String> list = str.split(exp);
|
|
final title = new StringBuffer();
|
|
for (String part in list) {
|
|
if (part.length > 0) {
|
|
title.write(part[0].toUpperCase());
|
|
if (part.length > 0) {
|
|
title.write(part.substring(1).toLowerCase());
|
|
}
|
|
}
|
|
}
|
|
return title.toString();
|
|
}
|
|
`);
|
|
code = functionName + '(' + text + ')';
|
|
}
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
};
|
|
|
|
Dart.forBlock['text_trim'] = function(block) {
|
|
// Trim spaces.
|
|
const OPERATORS = {
|
|
'LEFT': '.replaceFirst(new RegExp(r\'^\\s+\'), \'\')',
|
|
'RIGHT': '.replaceFirst(new RegExp(r\'\\s+$\'), \'\')',
|
|
'BOTH': '.trim()'
|
|
};
|
|
const operator = OPERATORS[block.getFieldValue('MODE')];
|
|
const text =
|
|
Dart.valueToCode(block, 'TEXT', Dart.ORDER_UNARY_POSTFIX) || "''";
|
|
return [text + operator, Dart.ORDER_UNARY_POSTFIX];
|
|
};
|
|
|
|
Dart.forBlock['text_print'] = function(block) {
|
|
// Print statement.
|
|
const msg = Dart.valueToCode(block, 'TEXT', Dart.ORDER_NONE) || "''";
|
|
return 'print(' + msg + ');\n';
|
|
};
|
|
|
|
Dart.forBlock['text_prompt_ext'] = function(block) {
|
|
// Prompt function.
|
|
Dart.definitions_['import_dart_html'] = 'import \'dart:html\' as Html;';
|
|
let msg;
|
|
if (block.getField('TEXT')) {
|
|
// Internal message.
|
|
msg = Dart.quote_(block.getFieldValue('TEXT'));
|
|
} else {
|
|
// External message.
|
|
msg = Dart.valueToCode(block, 'TEXT', Dart.ORDER_NONE) || "''";
|
|
}
|
|
let code = 'Html.window.prompt(' + msg + ', \'\')';
|
|
const toNumber = block.getFieldValue('TYPE') === 'NUMBER';
|
|
if (toNumber) {
|
|
Dart.definitions_['import_dart_math'] = 'import \'dart:math\' as Math;';
|
|
code = 'Math.parseDouble(' + code + ')';
|
|
}
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
};
|
|
|
|
Dart.forBlock['text_prompt'] = Dart.forBlock['text_prompt_ext'];
|
|
|
|
Dart.forBlock['text_count'] = function(block) {
|
|
const text = Dart.valueToCode(block, 'TEXT', Dart.ORDER_NONE) || "''";
|
|
const sub = Dart.valueToCode(block, 'SUB', Dart.ORDER_NONE) || "''";
|
|
// Substring count is not a native Dart function. Define one.
|
|
const functionName = Dart.provideFunction_('text_count', `
|
|
int ${Dart.FUNCTION_NAME_PLACEHOLDER_}(String haystack, String needle) {
|
|
if (needle.length == 0) {
|
|
return haystack.length + 1;
|
|
}
|
|
int index = 0;
|
|
int count = 0;
|
|
while (index != -1) {
|
|
index = haystack.indexOf(needle, index);
|
|
if (index != -1) {
|
|
count++;
|
|
index += needle.length;
|
|
}
|
|
}
|
|
return count;
|
|
}
|
|
`);
|
|
const code = functionName + '(' + text + ', ' + sub + ')';
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
};
|
|
|
|
Dart.forBlock['text_replace'] = function(block) {
|
|
const text =
|
|
Dart.valueToCode(block, 'TEXT', Dart.ORDER_UNARY_POSTFIX) || "''";
|
|
const from = Dart.valueToCode(block, 'FROM', Dart.ORDER_NONE) || "''";
|
|
const to = Dart.valueToCode(block, 'TO', Dart.ORDER_NONE) || "''";
|
|
const code = text + '.replaceAll(' + from + ', ' + to + ')';
|
|
return [code, Dart.ORDER_UNARY_POSTFIX];
|
|
};
|
|
|
|
Dart.forBlock['text_reverse'] = function(block) {
|
|
// There isn't a sensible way to do this in Dart. See:
|
|
// http://stackoverflow.com/a/21613700/3529104
|
|
// Implementing something is possibly better than not implementing anything?
|
|
const text =
|
|
Dart.valueToCode(block, 'TEXT', Dart.ORDER_UNARY_POSTFIX) || "''";
|
|
const code = 'new String.fromCharCodes(' + text + '.runes.toList().reversed)';
|
|
return [code, Dart.ORDER_UNARY_PREFIX];
|
|
};
|