Bridgetown Lit Renderer
This Bridgetown plugin provides you with an easy-to-use pipeline for SSR + hydration of Lit components. Create "islands" of interactivity using Lit-based web components which are fully supported in all major browsers, and take full advantage of scoped component styling via the shadow DOM.
Documentation
The official documentation is now available on the Bridgetown website.
Installation
Starting in Bridgetown v1.1, you can install this plugin via a bundled configuration:
$ bin/bridgetown configure lit
For a manual installation overview (Bridgetown 1.2+):
Run this command to add this plugin to your site's Gemfile, along with JavaScript packages for Lit and SSR support:
$ bundle add bridgetown-lit-renderer
$ yarn add lit bridgetown-lit-renderer
Then add the initializer to your configuration in config/initializers.rb
:
init :"bridgetown-lit-renderer"
(For Bridgetown 1.1 or earlier, read these instructions.)
Create a file in config/lit-ssr.config.js
with the following:
const build = require("bridgetown-lit-renderer/build")
const { plugins } = require("./esbuild-plugins.js")
const esbuildOptions = { plugins }
build(esbuildOptions)
and config/esbuild-plugins.js
:
// You can add esbuild plugins here you wish to share between the frontend bundles and Lit SSR:
module.exports = {
plugins: []
}
and if you're using esbuild for your Bridgetown site, modify `esbuild.config.js``:
// at the top of your file:
const { plugins } = require("./config/esbuild-plugins.js")
const esbuildOptions = {
// other options
plugins: [...plugins]
}
To ensure all .lit.js
/.lit.js.rb
files in your src/_components
are automatically made available to the Lit SSR process, create the following config/lit-components-entry.js
file:
import components from "bridgetownComponents/**/*.{lit.js,lit.js.rb}"
Now add the following to the top of your frontend/javascript/index.js
file:
import "bridgetown-lit-renderer"
(It's very important this comes before loading any other JavaScript code which might make use of Lit, such as the Bridgetown Quick Search plugin.)
Technical and Performance Considerations
The Bridgetown Lit render helper works by compiling your entry point together with your code block via esbuild and caching the resulting JS snippet. A second pass combines your data
with the snippet and executes it via a temporary "sidecar" Node server which utilizes Lit's SSR rendering pipeline.
This for performance reasons. If you have added a Lit template to a layout used by, say, a thousand products, your first build will indeed execute Lit SSR for those thousand products, but thereafter it will be cached. If you change the data for one product, such as a price, Lit SSR will reexecute only for that one product. In addition, for a data-only change the previously compiled JS snippet via esbuild won't need to be recompiled. Of course if you also modify either the HTML markup within the helper block or the entry point itself, recompilation must take place.
It's also recommended you don't include any Ruby template code within the helper code block (e.g., using <%= %>
tags) which results in constantly changing output, as that would necessitate recompiling with esbuild on a regular basis.
In v2.0 of this plugin, we only persist these caches during the build process and then the cache is cleared. To cache in a way which persists on-disk for use across builds, you can add enable_lit_caching: true
to your Bridgetown config. For instance, if you're mainly working on content or other aspects of the site and not directly modifying Lit component code, you'll gain back some build performance by enabling full caching.
In summary—with a bit of careful planning of which entry point(s) you create, the data you provide, and the structure of your HTML markup within the lit
helper, you can achieve good Lit SSR performance while still taking full advantage of the Ruby templates and components you know and love.
A note about Lit templates: in case you're wondering, the markup within the lit
helper is actually executed inside Lit's html
tagged template literal, and all the usual rules of Lit templates apply. It's recommended you keep the markup within the helper block brief, and let the web component itself do most of the heavy lifting.
Use only one root element. Because of how the provided hydrate-root
element works, which will wrap your markup in each lit
code block, you should only have one root element, and it should be a Lit component. For example, instead of doing this:
<%= lit do %>
<div>
<h2>Hmm...</h2>
<my-component>This doesn't seem right.</my-component>
</div>
<p>Huh.</p>
<% end %>
you should be doing this:
<%= lit do %>
<wrapper-component>
<div>
<h2>Hmm...</h2>
<my-component>This doesn't seem right.</my-component>
</div>
<p>Huh.</p>
</wrapper-component>
<% end %>
Disabling hydration? If for some reason you can't permit a hydrate-root
element to wrap a Lit code block, you can pass a hydrate_root: false
argument to the lit
helper. This breaks hydration however, and likewise the Declarative Shadow DOM (DSD) polyfill won't be loaded. (Currently DSD is only supported natively in Chromium-based browsers such as Chrome, Edge, and Brave.) It will thus be up to you to manage those features as you see fit.
Testing
- Run
bundle exec rake test
to run the test suite - Or run
script/cibuild
to validate with Rubocop and Minitest together.
Contributing
- Fork it (https://github.com/bridgetownrb/bridgetown-lit-renderer/fork)
- Clone the fork using
git clone
to your local development machine. - Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request