Sha256: d16c766a2b5ef793a3a3ec5608c4da6463339c122e96c186f2a8ca7385b996ae
Contents?: true
Size: 1.26 KB
Versions: 18
Compression:
Stored size: 1.26 KB
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), connected: this.subscriptionConnected.bind(this), disconnected: this.subscriptionDisconnected.bind(this) }) } disconnectedCallback() { disconnectStreamSource(this) if (this.subscription) this.subscription.unsubscribe() } dispatchMessageEvent(data) { const event = new MessageEvent("message", { data }) return this.dispatchEvent(event) } subscriptionConnected() { this.setAttribute("connected", "") } subscriptionDisconnected() { this.removeAttribute("connected") } get channel() { const channel = this.getAttribute("channel") const signed_stream_name = this.getAttribute("signed-stream-name") return { channel, signed_stream_name, ...snakeize({ ...this.dataset }) } } } if (customElements.get("turbo-cable-stream-source") === undefined) { customElements.define("turbo-cable-stream-source", TurboCableStreamSourceElement) }
Version data entries
18 entries across 18 versions & 2 rubygems