Uploaded image for project: 'Apache Tez'
  1. Apache Tez
  2. TEZ-3472

Tez UI: Building UI is displaying some messages from broccoli-babel-transpiler

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Minor
    • Resolution: Unresolved
    • None
    • None
    • None

    Description

      Would be better if the following messages are not displayed.

      Building..broccoli-babel-transpiler is opting out of caching due to a plugin that does not provide a caching strategy: `function (babel) {
          var t = babel.types;
      
          var replaceNodeWithPrecompiledTemplate = function(node, template) {
            var compiledTemplateString = "Ember.HTMLBars.template(" + precompile(template) + ")";
      
            // Prefer calling replaceWithSourceString if it is present.
            // this prevents a deprecation warning in Babel 5.6.7+.
            //
            // TODO: delete the fallback once we only support babel >= 5.6.7.
            if (node.replaceWithSourceString) {
              node.replaceWithSourceString(compiledTemplateString);
            } else {
              return compiledTemplateString;
            }
          }
      
      
          return new babel.Transformer('htmlbars-inline-precompile', {
            ImportDeclaration: function(node, parent, scope, file) {
              if (t.isLiteral(node.source, { value: "htmlbars-inline-precompile" })) {
                var first = node.specifiers && node.specifiers[0];
                if (t.isImportDefaultSpecifier(first)) {
                  file.importSpecifier = first.local.name;
                } else {
                  var input = file.code;
                  var usedImportStatement = input.slice(node.start, node.end);
                  var msg = "Only `import hbs from 'htmlbars-inline-precompile'` is supported. You used: `" + usedImportStatement + "`";
                  throw file.errorWithNode(node, msg);
                }
      
                // Prefer calling dangerouslyRemove instead of remove (if present) to
                // suppress a deprecation warning.
                //
                // TODO: delete the fallback once we only support babel >= 5.5.0.
                if (typeof this.dangerouslyRemove === 'function') {
                  this.dangerouslyRemove();
                } else {
                  this.remove();
                }
              }
            },
      
            CallExpression: function(node, parent, scope, file) {
              if (t.isIdentifier(node.callee, { name: file.importSpecifier })) {
                var argumentErrorMsg = "hbs should be invoked with a single argument: the template string";
                if (node.arguments.length !== 1) {
                  throw file.errorWithNode(node, argumentErrorMsg);
                }
      
                var template = node.arguments[0].value;
                if (typeof template !== "string") {
                  throw file.errorWithNode(node, argumentErrorMsg);
                }
      
                return replaceNodeWithPrecompiledTemplate(this, template);
              }
            },
      
            TaggedTemplateExpression: function(node, parent, scope, file) {
              if (t.isIdentifier(node.tag, { name: file.importSpecifier })) {
                if (node.quasi.expressions.length) {
                  throw file.errorWithNode(node, "placeholders inside a tagged template string are not supported");
                }
      
                var template = node.quasi.quasis.map(function(quasi) {
                  return quasi.value.cooked;
                }).join("");
      
                return replaceNodeWithPrecompiledTemplate(this, template);
              }
            }
          });
        }`.
      

      Attachments

        Activity

          People

            Unassigned Unassigned
            Sreenath Sreenath Somarajapuram
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: