I'd like to write Javascript scripts for Google Apps Script using CoffeeScript, and I'm having trouble generating functions in the expected form.

Google Apps Script expects a script to contain top-level, named functions. (I may be using the wrong terminology, so I'll illustrate what I mean with examples...)

For example, this function is happily recognised by Google Apps Script:

function triggerableFunction() {
   // ...
}

... while this function is not (it will parse, but won't you won't be able to trigger it):

var nonTriggerableFunction;

nonTriggerableFunction = function() {
  // ...
};

I've found that with CoffeeScript, the closest I'm able to get is the nonTriggerableFunction form above. What's the best approach to generating a named function like triggerableFunction above?

I'm already using the 'bare' option (the -b switch), to compile without the top-level function safety wrapper.

The one project I've found on the web which combines CoffeeScript and Google App Script is Gmail GTD Bot, which appears to do this using a combination of back-ticks, and by asking the user to manually remove some lines from the resulting code. (See the end of the script, and the 'Installation' section of the README). I'm hoping for a simpler and cleaner solution.

link|improve this question

75% accept rate
feedback

2 Answers

Turns out this can be done using a single line of embedded Javascript for each function.

E.g. this CoffeeScript:

myNonTriggerableFunction = ->
  Logger.log("Hello World!")

`function myTriggerableFunction() { myNonTriggerableFunction(); }`

... will produce this JavaScript, when invoking the coffee compiler with the 'bare' option (the -b switch):

var myNonTriggerableFunction;

myNonTriggerableFunction = function() {
  return Logger.log("Hello World!");
};

function myTriggerableFunction() { myNonTriggerableFunction(); };

With the example above, Google Apps Script is able to trigger myTriggerableFunction directly.

link|improve this answer
feedback

This should give you a global named function (yes, it's a little hacky, but far less that using backticks):

# wrap in a self invoking function to capture global context
do ->
  # use a class to create named function
  class @triggerableFunction
    # the constructor is invoked at instantiation, this should be the function body
    constructor: (arg1, arg2) ->
      # whatever
link|improve this answer
That doesn't seem to generate a global named function. This is what it produces, when using the -b switch: (function() { return this.triggerableFunction = (function() { function triggerableFunction(arg1, arg2) {} return triggerableFunction; })(); })(); – mattbh Jan 30 at 22:22
Did you run the code in a browser ? The function is global because it is attached to the global context. And it is named : triggerableFunction.name === "triggerableFunction". Of course, it does not generate a function statement, but I believe that is not what was asked. – Adrien Jan 31 at 9:36
The code ran within the Google Apps Script engine rather than a browser. I was indeed asking how to generate a function statement, which the Google Apps Script engine seems to require. The workaround used by 'gmail-gtd-bot' (using back-ticks) worked for me. – mattbh Apr 3 at 22:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.