By default, Scala.js classes, objects, methods and properties are not availableto JavaScript. Entities that have to be accessed from JavaScript must beannotated explicitly as exported, using @JSExportTopLevel
and @JSExport
.
A simple example
package example
import scala.scalajs.js.annotation._
@JSExportTopLevel("HelloWorld")
object HelloWorld {
@JSExport
def sayHello(): Unit = {
println("Hello world!")
}
}
This allows to call the sayHello()
method of HelloWorld
like this inJavaScript:
HelloWorld.sayHello();
The @JSExportTopLevel
on HelloWorld
exports the object HelloWorld
itselfin the JavaScript global scope. It is however not sufficient to allow JavaScriptto call methods of HelloWorld
. This is why we also have to export themethod sayHello()
with @JSExport
.
In general, things that should be exported on the top-level, such as top-levelobjects and classes, are exported with @JSExportTopLevel
, while things thatshould be exported as properties or methods in JavaScript are exported with@JSExport
.
Exporting top-level objects
Put on a top-level object, the @JSExportTopLevel
annotation exports thatobject to the JavaScript global scope. The name under which it is to be exportedmust be specified as an argument to @JSExportTopLevel
.
@JSExportTopLevel("HelloWorld")
object HelloWorld {
...
}
exports the HelloWorld
object in JavaScript.
Pre 0.6.15 note: Before Scala.js 0.6.15, objects were exported as 0-argumentfunctions using @JSExport
, rather than directly with @JSExportTopLevel
. Thisis deprecated in 0.6.x, and not supported anymore in Scala.js 1.x.
Exporting under a namespace (deprecated)
Note: Deprecated since Scala.js 0.6.26, and not supported anymore in Scala.js 1.x.
The export name can contain dots, in which case the exported object is namespaced in JavaScript.For example,
@JSExportTopLevel("myapp.foo.MainObject")
object HelloWorld {
...
}
will be accessible in JavaScript using myapp.foo.MainObject
.
Exporting classes
The @JSExportTopLevel
annotation can also be used to export Scala.js classesto JavaScript (but not traits), or, to be more precise, their constructors. Thisallows JavaScript code to create instances of the class.
@JSExportTopLevel("Foo")
class Foo(val x: Int) {
override def toString(): String = s"Foo($x)"
}
exposes Foo
as a constructor function to JavaScript:
var foo = new Foo(3);
console.log(foo.toString());
will log the string "Foo(3)"
to the console. This particular example worksbecause it calls toString()
, which is always exported to JavaScript. Othermethods must be exported explicitly as shown in the next section.
Pre 0.6.15 note: Before Scala.js 0.6.15, classes were exported using@JSExport
instead of @JSExportTopLevel
, with the same meaning. This isdeprecated in 0.6.x, and not supported anymore in Scala.js 1.x.
Exports with modules
When emitting a module for Scala.js code, top-level exports are not sent to the JavaScript global scope.Instead, they are genuinely exported from the module.In that case, an @JSExportTopLevel
annotation has the semantics of an ECMAScript 2015 export.For example:
@JSExportTopLevel("Bar")
class Foo(val x: Int)
is semantically equivalent to this JavaScript export:
export { Foo as Bar };
Exporting methods
Similarly to objects, methods of Scala classes, traits and objects can beexported with @JSExport
. Unlike for @JSExportTopLevel
, the name argument isoptional for @JSExport
, and defaults to the Scala name of the method.
class Foo(val x: Int) {
@JSExport
def square(): Int = x*x // note the (), omitting them has a different behavior
@JSExport("foobar")
def add(y: Int): Int = x+y
}
Given this definition, and some variable foo
holding an instance of Foo
,you can call:
console.log(foo.square());
console.log(foo.foobar(5));
// console.log(foo.add(3)); // TypeError, add is not a member of foo
Overloading
Several methods can be exported with the same JavaScript name (either becausethey have the same name in Scala, or because they have the same explicitJavaScript name as parameter of @JSExport
). In that case, run-time overloadresolution will decide which method to call depending on the number and run-timetypes of arguments passed to the the method.
For example, given these definitions:
class Foo(val x: Int) {
@JSExport
def foobar(): Int = x
@JSExport
def foobar(y: Int): Int = x+y
@JSExport("foobar")
def bar(b: Boolean): Int = if (b) 0 else x
}
the following calls will dispatch to each of the three methods:
console.log(foo.foobar());
console.log(foo.foobar(5));
console.log(foo.foobar(false));
If the Scala.js compiler cannot produce a dispatching code capable of reliablydisambiguating overloads, it will issue a compile error (with a somewhat crypticmessage):
class Foo(val x: Int) {
@JSExport
def foobar(): Int = x
@JSExport
def foobar(y: Int): Int = x+y
@JSExport("foobar")
def bar(i: Int): Int = if (i == 0) 0 else x
}
gives:
[error] HelloWorld.scala:16: double definition:
[error] method $js$exported$meth$foobar:(i: Int)Any and
[error] method $js$exported$meth$foobar:(y: Int)Any at line 14
[error] have same type
[error] @JSExport("foobar")
[error] ^
[error] one error found
Hint to recognize this error: the methods are named $js$exported$meth$
followed by the JavaScript export name.
Exporting for call with named parameters (deprecated)
Note: Since Scala.js 0.6.11, @JSExportNamed
is deprecated, and is not supported anymore in Scala.js 1.x.Refer to the Scaladoc for migration tips.
It is customary in Scala to call methods with named parameters if this eases understanding of the code or if many arguments with default values are present:
def foo(x: Int = 1, y: Int = 2, z: Int = 3) = ???
foo(y = 3, x = 2)
A rough equivalent in JavaScript is to pass an object with the respective properties:
foo({
y: 3,
x: 2
});
The @JSExportNamed
annotation allows to export Scala methods for use in JavaScript with named parameters:
class A {
@JSExportNamed
def foo(x: Int, y: Int = 2, z: Int = 3) = ???
}
Note that default parameters are not required. foo
can then be called like this:
var a = // ...
a.foo({
y: 3,
x: 2
});
Not specifying x
in this case will fail at runtime (since it does not have a default value).
Just like @JSExport
, @JSExportNamed
takes the name of the exported method as an optional argument.
Exporting top-level methods
While an @JSExport
ed method inside an @JSExportTopLevel
object allows JavaScript code to call a “static” method,it does not feel like a top-level function from JavaScript’s point of view.@JSExportTopLevel
can also be used directory on a method of a top-levelobject, which exports the method as a truly top-level function:
object A {
@JSExportTopLevel("foo")
def foo(x: Int): Int = x + 1
}
can be called from JavaScript as:
const y = foo(5);
Exporting properties
val
s, var
s and def
s without parentheses, as well as def
s whose nameends with _=
, have a single argument and Unit
result type, areexported to JavaScript as properties with getters and/or settersusing, again, the @JSExport
annotation.
Given this weird definition of a halfway mutable point:
@JSExport
class Point(_x: Double, _y: Double) {
@JSExport
val x: Double = _x
@JSExport
var y: Double = _y
@JSExport
def abs: Double = Math.sqrt(x*x + y*y)
@JSExport
def sum: Double = x + y
@JSExport
def sum_=(v: Double): Unit = y = v - x
}
JavaScript code can use the properties as follows:
var point = new Point(4, 10)
console.log(point.x); // 4
console.log(point.y); // 10
point.y = 20;
console.log(point.y); // 20
point.x = 1; // does nothing, thanks JS semantics
console.log(point.x); // still 4
console.log(point.abs); // 20.396078054371138
console.log(point.sum); // 24
point.sum = 30;
console.log(point.sum); // 30
console.log(point.y); // 26
As usual, explicit names can be given to @JSExport
. For def
setters, theJS name must be specified without the trailing _=
.
def
setters must have a result type of Unit
and exactly one parameter. Notethat several def
setters with different types for their argument can beexported under a single, overloaded JavaScript name.
In case you overload properties in a way the compiler cannotdisambiguate, the methods in the error messages will be prefixed by$js$exported$prop$
.
Export fields directly declared in constructors
If you want to export fields that are directly declared in a class constructor, you’ll have to use the @field
meta annotation to avoid annotating the constructor arguments (exporting an argument is nonsensical and will fail):
import scala.annotation.meta.field
class Point(
@(JSExport @field) val x: Double,
@(JSExport @field) val y: Double)
// Also applies to case classes
case class Point(
@(JSExport @field) x: Double,
@(JSExport @field) y: Double)
Export fields to the top level
Similarly to methods, fields (val
s and var
s) of top-level objects can beexported as top-level variables using @JSExportTopLevel
:
object Foo {
@JSExportTopLevel("bar")
val bar = 42
@JSExportTopLevel("foobar")
var foobar = "hello"
}
exports bar
and foobar
to the top-level, so that they can be used fromJavaScript as
console.log(bar); // 42
console.log(foobar); // "hello"
Note that for var
s, the JavaScript binding is read-only, i.e., JavaScriptcode cannot assign a new value to an exported var
. However, if Scala.js codesets Foo.foobar
, the new value will be visible from JavaScript. This isconsistent with exporting a let
binding in ECMAScript 2015 modules.
Automatically export all members
Instead of writing @JSExport
on every member of a class or object, you may use the @JSExportAll
annotation. It is equivalent to adding @JSExport
on every public (term) member directly declared in the class/object:
class A {
def mul(x: Int, y: Int): Int = x * y
}
@JSExportAll
class B(val a: Int) extends A {
def sum(x: Int, y: Int): Int = x + y
}
This is strictly equivalent to writing:
class A {
def mul(x: Int, y: Int): Int = x * y
}
class B(@(JSExport @field) val a: Int) extends A {
@JSExport
def sum(x: Int, y: Int): Int = x + y
}
It is important to note that this does not export inherited members. If you wish to do so, you’ll have to override them explicitly:
class A {
def mul(x: Int, y: Int): Int = x * y
}
@JSExportAll
class B(val a: Int) extends A {
override def mul(x: Int, y: Int): Int = super.mul(x,y)
def sum(x: Int, y: Int): Int = x + y
}
Deprecated: Automatically exporting descendent objects or classes
Pre 0.6.15 note: Before Scala.js 0.6.15, this deprecated feature used to beoften used to “reflectively” instantiate classes and load objects. This use casehas been replaced by thescala.scalajs.reflect.Reflect
API.This feature is not supported anymore in Scala.js 1.x.
When applied to a class or trait, @JSExportDescendentObjects
causes allobjects extending it to be automatically exported as 0-arg functions, undertheir fully qualified name. For example:
package foo.test
@JSExportDescendentObjects
trait Test {
@JSExport
def test(param: String): Unit
}
// automatically exported as foo.test.Test1
object Test1 extends Test {
// exported through inheritance
def test(param: String): Unit = {
println(param)
}
}
can be used from JavaScript as:
foo.test.Test1().test("hello"); // note the () in Test1()
Similarly, @JSExportDescendentClasses
causes all non-abstract classesthe annotated class or trait to be exported under their fully qualified name.