Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use in Google Apps Scripts a defined Class in a library with ES6 (V8)?

I'm trying to use a class defined in a library but I only receive an error as a result.

[LibraryProject]/library/model/Update.gs

class Update {
  constructor(obj = {}) {
    if(typeof obj == "string"){
      options = JSON.parse(obj);
    }
    Object.assign(this, obj);
  }

  text(){
    return (this.message && this.message.text)?this.message.text:''
  }
}

TASKS

✅ Create a new version of the project. (File > Manage versions...)

✅ Load this library in another project [Alias: CustomService] (Resources > Libraries...)

✅ Use functions of CustomService

❌ Use class of CustomService

If I try to use a Class

[NormalProject]/index.gs

function test  (){
  Logger.log(CustomService.libraryFunction())
  var update = new CustomService.Update("");
  Logger.log(update)
}

TypeError: CustomService.Update is not a constructor (línea 3, archivo "Code")

How can I instantiate an Object of this Class?

If I run...

In the image we can see the code and the error

Logger

We can see the two Logs, using function correctly and error when try to use Class constructir

like image 255
raultm Avatar asked Dec 18 '22 14:12

raultm


1 Answers

As written in the official documentation,

Only the following properties in the script are available to library users:

  • enumerable global properties
    • function declarations,
    • variables created outside a function with var, and
    • properties explicitly set on the global object.

This would mean every property in the global this object are available to library users.

Before ES6, All declarations outside a function (and function declaration themselves) were properties of this global object. After ES6, There are two kinds of global records:

  • Object record- Same as ES5.

    • Function declarations
    • Function generators
    • Variable assignments
  • Declarative record - New

    • Everything else - let, const, class

Those in the declarative record are not accessible from the global "object", though they are globals themselves. Thus, the class declaration in the library is not accessible to library users. You could simply add a variable assignment to the class to add a property to the global object(outside any function):

var Update = class Update{/*your code here*/}

References:

  • Library official documentation
  • Global environment records
  • Related Answers:
    • ES6- What about introspection
    • Do let statements create properties on the global object
like image 116
TheMaster Avatar answered Dec 28 '22 06:12

TheMaster