dexiecable
v0.1.8
Published
Client-side companion for the DexieCable Ruby gem. Receives Dexie.js mutations from ActionCable and replays them against a local IndexedDB database.
Readme
DexieCable
Read the blog post introducing DexieCable
DexieCable augments ActionCable channels with a query DSL that mirrors the Dexie.js API, letting you push database mutations from the server to the client in real time. It also gives you a syncs_to_dexie ActiveRecord macro for automatic change syncing.
You can run any Dexie table update directly inside a channel:
class UserChannel < ApplicationCable::Channel
include DexieCable
def subscribed
stream_for current_user
recent_notifications = current_user.notifications.last(10)
table("notifications").bulkAdd(recent_notifications)
end
endOr from inside a controller:
class NotificationsController < ApplicationController
def create
notification = current_user.notifications.create!(notification_params)
UserChannel[current_user].table("notifications").add(notification)
end
endAn even more convenient way is to use the syncs_to_dexie macro (more info below)
class Notification < ApplicationRecord
syncs_to_dexie via: UserChannel, to: :user
endInstallation
Ruby gem
Add to your Gemfile:
gem "dexiecable"Then bundle install. The Railtie automatically extends ActiveRecord::Base with syncs_to_dexie.
npm package
npm install dexiecable
# or
yarn add dexiecablePass your Dexie database as the first argument to subscribe():
import { subscribe } from "dexiecable";
import { db } from "./db";
subscribe(db, "UserChannel");A consumer is lazily created on the first subscribe() call. If you need to access or set the consumer explicitly, use getConsumer() and setConsumer():
import { getConsumer, setConsumer, createConsumer } from "dexiecable";
// Get the consumer (creates one lazily if needed)
const consumer = getConsumer();
// Or set a custom one
setConsumer(createConsumer("wss://example.com/cable"));Usage
include DexieCable in a channel
class UserChannel < ApplicationCable::Channel
include DexieCable
def subscribed
stream_for current_user
end
endThis gives you:
| Method | Description |
|---|---|
| self.[](to) | Returns a ScopedChannel bound to a recipient. UserChannel[current_user] |
| table(name) | Starts a query chain. table("messages") |
Chaining Dexie operations
Any Dexie.js write operation triggers an immediate broadcast:
# Single insert
UserChannel[current_user].table("messages").add(id: 1, text: "hello")
# Bulk insert
UserChannel[current_user].table("messages").bulkAdd(messages)
# Update (using modify)
UserChannel[current_user]
.table("messages")
.where(:id).equals(msg.id)
.modify(read: true)
# Update (using update)
UserChannel[current_user]
.table("messages")
.update(msg.id, text: "updated text")
# Delete
UserChannel[current_user]
.table("messages")
.where(:room_id).equals(room.id)
.delete()The full query chain is serialized as JSON and sent over ActionCable. The JS client replays every method call against the local Dexie database in order.
syncs_to_dexie — automatic model syncing
Add to any ActiveRecord model. Just provide the channel class and the broadcast target.
class Message < ApplicationRecord
# Calls send(:receiver), then broadcasts: UserChannel.broadcast_to(receiver, ...)
syncs_to_dexie via: UserChannel, to: :receiver
# String used directly: UserChannel.broadcast_to("global_feed", ...)
syncs_to_dexie via: UserChannel, to: "global_feed"
# Procs are also supported. If an array is returned, multiple broadcasts are made
# conversation.users.each { |u| UserChannel.broadcast_to(u, ...) }
syncs_to_dexie via: UserChannel, to: -> { conversation.users }
endInternally, syncs_to_dexie sets up the following ActiveRecord callbacks:
| Event | Action |
|---|---|
| after_commit on: :create | channel.table(table).add(record.as_json_for_dexie) |
| after_commit on: :update | channel.table(table).put(record.as_json_for_dexie) |
| after_commit on: :destroy | channel.table(table).delete(record.id) |
Options
| Option | Default | Description |
|---|---|---|
| via: | (required) | A DexieCable channel class |
| to: | (none) | The stream target passed to broadcast_to. Symbol → calls send. String → used as-is. Proc → evaluated in record context. Returns a single recipient or collection. |
| table: | model's table_name | Override the Dexie table name. A Proc is evaluated in the record's context. |
| only: | [:create, :update, :destroy] | Limit which events trigger a sync |
| if: | (none) | Symbol (method name) or Proc — only sync when it returns truthy |
| unless: | (none) | Symbol (method name) or Proc — skip sync when it returns truthy |
You can combine multiple syncs_to_dexie declarations, each with different conditions:
class Message < ApplicationRecord
syncs_to_dexie via: UserChannel, to: -> { sender },
if: :published?
syncs_to_dexie via: AdminChannel,
unless: -> { draft? }
endCustomizing the synced payload
Override as_json_for_dexie in your model:
class Message < ApplicationRecord
syncs_to_dexie via: UserChannel, to: :sender
def as_json_for_dexie
super.merge(room_name: room.name)
end
endHow it works
sequenceDiagram
participant Model as ActiveRecord Model
participant Channel as DexieCable Channel
participant WS as ActionCable WebSocket
participant JS as dexiecable.js
participant DB as Dexie.js (IndexedDB)
Model->>Channel: after_commit
Channel->>Channel: build Query DSL
Channel->>WS: broadcast JSON { table, ops }
WS->>JS: received(data)
JS->>DB: replay ops chain
DB-->>JS: resultThe Ruby side builds a JSON payload like:
{
"table": "messages",
"ops": [
{ "method": "where", "params": ["room_id"] },
{ "method": "equals", "params": [5] },
{ "method": "add", "params": [{ "id": 1, "text": "hello" }] }
]
}The JS side replays it as:
dexie.messages.where("room_id").equals(5).add({ id: 1, text: "hello" })Recipies
Syncing missed records on reconnection
A common pattern to avoid data loss during transient disconnections is using sequence IDs to bridge the offline gap. When a connection drops, updates continue on the server. Sending the client’s latest known sequence ID upon reconnect allows the backend to query and stream only the records missed while offline.
To enable this, DexieCable ships its own version of the ActionCable client with one key extension: channel params can be functions. When a param value is a function, it is called and awaited at subscribe time — use this to submit the latest known sequence ID on connection:
import { createConsumer } from "dexiecable";
import { getLastMessageId } from './database';
const consumer = createConsumer();
consumer.subscriptions.create(
{
channel: "ChatChannel",
room_id: 123,
seq_id: getLastMessageId // evaluated fresh on each reconnect
}
);Send missed messages on reconnection:
class ChatChannel < ApplicationChannel:Base
def subscribed
stream_from "chat:#{params[:room_id]}"
missed_messages = room.messages.where("seq_id > ?", params[:seq_id])
table("messages").bulkAdd(missed_messages)
end
endYou might want to have look at the Sequenced gem to automatically add sequence IDs to your records.
Multi-user environments
In multi-user or multi-tenant applications, you can isolate records by binding different subscription channels to separate Dexie database instances. This prevents local data leaks between user accounts and keeps private user data separate from public or shared feeds.
import Dexie from 'dexie'
import { subscribe } from 'dexiecable'
const userDB = new Dexie("user_"+userId)
const sharedDB = new Dexie("shared")
subscribe(userDB, 'UserChannel')
subscribe(sharedDB, 'PublicChannel')
License
MIT
