From ES6 to Scala: Advanced
Scala is a feature rich language that is easy to learn but takes time to master. Depending on your programming background, typically you start by writing Scala as you would’ve written the language you know best (JavaScript, Java or C# for example) and gradually learn more and more idiomatic Scala paradigms to use. In this section we cover some of the more useful design patterns and features, to get you started quickly.
Pattern matching
In the Basics part we already saw simple examples of pattern matching as a replacement for JavaScript switch statement. However, it can be used for much more, for example checking the type of input.
ES6
Scala
Pattern matching uses something called partial functions which means it can be used in place of regular functions, for
example in a call to filter
or map
. You can also add a guard clause in the form of an if
, to limit the match. If
you need to match to a variable, use backticks to indicate that.
ES6
Scala
Destructuring
Where pattern matching really shines is at destructuring. This means matching to a more complex pattern and extracting values inside that structure. ES6 also supports destructuring (yay!) in assignments and function parameters, but not in matching.
ES6
Scala
In Scala the destructuring and rebuilding have nice symmetry making it easy to remember how to do it. Use _
to skip
values in destructuring.
In pattern matching the use of destructuring results in clean, simple and understandable code.
ES6
Scala
We could’ve implemented the Scala function using a filter
and foldLeft
, but it is more understandable using
collect
and pattern matching. It would be read
as “Collect every person with a last name equaling family
and extract the age of those persons. Then sum up the ages.”
Another good use case for pattern matching is regular expressions (also in ES6!). Let’s extract a date in different formats.
ES6
Scala
Here we use triple-quoted strings that allow us to write regex without escaping special characters. The string is
converted into a Regex
object with the .r
method. Because regex extracts strings, we need
to convert matched groups to integers ourselves.
Implicits
Being type safe is great in Scala, but sometimes the type system can be a bit prohibitive when you want to do something
else, like add methods to existing classes. To allow you to do this in a type safe manner, Scala provides implicits.
You can think of implicits as something that’s available in the scope when you need it, and the compiler can
automatically provide it. For example we can provide a function to automatically convert a JavaScript Date
into a Scala/Java Date
.
Scala
When these implicit conversion functions are in lexical scope, you can use JS and Scala dates interchangeably. Outside the scope they are not visible and you must use correct types or provide conversion yourself.
Implicit conversions for “monkey patching”
Monkey patching -term became famous among Ruby developers and it has been adopted into JavaScript to describe
a way of extending existing classes with new methods. It has several pitfalls in dynamic languages and is generally
not a recommended practice. Especially dangerous is to patch JavaScript’s host objects like String
or DOM.Node
. This
technique is, however, commonly used to provide support for new JavaScript functionality missing from older JS engines.
The practice is known as polyfilling or shimming.
In Scala providing extension methods via implicits is perfectly safe and even a recommended practice. Scala
standard library does it all the time. For example did you notice the .r
or .toInt
functions that were used on
strings in the regex example? Both are extension methods coming from implicit classes.
Let’s use the convertToDate
we defined before and add a toDate
extension method to String
by defining an implicit
class.
ES6
Scala
Note that the JavaScript version modifies the global String
class (dangerous!), whereas the Scala version only
introduces a conversion from String
to a custom StrToDate
class providing an additional method. Implicit classes are
safe because they are lexically scoped, meaning the StrToDate
is not available in other parts of the program unless
explicitly imported. The toDate
method is not added to the String
class in any way, instead the compiler generates
appropriate code to call it when required. Basically "2010-10-09".toDate
is converted into new
StrToDate("2010-10-09").toDate
which is then inlined/optimized (due to the use of Value Class) to
convertToDate("2010-10-09")
at the call site.
Scala IDEs are also smart enough to know what implicit extension methods are in scope and will show them to you next to the other methods.
Implicit extension methods are safe and easy to refactor. If you, say, rename or remove a method, the compiler will immediately give errors in places where you use that method. IDEs provide great tools for automatically renaming all instances when you make the change, keeping your code base operational. You can even do complex changes like add new method parameters or reorder them and the IDE can take care of the refactoring for you, safely and automatically, thanks to strict typing.
Finally we’ll make DOM’s NodeList
behave like a regular Scala collection to make it easier to work with them. Or to be
more accurate, we are extending DOMList[T]
which provides a type for the nodes. NodeList
is actually just a
DOMList[Node]
.
Scala
Defining just those three functions we now have access to all the usual collection functionality like map
, filter
,
find
, slice
, foldLeft
, etc. This makes working with NodeList
s a lot easier and safer. The implicit class makes
use of Scala generics, providing implementation for all types that extend Node
.
Scala
Futures
Writing asynchronous JavaScript code used to be painful due to the number of callbacks required to handle chained
asynchronous calls. This is affectionately known as callback hell. Then came the various Promise libraries that
alleviated this issue a lot, but were not fully compatible with each other. ES6 standardizes the Promise
interface so that all implementations (ES6’s own included) can happily coexist.
In Scala a similar concept is the Future
. On the JVM, futures can be used for both parallel
and asynchronous processing, but under Scala.js only the latter is possible. Like the Promise
a Future
is a
placeholder object for a value that may not yet exist. Both Promise
and Future
can complete successfully, providing
a value, or fail with an error/exception. Let’s look at a typical use case of fetching data from server using Ajax.
ES6
Scala
The JavaScript code above is using jQuery to provide similar helper for making Ajax calls returning promises as is available in the Scala.js DOM library.
Comparison between Scala Future
and JavaScript Promise
methods.
Future | Promise | Notes |
---|---|---|
foreach(func) | then(func) | Does not return a new promise. |
map(func) | then(func) | Return value of func is wrapped in a new promise. |
flatMap(func) | then(func) | func must return a promise. |
recover(func) | catch(func) | Handle error. Return value of func is wrapped in a new promise. |
recoverWith(func) | catch(func) | Handle error. func must return a promise. |
onComplete(func) | then(func, err) | Callback for handling both success and failure cases. |
onSuccess(func) | then(func) | Callback for handling only success cases. |
onFailure(func) | catch(func) | Callback for handling only failure cases. |
transform(func, err) | then(func, err) | Combines map and recover into a single function. |
filter(predicate) | N/A | Creates a new future by filtering the value of the current future with a predicate. |
zip(that) | N/A | Zips the values of this and that future, and creates a new future holding the tuple of their results. |
Future.successful(value) | Promise.resolve(value) | Returns a successful future containing value |
Future.failed(exception) | Promise.reject(value) | Returns a failed future containing exception |
Future.sequence(iterable) | Promise.all(iterable) | Returns a future that completes when all of the promises in the iterable argument have completes. |
Future.firstCompletedOf(iterable) | Promise.race(iterable) | Returns a future that completes as soon as one of the promises in the iterable completes. |
Futures from callbacks
Even though ES6 brought the standard promise API to browsers, all asynchronous functions still require the use of
callbacks. To convert a callback into a Future
in Scala you need to use a Promise
. Wait, what? Yes, in addition to
Future
, Scala also has a Promise
class which actually implements the Future
trait.
As an example, let’s convert the onload
event of an img
tag into a Future
.
ES6
Scala
Because image might have already loaded when we create the promise, we must check for that separately and just return a completed future in that case.
Next we’ll add an onloadF
extension method to the HTMLImageElement
class, to make it really easy to
use the futurized version.
Scala
While we are playing with DOM images, let’s create a future that completes once all the images on the page have
completed loading. Here we’ll take advantage of the NodeListSeq
extension class to provide us with the map
method
on the NodeList
returned from querySelectorAll
.