Sha256: 5d24a90b8c3caf7012eb3627012a443abbb150ad448b754a42642a785d0c8e7e
Contents?: true
Size: 939 Bytes
Versions: 5
Compression:
Stored size: 939 Bytes
Contents
import { connectStreamSource, disconnectStreamSource } from "@hotwired/turbo" import { subscribeTo } from "./cable" import snakeize from "./snakeize" class TurboCableStreamSourceElement extends HTMLElement { async connectedCallback() { connectStreamSource(this) this.subscription = await subscribeTo(this.channel, { received: this.dispatchMessageEvent.bind(this) }) } disconnectedCallback() { disconnectStreamSource(this) if (this.subscription) this.subscription.unsubscribe() } dispatchMessageEvent(data) { const event = new MessageEvent("message", { data }) return this.dispatchEvent(event) } get channel() { const channel = this.getAttribute("channel") const signed_stream_name = this.getAttribute("signed-stream-name") return { channel, signed_stream_name, ...snakeize({ ...this.dataset }) } } } customElements.define("turbo-cable-stream-source", TurboCableStreamSourceElement)
Version data entries
5 entries across 5 versions & 1 rubygems