+ -
Notes for current slide
Notes for next slide

Database-Driven Apps with Bridgetown, Roda, Hotwire Turbo, and Lifeform

(or How I Learned to Love CRUD All Over Again)

1 / 37

Here’s What We’ll Talk About

  1. Target Audience
  2. Why Roda?
  3. ActiveRecord? Outside of Rails?!
  4. Turbo? Outside of Rails?!
  5. What’s Lifeform?
  6. DEMO TIME
  7. Q & A

Presented by Jared White on Monday, November 7, 2022

2 / 37

The Bridgetown Web App framework

Bridgetown

But why? For whom?

3 / 37

Who are we competing with?

4 / 37

Who are we competing with?

Ruby on Rails

🤡

5 / 37

No.

Bugs Bunny says NO

6 / 37

Bridgetown Competitors:

7 / 37

Bridgetown Competitors:

  • Gatsby
8 / 37

Bridgetown Competitors:

  • Gatsby
  • Astro
9 / 37

Bridgetown Competitors:

  • Gatsby
  • Astro
  • Eleventy
10 / 37

Bridgetown Competitors:

  • Gatsby
  • Astro
  • Eleventy
  • Next
11 / 37

Bridgetown Competitors:

  • Gatsby
  • Astro
  • Eleventy
  • Next
  • Nuxt
12 / 37

Bridgetown Competitors:

  • Gatsby
  • Astro
  • Eleventy
  • Next
  • Nuxt
  • SvelteKit
13 / 37

Bridgetown Competitors:

  • Gatsby
  • Astro
  • Eleventy
  • Next
  • Nuxt
  • SvelteKit
  • (And on and on and on it goes…)
14 / 37

Attack of the Clones JS Frameworks

Frameworks

15 / 37

Web Developer Just Starting Out:

A New Man, Apparently Free

Apparently Free! 😎

16 / 37

After Your 30th Framework/Build Tool/Hosting Infra/etc.…

Not Free

We’re not here because we’re free…
we’re here because we’re NOT free!

17 / 37

Just Say No to Yak Shaving. 😂

Yak Intensifies

18 / 37

Bridgetown:
YARF (Yet Another Ruby Framework)

Bridgetown

Gotta compete with YAJSF, amirite? 🥸

19 / 37

But, like, this is a big problem.

We need a solution which presents a compelling alternative to the frontend-themed YAJSF explosion.

Rails/Hanami/Jekyll/Middleman/etc. ain’t it.

20 / 37

“I built a site using Astro and that was cool and all, but…I really love Ruby. Can I use Bridgetown?”

21 / 37

“I built a site using Astro and that was cool and all, but…I really love Ruby. Can I use Bridgetown?”

YES!
👍

22 / 37

Bridgetown: SSG & SSR

SSR is Powered by Roda

  • The Routing Tree Web Toolkit, created by Jeremy Evans
  • Simplicity: Roda is designed to be simple, both internally and externally, reducing cognitive overhead.
  • Usability: Roda uses a routing tree. At any point during routing, it allows you to operate on the current request.
  • Productivity: Roda makes it easy to develop applications quickly.
23 / 37

Roda route blocks:

class App < Roda
route do |r|
# /hello branch
r.on "hello" do
# Set variable for all routes in /hello branch
@greeting = 'Hello'
# GET /hello/world request
r.get "world" do
"#{@greeting} world!"
end
# /hello request
r.is do
# GET /hello request
r.get do
"#{@greeting}!"
end
# POST /hello request
r.post do
@name = r.params["name"]
puts "#{@greeting} #{@name}!"
r.redirect
end
end
end
end
end
24 / 37

Bridgetown provides an “opinionated distribution” of Roda

With some extra features. Most notably:
File-Based Routing

_routes/items/index.erb
_routes/items/[slug].erb
_routes/books/[slug]/chapter/[chapter].erb
25 / 37

Roda + Bridgetown in action

_routes/items/[slug].erb

---<%
# route: /items/:slug
r.get do
item_id, *item_sku = params[:slug].split("-")
item_sku = item_sku.join("-")
render_with data: {
layout: :page,
title: "Item Page",
item_id: item_id,
item_sku: item_sku
}
end
%>---
<p><strong>Item ID:</strong> <%= data.item_id %></p>
<p><strong>Item SKU:</strong> <%= data.item_sku %></p>
26 / 37

Roda + Bridgetown in action

_routes/items/[slug].erb

---<% # <== This looks like front matter!
# route: /items/:slug
r.get do
item_id, *item_sku = params[:slug].split("-")
item_sku = item_sku.join("-")
render_with data: { # <== This provides data to the template below
layout: :page,
title: "Item Page",
item_id: item_id,
item_sku: item_sku
}
end
%>---
<p><strong>Item ID:</strong> <%= data.item_id %></p> <== Roda data var
<p><strong>Item SKU:</strong> <%= data.item_sku %></p> <== Roda data var
27 / 37

You’ll see Roda in action in the upcoming DEMO.

Next: key plugins to aid your CRUD, starting with:

28 / 37

Active Record

29 / 37

(Primarily Stream responses running over HTTP.)

P.S. Custom Actions are the bees’ knees.

30 / 37

🧬 Lifeform

A new form component library in development, powered by Phlex. Compatible with both Bridgetown and Rails (replacing all previous form helpers).

Define forms as objects using a simple DSL, then render those forms potentially as one-liners. Never wrestle with horrible form template markup again! 🙌

31 / 37

🧬 Lifeform in action:

class Forms::Movie < Lifeform::Form
field :title,
label: "Title (required)",
required: true,
autofocus: true
field :year,
label: "Year (required)",
required: true
field :director,
label: "Director"
field :submit, type: :submit_button, label: "Save"
end
<%= render Forms::Movie.new(data.movie) %>
32 / 37

🧬 Lifeform features

  • Mix 'n' match fields from various component libraries. Will ship with a "default" vanilla one and one for Shoelace.
  • Easily write your own field types using Phlex templates.
  • Framework-agnostic: not only Bridgetown or Rails, but potentially any Ruby web framework.
  • If you need more rendering flexibility than the "one-liner", you can render any field out individually in any order and even override specific options.
33 / 37

🤘 DEMO TIME 🤘

Bridgetown Logo

34 / 37

Bridgetown SSR / CRUD

  • Progressively enhance your static/public content with all the extra bits.

    • Forms
    • E-commerce
    • Paywalls
    • Dashboards
    • Digital Products
    • Anything which doesn't map cleanly to static builds.
  • See how far you can push this stack before reaching for “The Big Kahuna” (Rails?)

  • You can always rewrite your backend later and still use Bridgetown for the frontend. I know this because Jekyll + Rails installs used to be my jam!
35 / 37

The Bridgetown Web App framework

Bridgetown

Open for business in 2022, 2023, and beyond.

36 / 37

Questions?

Bridgetown Logo

www.bridgetownrb.com

37 / 37

Here’s What We’ll Talk About

  1. Target Audience
  2. Why Roda?
  3. ActiveRecord? Outside of Rails?!
  4. Turbo? Outside of Rails?!
  5. What’s Lifeform?
  6. DEMO TIME
  7. Q & A

Presented by Jared White on Monday, November 7, 2022

2 / 37
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
s Start & Stop the presentation timer
t Reset the presentation timer
?, h Toggle this help
Esc Back to slideshow