= Hypermedia In Action
:chapter: 8
:sectnums:
:figure-caption: Figure {chapter}.
:listing-caption: Listing {chapter}.
:table-caption: Table {chapter}.
:sectnumoffset: 7
// line above: :sectnumoffset: 7 (chapter# minus 1)
:leveloffset: 1
:sourcedir: ../code/src
:source-language:
= Client Side Scripting
This chapter covers
* How scripting can be effectively added to a Hypermedia Driven Application
* Adding a javascript-based confirmation dialog for deleting contacts
// js
* Adding a three-dot menu in our contacts table
// alpine
* Adding a keyboard shortcut for focusing the search input
// hyperscript
* Adding support for re-ordering contacts via drag-and-drop
// off the shelf
[partintro]
== Scripting in Hypermedia-Driven Applications
"REST allows client functionality to be extended by downloading and executing code in the form of applets or scripts. This simplifies clients by reducing the number of features required to be pre-implemented."
-- Roy Fielding, Architectural Styles and the Design of Network-based Software Architectures
Thus far we have avoided writing any JavaScript for Contact.app, mainly because the functionality we implemented so far does not need it. Contrary to popular belief, hypermedia is not just for "documents" (where a document is considered essentially different to an "app"), and it has many affordances for building interactive experiences. We want to show that it is possible to build sophisticated web applications using the original model of the web without the abstractions provided by JavaScript frameworks. On the other hand, htmx itself is written in JavaScript, and we don't want our message to be interpreted as "JavaScript bad", or, more generally, "Client-side scripting bad."
image::htmx-loves-javascript.png[]
Scripting has been a massive multiplier of the Web's capabilities. Through its use, Web application authors are not only able to enhance their hypertext-based websites, but also create full-fledged client-side applications that can compete with native apps in how they work (although they don't always win when they do).
In other terms, the Web became a distribution medium for non-REST apps in addition to being a RESTful system.
So the question isn't "Should we be scripting for the web?" but rather "How should we be scripting for the web?"
Scripting, when it's used as a replacement for the RESTful architecture provided by the Web, is extremely useful in Hypermedia Driven Applications. We discuss what this means in much greater detail in an appendix, but the practical implications for HDA developers is that if
* The main data format exchanged between server of client is hypermedia, the same as it would be in an application with no scripting,
* Client-side state (other than the DOM) is minimized,
then you are scripting in a way compatible with HDAs.
This style of scripting requires us to different practices than what is usually recommended for JavaScript, as the most common advice often comes from a server or SPA context. We will see these practices in action in the upcoming chapter.
However, listing "best practices" is rarely convincing or edifying (and often boring). So, we instead frame them around shiny tools that work well for scripting in a HDA. We will use each of these tools to add a feature to ContactApp:
* An overflow menu to hold the _Edit_, _View_ and _Delete_ actions, to clean up visual clutter in our list of contacts
* Reordering contacts by dragging and dropping
* A dialog to confirm the deletion of contacts
* A keyboard shortcut for focusing the search box
The important idea in the implementation of each of these features is that they are entirely client-side and don't exchange information with the server using, for example, JSON. This is what will keep them all within the bounds of a proper Hypermedia Driven Application.
== Scripting languages for the Web
The primary scripting language for the web is, of course, JavaScript, which is ubiquitous in web development today. A bit of interesting internet lore, however, is that JavaScript was not always the only built-in option. As the quote from Roy Fielding above indicates, _applets_ written in other languages such as Java were considered part of the scripting infrastructure of the web. In addition, there was a brief period when Internet Explorer supported VBScript, a scripting language based on Visual Basic.
Today, we have a variety of _transcompilers_ (often shortened to _transpilers_) that convert another language to JavaScript, such as TypeScript, Dart, Kotlin, ClojureScript, F#. There is also the WebAssembly bytecode format, which is supported as a compilation target for C, Rust, and the WASM-specific language AssemblyScript. However, most of these are not geared towards an HDA-compatible style of scripting --- compile-to-JS languages are paired with SPA-oriented libraries, and WASM is mainly geared toward linking to existing C/C++ libraries from JavaScript.
I bring this up because we are going to look at three different mechanisms for adding scripting to our Hypermedia Driven Application:
* VanillaJS, that is, using JavaScript itself, without relying on any library support
* AlpineJS, a javascript library for adding behavior directly in the HTML
* _hyperscript, a non-JavaScript scripting language that we created to complement htmx. Like AlpineJS, it is embedded
directly in the HTML.
Let's take a quick look at each of these scripting options so we know what we are dealing with. As with CSS, we are not going to deep dive into any of these options: we are going to show just enough to give you a flavor of each and, we hope, spark your interest in looking into each of them more extensively.
=== Vanilla JavaScript
[quote]
No code is faster than no code.
Vanilla JavaScript is simply using JavaScript in your application without any intermediate layers. The term came into vogue as a play on the fact that there were so many ".js" frameworks out there to help you write JavaScript. As JavaScript matured as a scripting language, standardized across browsers and provided more and more functionality, the utility of many of these frameworks and libraries has diminished.(At the same time, however, SPAs became more popular, requiring better frameworks).
A quote from the humorous website http://vanilla-js.com captures the situation well:
[quote, http://vanilla-js.com]
____
Vanilla JS is the lowest-overhead, most comprehensive framework I've ever used.
____
The message of _VanillaJS_ here is that since the browser already has JavaScript baked into it, there isn't any need to download a framework for your application to function. This is often true and especially so in HDAs as hypermedia obviates many features provided by frameworks:
* Client-side routing
* An abstraction over DOM manipulation, i.e.: templates that automatically update when referenced variables change
* Server side rendering (rendering here refers to HTML generation)
* Attaching dynamic behavior to server-rendered tags on load
* Network requests
Installation of VanillaJS couldn't be easier: you don't have to. You can just start writing JavaScript in your web application and it will simply work.
That's the good news. The bad news is that JavaScript has some limitations as a scripting language that often make it less than ideal as a stand-alone scripting technology for Hypermedia Driven Applications:
* It is a relatively complex language that has accreted a lot of features and warts.
* Its model for asynchrony involves _colored functions_, a concept described by Robert Nystrom in his oft-cited blog article _What Color is Your Function?_
footnote:[https://journal.stuffwithstuff.com/2015/02/01/what-color-is-your-function/]
* It is surprisingly clunky to work with events in the language
* DOM APIs (a large portion of which were originally designed for Java)
are verbose and do not make common functionality easy to use
None of these are deal breakers, of course, and many people prefer the "close to the metal" (for lack of a better term) nature of vanilla JavaScript to more elaborate client-side scripting approaches.
As our "hello world" example to showcase each of our scripting options, let's write a counter footnote:[The counter is a common example widget for UI development tools, a trend that seems so have been started by React. İt's unclear if the "counterexample" pun was intentional.]. It will have a number and a button that increments the number. Nothing too elaborate, but it will give you the flavor of each of the three scripting approaches we are going to use in this chapter.
We have a problem, however, as one of the things frameworks provide is still missing: a standardized code style. This is not an insurmountable problem, and in fact a great opportunity to take a small journey through various styles, starting with the simplest thing possible.
.Counter in vanilla JavaScript, inline version
[source,html]
----
<1>
----
<1> Our output element has an ID to help us find it
<2> We use the `onclick` attribute, a brittle but quick way to add an event listener
<3> Find the output
<4> JavaScript lets us use the `++` operator on a string because it loves us
So, not too bad. It's a little annoying that we needed to add an `id` to the span to make this work and `document.querySelector` is a bit verbose compared to, say, `$` but (but!) it works and it doesn't require any other JavaScript libraries.
A more "standard" way to write the above would be to put the above in a separate file, either linked via a `
----
You can also install it from npm, or vendor it from your own server.
The main interface of Alpine is a set of HTML attributes, the main one of which is `x-data`. The content of `x-data` is a JavaScript expression which evaluates to an object, whose properties we can access in the element. For our counter, the only state is the current number, so let's create an object with one property:
.Counter with Alpine, line 1
[source,html]
----
----
We've defined our state, let's actually use it:
.Counter with Alpine, lines 1-2
[source,html,highlight=2..2]
----
<1>
----
<1> The `x-text` attribute.
This attribute sets the text content of an element to a given expression. Notice that we can access the data of a parent element.
To attach event listeners, we use `x-on`:
.Counter with Alpine, the full thing
[source,html,highlight=4..4]
----
<1>
----
<1> With `x-on`, we specify the attribute in the attribute _name_.
Would you look at that, we're done already! (It's almost as though we wrote a trivial example). What we created is, incidentally, nearly identical to the second code example in Alpine's documentation --- available at https://alpinejs.dev/start-here[].
==== `x-on:click` vs. `onclick`
The `x-on:click` attribute (or its shorthand `@click`) differs from the browser built-in `onclick` attribute in significant ways that make it much more useful:
* You can listen for events from other elements. For example, the `.outside` modifier lets you listen to any click event that is **not** within the element.
* You can use other modifiers to
** throttle or debounce event listeners,
** ignore events that are bubbled up from descendant elements, or
** attach passive listeners.
* You can listen to custom events, such as those dispatched by htmx.
==== Reactivity and templating
As you can see, this code is much tighter than the VanillaJS implementation. It helps that AlpineJS supports a notion
of variables, allowing you to bind the visibility of the `span` element to a variable that both it and the button
can access. Alpine allows for much more elaborate data bindings as well, it is an excellent general purpose client-side
scripting library.
==== Alpine in action: an overflow menu
An overflow menu only has one bit of state: whether it is open.
[source,html]
----
----
<1> Define the initial state
<2> We'll hook this button up to open and close our menu
While we have only one bit of state, we have many parts that depend on it. This is where _reactivity_ shines:
[source,html]
----
----
<1> Declare that this button will cause a menu to open,
<2> and that the menu that this button _controls_ is the one with ID `contents`
<3> Indicate the current open state of the menu, using x-bind to reference our data
<4> Only show the menu if it is open
<5> Add an ID to the menu, so that we can reference it in the aria-controls attribute
This is based on the https://www.w3.org/WAI/ARIA/apg/patterns/menubutton/[Menu Button] example from the cite:[ARIA Authoring Practices Guide]. We haven't made the menu work yet, just the button that opens it.
The use `x-bind` means that as we change the open state, the `aria-expanded` attribute will update to match. The same holds for the `x-show` on the div with the contents, and indeed for most of Alpine. In order to see this in action, let's actually change that state:
.HTML ID Soup
****
TODO: talk about HTML ID soup
****
[source,html]
----
----
<1> Toggle the open state when the button is clicked
<2> Dismiss the menu by clicking away
You should be able to open the menu now, and may be tempted to ship this code to production. Don't! We're not done because our menu fails many requirements for menu interactions:
* It does not have the `menu` or `menuitem` roles applied properly, which makes life harder for users of assistive software
* You can't navigate between menu items using arrow keys
* You can't activate a menu item with the Space key
These factors make our menu annoying and even unusable for many people. Let's fix it with the guidance of the venerable cite:[ARIA Authoring Practices Guide]:
[source,html]
----
----
<1> Put the `menu` role on the menu root
<2> Move focus to the previous element when the up arrow key is pressed
<3> Move focus to the next element when the down arrow key is pressed
<4> Click the currently focused element when the space key is pressed
<5> Access the div itself through the Alpine-supplied `$el` variable
<6> Focus the first item when `show` changes
<7> Handle the remaining cases that Alpine doesn't have modifiers for
<8> Put the `menuitem` role on the individual items
<9> Make the menu items non-tabbable
`x-effect` is a cool attribute that lets you perform side-effects when a piece of element state changes. It automatically detects which state is accessed in the effect.
I'm pretty sure that covers all our bases. That's a lot of code! But it's code that encodes a lot of behavior. Not to mention that we still made some assumptions to make our code shorter:
* All children are menu items with no wrappers, dividers, etc.
* There are no submenus
As we need more features, it might make more sense to use a library --- for instance, GitHub's https://github.com/github/details-menu-element[`details-menu-element`].
==== Reusable behavior in Alpine
Our menu component has a lot of attributes that will currently be repeated in every item of the table. This is hard to maintain when manually writing HTML and increases payload sizes when generating it via a template. We can rectify this using an nifty feature of the `x-bind` attribute:
[quote,"https://alpinejs.dev/directives/bind#bind-directives"]
____
x-bind allows you to bind an object of different directives and attributes to an element.
The object keys can be anything you would normally write as an attribute name in Alpine. This includes Alpine directives and modifiers, but also plain HTML attributes. The object values are either plain strings, or in the case of dynamic Alpine directives, callbacks to be evaluated by Alpine.
____
It's far easier to understand what this means after seeing the attribute in use. To begin, we create a JavaScript function which will encapsulate all of our menu's behavior:
[source,js]
----
function menu() {
return {
role: "menu",
"x-show"() { <1>
return this.open; <2>
},
"x-on:click.outside"() { this.open = false },
"x-on:keydown.up"() { document.activeElement.previousElementSibling?.focus() },
"x-on:keydown.down"() { document.activeElement.nextElementSibling?.focus() },
"x-on:keydown.space"() { document.activeElement.click() },
"x-effect"() { if (this.open) this.$el.firstElementChild().focus() },
"x-on:keydown"(event) { <3>
if (event.key === 'Home') $el.firstChild.focus()
else if (event.key === 'End') $el.lastChild.focus()
},
}
}
----
<1> JavaScript allows any string literal to be the name of an object member. This even works with classes!
<2> Values that would be globally accessible in an attribute are accessed through `this` in a function.
<3> We can clean up longer functions.
The return value is a map of attribute names to values, with Alpine attributes having functions as values instead of strings of code. We can then reference this function in HTML as follows:
[source,html]
----
----
This requires the function `menu` to be global. We can avoid that with `Alpine.data`, which is a function to make any data accessible to Alpine expressions:
[source,js]
----
Alpine.data("menu", () => {
return {
role: "menu",
"x-show"() { return this.open; },
// ...
}
})
----
Another useful tool in factoring Alpine code is calling functions in `x-data` as follows:
[source,js]
----
Alpine.data("toggleableMenu", () => ({ open: false }))
----
[source,html]
----