Skip to content

Commit b244955

Browse files
committed
add actioncable listening for real time events
1 parent be491c6 commit b244955

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

apps/web/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"vite": "catalog:"
2424
},
2525
"dependencies": {
26+
"@rails/actioncable": "^7.2.100",
2627
"@sentry/sveltekit": "^8.9.2",
2728
"highlight.js": "^11.10.0",
2829
"marked": "^10.0.0",

apps/web/src/routes/projects/[projectId]/branches/[branchId]/stack/[changeId]/+page.svelte

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script lang="ts">
22
import DiffPatch from '$lib/components/DiffPatch.svelte';
33
import DiffPatchArray from '$lib/components/DiffPatchArray.svelte';
4+
import { createConsumer } from '@rails/actioncable';
45
import { marked } from 'marked';
56
import { onMount } from 'svelte';
67
import Gravatar from 'svelte-gravatar';
@@ -13,12 +14,15 @@
1314
let events: any = [];
1415
let key: any = '';
1516
let uuid: any = '';
17+
let consumer;
1618
1719
export let data: any;
1820
1921
onMount(() => {
2022
key = localStorage.getItem('gb_access_token');
2123
24+
listenToChat(key);
25+
2226
let projectId = data.projectId;
2327
let branchId = data.branchId;
2428
let changeId = data.changeId;
@@ -46,6 +50,21 @@
4650
}
4751
});
4852
53+
function listenToChat(token: string) {
54+
// connect to actioncable to subscribe to chat events
55+
let wsHost = env.PUBLIC_APP_HOST.replace('http', 'ws') + 'cable';
56+
consumer = createConsumer(wsHost + '?token=' + token);
57+
consumer.subscriptions.create(
58+
{ channel: 'ChatChannel', change_id: data.changeId, project_id: data.projectId },
59+
{
60+
received(data: any) {
61+
// todo: update chat window with new message
62+
console.log('received', data);
63+
}
64+
}
65+
);
66+
}
67+
4968
function scrollToBottom() {
5069
let chatWindow = document.querySelector<HTMLElement>('.chatWindow');
5170
if (chatWindow) {

pnpm-lock.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)