Giter Club home page Giter Club logo

Comments (3)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024
update with type conversion.

language:

Blockly.Language.text_prompt = {
  // Prompt statement.
  category: 'Text',
  helpUrl: 'http://www.liv.ac.uk/HPC/HTMLF90Course/HTMLF90CourseNotesnode92.html',
  init: function() {
    this.setColour(160);
    this.appendTitle('read');
    var menu = new Blockly.FieldDropdown(this.OPERATORS);
    this.appendTitle(menu, 'TYPE');
    this.appendInput('', Blockly.INPUT_VALUE, 'TEXT');
    this.setOutput(true);
    this.setTooltip('Prompt for user input with the specified text.');
  }
};

Blockly.Language.text_prompt.OPERATORS =
    [['string', 'STRING'], ['integer', 'INTEGER']];


python generator:

Blockly.Python.text_prompt = function() {
  // prompt a user input dialog.
  var mode = this.getTitleValue('TYPE');
  console.log(mode);
  var operator = Blockly.Python.text_prompt.OPERATORS[mode];
  var argument0 = Blockly.Python.valueToCode(this, 'TEXT', true) || '\'\'';
  return operator+'(raw_input(' + argument0 + '));\n';
};

Blockly.Python.text_prompt.OPERATORS = {
  STRING: 'str',
  INTEGER: 'int'
};

Original comment by gasolin on 16 Jun 2012 at 8:02

from blockly.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024
Issue 29 has been merged into this issue.

Original comment by gasolin on 16 Jun 2012 at 8:06

from blockly.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 12, 2024
Done in r260 and r261.

Modal I/O is a terrible UI experience.  As such, Print and Prompt should be 
treated as emergency functions.  Any real environment would have much better 
I/O APIs.  But they are still very useful for debugging and "Hello World" 
applications.

Since this is an emergency debugging function, I've converted the prompt 
message input into an inline field.  This is simpler and sufficient most of the 
time.  If one really wants a dynamically customizable message field, then one 
should probably be using a better API.

Type conversion functions are also something we need, but I've folded them into 
this block, again for convenience.

The use of window.prompt in Dart is questionable.  It will only work in a 
browser, not in the command-line version.  Likewise there's a complicated 
asynchronous readLine version that only works in the command-line version and 
not the browser.

Original comment by [email protected] on 19 Jun 2012 at 1:01

  • Changed state: Fixed

from blockly.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.