123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- /**
- * @license
- * Visual Blocks Editor
- *
- * Copyright 2012 Google Inc.
- * https://blockly.googlecode.com/
- *
- * 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 Text Area field.
- * @author fraser@google.com (Neil Fraser)
- * @author Andrew Mee
- * @author acbart@vt.edu (Austin Cory Bart)
- */
- 'use strict';
- goog.provide('Blockly.FieldTextArea');
- goog.require('Blockly.Field');
- goog.require('Blockly.Msg');
- goog.require('goog.asserts');
- goog.require('goog.dom');
- goog.require('goog.userAgent');
- /**
- * Class for an editable text field.
- * @param {string} text The initial content of the field.
- * @param {Function} opt_changeHandler An optional function that is called
- * to validate any constraints on what the user entered. Takes the new
- * text as an argument and returns either the accepted text, a replacement
- * text, or null to abort the change.
- * @extends {Blockly.Field}
- * @constructor
- */
- Blockly.FieldTextArea = function(text, opt_changeHandler) {
- Blockly.FieldTextArea.superClass_.constructor.call(this, text);
- this.changeHandler_ = opt_changeHandler;
- };
- goog.inherits(Blockly.FieldTextArea, Blockly.Field);
- /**
- * Point size of text. Should match blocklyText's font-size in CSS.
- */
- Blockly.FieldTextArea.FONTSIZE = 11;
- /**
- * Clone this FieldTextArea.
- * @return {!Blockly.FieldTextArea} The result of calling the constructor again
- * with the current values of the arguments used during construction.
- */
- Blockly.FieldTextArea.prototype.clone = function() {
- return new Blockly.FieldTextArea(this.getText(), this.changeHandler_);
- };
- /**
- * Mouse cursor style when over the hotspot that initiates the editor.
- */
- Blockly.FieldTextArea.prototype.CURSOR = 'text';
- /**
- * Allow browser to spellcheck this field.
- * @private
- */
- Blockly.FieldTextArea.prototype.spellcheck_ = true;
- /**
- * Close the input widget if this input is being deleted.
- */
- Blockly.FieldTextArea.prototype.dispose = function() {
- Blockly.WidgetDiv.hideIfOwner(this);
- Blockly.FieldTextArea.superClass_.dispose.call(this);
- };
- /**
- * Set the text in this field.
- * @param {?string} text New text.
- * @override
- */
- Blockly.FieldTextArea.prototype.setText = function(text) {
- if (text === null) {
- // No change if null.
- return;
- }
- var oldText = this.text_;
- if (this.sourceBlock_ && this.changeHandler_) {
- var validated = this.changeHandler_(text);
- // If the new text is invalid, validation returns null.
- // In this case we still want to display the illegal result.
- if (validated !== null && validated !== undefined) {
- text = validated;
- }
- }
- //Blockly.Field.prototype.setText.call(this, text);
- if (text === null || text === this.text_) {
- // No change if null.
- return;
- }
- this.text_ = text;
- this.updateTextNode_();
- if (this.sourceBlock_ && this.sourceBlock_.rendered) {
- this.sourceBlock_.render();
- this.sourceBlock_.bumpNeighbours_();
- Blockly.Events.fire(new Blockly.Events.Change(this.sourceBlock_, 'field', this.name, oldText, text));
- //this.sourceBlock_.workspace.fireChangeEvent();
- }
- };
- /**
- * Update the text node of this field to display the current text.
- * @private
- */
- Blockly.FieldTextArea.prototype.updateTextNode_ = function() {
- if (!this.textElement_) {
- // Not rendered yet.
- return;
- }
- this.textElement_.setAttribute('class', 'blocklyText blocklyTextCode');
- var text = this.text_;
- // Empty the text element.
- if (this.textElement_ !== undefined) {
- goog.dom.removeChildren(/** @type {!Element} */ (this.textElement_));
- }
- // Replace whitespace with non-breaking spaces so the text doesn't collapse.
-
- if (Blockly.RTL && text) {
- // The SVG is LTR, force text to be RTL.
- text += '\u200F';
- }
- if (!text) {
- // Prevent the field from disappearing if empty.
- text = Blockly.Field.NBSP;
- }
- //text = text.replace(/\s/g, Blockly.Field.NBSP);
- var y=12.5 + 2; // Hack to fix placement
- var that=this;
- //var textNode = document.createTextNode(text);
- text.split(/\n/).map(function(textline){
- textline = textline.replace(/\s/g, Blockly.Field.NBSP);
- var tspan = Blockly.createSvgElement('tspan', {x:0,y:y}, that.textElement_);
- var textNode = document.createTextNode(textline);
- tspan.appendChild(textNode);
- y+=20;
- });
- // Cached width is obsolete. Clear it.
- this.size_.width = 0;
-
- var that = this;
- this.fixAfterLoad = setTimeout(function() {
- that.render_();
- if (this.sourceBlock_ && this.sourceBlock_.rendered) {
- that.sourceBlock_.render();
- }
- }, 0);
- };
- /**
- * Draws the border with the correct width.
- * Saves the computed width in a property.
- * @private
- */
- Blockly.FieldTextArea.prototype.render_ = function() {
- if (!this.visible_ || !this.textElement_) {
- return;
- }
- try {
- this.size_.width = this.textElement_.getBBox().width + 5;
- } catch (e) {
- this.size_.width = this.textElement_.textContent.length*8 + 5;
- }
- this.size_.height= (this.text_.split(/\n/).length ||1)*20 + (Blockly.BlockSvg.SEP_SPACE_Y+5) ;
- if (this.borderRect_) {
- this.borderRect_.setAttribute('width',
- this.size_.width + Blockly.BlockSvg.SEP_SPACE_X);
- this.borderRect_.setAttribute('height',
- this.size_.height - (Blockly.BlockSvg.SEP_SPACE_Y+5));
- }
- };
-
- /**
- * Show the inline free-text editor on top of the text.
- * @param {boolean=} opt_quietInput True if editor should be created without
- * focus. Defaults to false.
- * @private
- */
- Blockly.FieldTextArea.prototype.showEditor_ = function(opt_quietInput) {
- var quietInput = opt_quietInput || false;
- if (!quietInput && (goog.userAgent.MOBILE || goog.userAgent.ANDROID ||
- goog.userAgent.IPAD)) {
- // Mobile browsers have issues with in-line textareas (focus & keyboards).
- var newValue = window.prompt(Blockly.Msg.CHANGE_VALUE_TITLE, this.text_);
- if (this.changeHandler_) {
- var override = this.changeHandler_(newValue);
- if (override !== undefined) {
- newValue = override;
- }
- }
- if (newValue !== null) {
- this.setText(newValue);
- }
- return;
- }
- Blockly.WidgetDiv.show(this, this.sourceBlock_.RTL, this.widgetDispose_());
- var div = Blockly.WidgetDiv.DIV;
- // Create the input.
- var htmlInput = goog.dom.createDom('textarea', 'blocklyHtmlInput');
- var fontSize = (Blockly.FieldTextArea.FONTSIZE *this.sourceBlock_.workspace.scale) + 'pt';
- div.style.fontSize = fontSize;
- htmlInput.style.fontSize = fontSize;
- htmlInput.style.fontFamily = 'monospace';
- htmlInput.setAttribute('spellcheck', this.spellcheck_);
- Blockly.FieldTextArea.htmlInput_ = htmlInput;
- htmlInput.style.resize = 'none';
- htmlInput.style['line-height'] = '20px';
- htmlInput.style['overflow'] = 'hidden';
- htmlInput.style.height = '100%';//this.size_.height - Blockly.BlockSvg.SEP_SPACE_Y + 'px';
- div.appendChild(htmlInput);
- htmlInput.value = htmlInput.defaultValue = this.text_;
- htmlInput.oldValue_ = null;
- this.validate_();
- this.resizeEditor_();
- if (!quietInput) {
- htmlInput.focus();
- htmlInput.select();
- }
- // Bind to keydown -- trap Enter without IME and Esc to hide.
- htmlInput.onKeyDownWrapper_ =
- Blockly.bindEvent_(htmlInput, 'keydown', this, this.onHtmlInputKeyDown_);
- // Bind to keyup -- trap Enter; resize after every keystroke.
- // Bind to keyup -- trap Enter and Esc; resize after every keystroke.
- htmlInput.onKeyUpWrapper_ =
- Blockly.bindEvent_(htmlInput, 'keyup', this, this.onHtmlInputChange_);
- // Bind to keyPress -- repeatedly resize when holding down a key.
- htmlInput.onKeyPressWrapper_ =
- Blockly.bindEvent_(htmlInput, 'keypress', this, this.onHtmlInputChange_);
- var workspaceSvg = this.sourceBlock_.workspace.getCanvas();
-
- htmlInput.onWorkspaceChangeWrapper_ = this.resizeEditor_.bind(this);
- this.sourceBlock_.workspace.addChangeListener(htmlInput.onWorkspaceChangeWrapper_);
- };
- /**
- * Handle key down to the editor.
- * @param {!Event} e Keyboard event.
- * @private
- */
- Blockly.FieldTextArea.prototype.onHtmlInputKeyDown_ = function(e) {
- var htmlInput = Blockly.FieldTextArea.htmlInput_;
- var escKey = 27;
- if (e.keyCode == escKey) {
- this.setText(htmlInput.defaultValue);
- Blockly.WidgetDiv.hide();
- }
- };
- /**
- * Handle a change to the editor.
- * @param {!Event} e Keyboard event.
- * @private
- */
- Blockly.FieldTextArea.prototype.onHtmlInputChange_ = function(e) {
- var htmlInput = Blockly.FieldTextArea.htmlInput_;
- var escKey = 27;
- if (e.keyCode == escKey) {
- // Esc
- this.setText(htmlInput.defaultValue);
- Blockly.WidgetDiv.hide();
- } else {
- // Update source block.
- var text = htmlInput.value;
- if (text !== htmlInput.oldValue_) {
- htmlInput.oldValue_ = text;
- this.setText(text);
- this.validate_();
- } else if (goog.userAgent.WEBKIT) {
- // Cursor key. Render the source block to show the caret moving.
- // Chrome only (version 26, OS X).
- this.sourceBlock_.render();
- }
- this.resizeEditor_();
- }
- };
- /**
- * Check to see if the contents of the editor validates.
- * Style the editor accordingly.
- * @private
- */
- Blockly.FieldTextArea.prototype.validate_ = function() {
- var valid = true;
- goog.asserts.assertObject(Blockly.FieldTextArea.htmlInput_);
- var htmlInput = /** @type {!Element} */ (Blockly.FieldTextArea.htmlInput_);
- if (this.changeHandler_) {
- valid = this.changeHandler_(htmlInput.value);
- }
- if (valid === null) {
- Blockly.addClass_(htmlInput, 'blocklyInvalidInput');
- } else {
- Blockly.removeClass_(htmlInput, 'blocklyInvalidInput');
- }
- };
- /**
- * Resize the editor and the underlying block to fit the text.
- * @private
- */
- Blockly.FieldTextArea.prototype.resizeEditor_ = function() {
- var div = Blockly.WidgetDiv.DIV;
- var bBox = this.fieldGroup_.getBBox();
- var htmlInput = Blockly.FieldTextArea.htmlInput_;
- //div.style.width = bBox.width + 'px';
- if (htmlInput.clientHeight < htmlInput.scrollHeight) {
- div.style.width = (bBox.width * this.sourceBlock_.workspace.scale) + 'px';
- } else {
- div.style.width = bBox.width * this.sourceBlock_.workspace.scale + 'px';
- }
- div.style.height = bBox.height * this.sourceBlock_.workspace.scale + 'px';
- // Position the editor
- var xy = this.getAbsoluteXY_();
- // In RTL mode block fields and LTR input fields the left edge moves,
- // whereas the right edge is fixed. Reposition the editor.
- if (this.sourceBlock_.RTL) {
- var borderBBox = this.getScaledBBox_();
- xy.x += borderBBox.width;
- xy.x -= div.offsetWidth;
- }
- // Shift by a few pixels to line up exactly.
- xy.y += 1;
- if (goog.userAgent.GECKO && Blockly.WidgetDiv.DIV.style.top) {
- // Firefox mis-reports the location of the border by a pixel
- // once the WidgetDiv is moved into position.
- xy.x -= 1;
- xy.y -= 1;
- }
- if (goog.userAgent.WEBKIT) {
- xy.y -= 3;
- }
- div.style.left = xy.x + 'px';
- div.style.top = xy.y + 'px';
- };
- /**
- * Close the editor, save the results, and dispose of the editable
- * text field's elements.
- * @return {!Function} Closure to call on destruction of the WidgetDiv.
- * @private
- */
- Blockly.FieldTextArea.prototype.widgetDispose_ = function() {
- var thisField = this;
- return function() {
- var htmlInput = Blockly.FieldTextArea.htmlInput_;
- // Save the edit (if it validates).
- var text = htmlInput.value;
- if (thisField.changeHandler_) {
- text = thisField.changeHandler_(text);
- if (text === null) {
- // Invalid edit.
- text = htmlInput.defaultValue;
- }
- }
- thisField.setText(text);
- thisField.sourceBlock_.rendered && thisField.sourceBlock_.render();
- Blockly.unbindEvent_(htmlInput.onKeyUpWrapper_);
- Blockly.unbindEvent_(htmlInput.onKeyPressWrapper_);
- thisField.sourceBlock_.workspace.removeChangeListener(htmlInput.onWorkspaceChangeWrapper_);
- Blockly.FieldTextArea.htmlInput_ = null;
- // Delete the width property.
- var style = Blockly.WidgetDiv.DIV.style;
- style.width = 'auto';
- style.height = 'auto';
- style.fontSize = '';
- };
- };
|