123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- 'use strict';
- goog.provide('Blockly.Warning');
- goog.require('Blockly.Bubble');
- goog.require('Blockly.Icon');
- Blockly.Warning = function(block) {
- Blockly.Warning.superClass_.constructor.call(this, block);
- this.createIcon();
-
- this.text_ = {};
- };
- goog.inherits(Blockly.Warning, Blockly.Icon);
- Blockly.Warning.prototype.collapseHidden = false;
- Blockly.Warning.prototype.drawIcon_ = function(group) {
-
- Blockly.createSvgElement('path',
- {'class': 'blocklyIconShape',
- 'd': 'M2,15Q-1,15 0.5,12L6.5,1.7Q8,-1 9.5,1.7L15.5,12Q17,15 14,15z'},
- group);
-
-
-
- Blockly.createSvgElement('path',
- {'class': 'blocklyIconSymbol',
- 'd': 'm7,4.8v3.16l0.27,2.27h1.46l0.27,-2.27v-3.16z'},
- group);
-
- Blockly.createSvgElement('rect',
- {'class': 'blocklyIconSymbol',
- 'x': '7', 'y': '11', 'height': '2', 'width': '2'},
- group);
- };
- Blockly.Warning.textToDom_ = function(text) {
- var paragraph = (
- Blockly.createSvgElement('text',
- {'class': 'blocklyText blocklyBubbleText',
- 'y': Blockly.Bubble.BORDER_WIDTH},
- null));
- var lines = text.split('\n');
- for (var i = 0; i < lines.length; i++) {
- var tspanElement = Blockly.createSvgElement('tspan',
- {'dy': '1em', 'x': Blockly.Bubble.BORDER_WIDTH}, paragraph);
- var textNode = document.createTextNode(lines[i]);
- tspanElement.appendChild(textNode);
- }
- return paragraph;
- };
- Blockly.Warning.prototype.setVisible = function(visible) {
- if (visible == this.isVisible()) {
-
- return;
- }
- Blockly.Events.fire(
- new Blockly.Events.Ui(this.block_, 'warningOpen', !visible, visible));
- if (visible) {
-
- var paragraph = Blockly.Warning.textToDom_(this.getText());
- this.bubble_ = new Blockly.Bubble(
- (this.block_.workspace),
- paragraph, this.block_.svgPath_, this.iconXY_, null, null);
- if (this.block_.RTL) {
-
-
- var maxWidth = paragraph.getBBox().width;
- for (var i = 0, textElement; textElement = paragraph.childNodes[i]; i++) {
- textElement.setAttribute('text-anchor', 'end');
- textElement.setAttribute('x', maxWidth + Blockly.Bubble.BORDER_WIDTH);
- }
- }
- this.updateColour();
-
- var size = this.bubble_.getBubbleSize();
- this.bubble_.setBubbleSize(size.width, size.height);
- } else {
-
- this.bubble_.dispose();
- this.bubble_ = null;
- this.body_ = null;
- }
- };
- Blockly.Warning.prototype.bodyFocus_ = function(e) {
- this.bubble_.promote_();
- };
- Blockly.Warning.prototype.setText = function(text, id) {
- if (this.text_[id] == text) {
- return;
- }
- if (text) {
- this.text_[id] = text;
- } else {
- delete this.text_[id];
- }
- if (this.isVisible()) {
- this.setVisible(false);
- this.setVisible(true);
- }
- };
- Blockly.Warning.prototype.getText = function() {
- var allWarnings = [];
- for (var id in this.text_) {
- allWarnings.push(this.text_[id]);
- }
- return allWarnings.join('\n');
- };
- Blockly.Warning.prototype.dispose = function() {
- this.block_.warning = null;
- Blockly.Icon.prototype.dispose.call(this);
- };
|