Multi-User Live Updates
This article describes how to implement server-side support for the real-time updates module of DHTMLX Gantt.
Principle
DHTMLX Gantt provides the RemoteEvents helper to synchronize changes among multiple users in real time.
Key Workflow
- The
RemoteEventsclient opens a WebSocket connection when Gantt is initialized. - The User changes (the "create", "edit", or "delete" events) are sent to the server via
DataProcessorusing the REST API. - The server broadcasts updates to all connected clients via WebSocket after processing them.
- The
RemoteEventsclient receives the updates and applies them to Gantt, ensuring synchronization across users.
The design allows this backend module to support multiple DHTMLX widgets (e.g., Kanban, Gantt, Scheduler) within the same application. The shared format streamlines data synchronization without needing separate backends for each widget.
Front-End Integration
Initialize RemoteEvents and set up DataProcessor in the same section of code where Gantt data is loaded.
const AUTH_TOKEN = "token";
gantt.init("gantt_here");
gantt.parse("/data");
const dp = gantt.createDataProcessor({
url: "/data",
mode: "REST-JSON",
headers: {
"Remote-Token": AUTH_TOKEN,
},
});
const { RemoteEvents, remoteUpdates } = gantt.ext.liveUpdates;
const remoteEvents = new RemoteEvents("/api/v1", AUTH_TOKEN);
remoteEvents.on(remoteUpdates);
Key Details
- The
RemoteEventsconstructor requires an authorization token, which is sent in the "Remote-Token" header for server validation. - The first argument specifies the
WebSocketendpoint (e.g., /api/v1). - The
remoteUpdateshelper handles incomingWebSocketmessages and synchronizes Gantt data.
Backend Implementation
This section describes how to build a backend supporting live updates.
Simplified Example
To test the implementation:
- Extract and run the backend project using
npm installandnpm run startcommands. - Open the frontend example in two separate browser tabs.
- Modify a task in one tab; the changes should appear in the second tab.
Server-Side Workflow
1. Handshake Request
When instantiated, RemoteEvents sends a GET request to the server to initialize the connection.
Example:
GET /api/v1
Remote-Token: AUTH_TOKEN
Response:
{"api":{},"data":{},"websocket":true}
2. WebSocket Connection
After receiving a response, RemoteEvents establishes the websocket connection with the provided endpoint.
Example:
ws://${URL}?token=${token}&ws=1
The server verifies the token and responds with a message:
{"action":"start","body":"connectionId"}
Example implementation:
app.get('/api/v1', (req, res) => {
const token = req.headers['remote-token'];
if (!token || !verifyAuthHeader(token)) {
return res.status(403).json({ error: 'Forbidden' });
}
res.json({ api: {}, data: {}, websocket: true });
});
wss.on('connection', (ws, req) => {
const token = new URLSearchParams(req.url.split('?')[1]).get('token');
if (!token || !verifyAuthToken(token)) {
ws.close(1008, 'Unauthorized');
return;
}
const connectionId = generateConnectionId();
ws.send(JSON.stringify({ action: 'start', body: connectionId }));
});
3. Subscription
After the connection is established, the RemoteEvents subscribes to updates for specific entities, tasks and links in case of Gantt:
- for tasks
{"action":"subscribe","name":"tasks"}
- for links
{"action":"subscribe","name":"links"}
To unsubscribe:
- for tasks
{"action":"unsubscribe","name":"tasks"}
- for links
{"action":"unsubscribe","name":"links"}
This format supports scenarios where an application uses multiple DHTMLX widgets simultaneously. Each widget subscribes only to the updates relevant to its data.
Example:
ws.on('message', function(message) {
try {
const msg = JSON.parse(message);
const client = clients.get(connectionId);
if (!client) return;
if (msg.action === 'subscribe') {
client.subscriptions.add(msg.name);
} else if (msg.action === 'unsubscribe') {
client.subscriptions.delete(msg.name);
}
} catch (err) {
console.error('Error parsing WebSocket message:', err);
}
});
4. Broadcasting Updates
The server sends updates via WebSocket for changes like creating, updating, or deleting tasks and links in the format described below.
Upon receiving these messages, Gantt automatically synchronizes its data using the remoteUpdates helper.
Task Created
{"action":"event","body":{"name":"tasks",
"value":{"type":"add-task","task":TASK_OBJECT}}}
Example:
app.post("/data/task", (req, res) => {
const bodyPayload = sanitize(req.body);
const result = crud.insertTask(bodyPayload);
// Broadcast changes to connected clients
wsManager.broadcast("event", {
name: "tasks",
value: { type: "add-task", task: result.item },
});
res.status(200).json(result);
});
Task Updated
{"action":"event","body":{"name":"tasks",
"value":{"type":"update-task","task":TASK_OBJECT}}}
Example:
app.put("/data/task/:id", (req, res) => {
const id = req.params.id;
const event = sanitize(req.body);
const result = crud.updateTask(id, event);
// Broadcast changes to connected clients
wsManager.broadcast("event", {
name: "tasks",
value: { type: "update-task", task: result.item },
});
res.status(200).send(result);
});
Task Deleted
{"action":"event","body":{"name":"tasks",
"value":{"type":"delete-task","task":{"id":ID}}}}
Example:
app.delete("/data/task/:id", (req, res) => {
const id = req.params.id;
const result = crud.deleteTask(id);
// Broadcast changes to connected clients
wsManager.broadcast("event", {
name: "tasks",
value: { type: "delete-task", task: { id } },
});
res.status(200).send();
});
Link Created
{"action":"event","body":{"name":"links",
"value":{"type":"add-link","link":LINK_OBJECT}}}
Example:
app.post("/data/link", (req, res) => {
const bodyPayload = sanitize(req.body);
const result = crud.insertLink(bodyPayload);
// Broadcast changes to connected clients
wsManager.broadcast("event", {
name: "links",
value: { type: "add-link", link: result.item },
});
res.status(200).json(result);
});
Link Updated
{"action":"event","body":{"name":"links",
"value":{"type":"update-link","link":LINK_OBJECT}}}
Example:
app.put("/data/link/:id", (req, res) => {
const id = req.params.id;
const event = sanitize(req.body);
const result = crud.updateLink(id, event);
// Broadcast changes to connected clients
wsManager.broadcast("event", {
name: "links",
value: { type: "update-link", link: result.item },
});
res.status(200).send(result);
});
Link Deleted
{"action":"event","body":{"name":"links",
"value":{"type":"delete-link","link":{"id":ID}}}}
Example:
app.delete("/data/link/:id", (req, res) => {
const id = req.params.id;
const result = crud.deleteLink(id);
// Broadcast changes to connected clients
wsManager.broadcast("event", {
name: "links",
value: { type: "delete-link", link: { id } },
});
res.status(200).send();
});
Advanced Customization
Custom Handlers
In the described format, the RemoteEvents helper is responsible for initial handshake of establishing a websocket connection with the server and receiving messages.
The second part of this module is the remoteUpdates helper that is responsible for parsing messages received via a websocket and applying appropriate changes to Gantt.
const { RemoteEvents, remoteUpdates } = gantt.ext.liveUpdates;
const remoteEvents = new RemoteEvents("/api/v1", AUTH_TOKEN);
remoteEvents.on(remoteUpdates);
Normally, you can use these helpers without any extra configuration. But it is possible to extend the existing protocol by adding a custom helper or to implement a custom handler for remote updates.
The RemoteEvents.on method expects the object argument which can specify handlers for one or multiple entities:
const remoteEvents = new RemoteEvents("/api/v1", AUTH_TOKEN);
remoteEvents.on({
tasks: function(message) {
const { type, task } = message;
switch (type) {
case "add-task":
// handle the add event
break;
case "update-task":
// handle the update event
break;
case "delete-task":
// handle the delete event
break;
}
}
});
If you need to add a custom action, you can do it by adding an additional handler for remoteEvents:
const { RemoteEvents, remoteUpdates } = gantt.ext.liveUpdates;
const remoteEvents = new RemoteEvents("/api/v1", AUTH_TOKEN);
remoteEvents.on(remoteUpdates);
remoteEvents.on({
tasks: function(message) {
const { type, task } = message;
switch (type) {
case "custom-action":
// handle custom action
break;
}
}
});
The handler will be invoked by the following message:
{"action":"event","body":{"name":"tasks",
"value":{"type":"custom-action","task":value}}}
If you want to use RemoteEvents to receive updates for custom entities, you can achieve it by adding a handler:
const { RemoteEvents, remoteUpdates } = gantt.ext.liveUpdates;
const remoteEvents = new RemoteEvents("/api/v1", AUTH_TOKEN);
remoteEvents.on(remoteUpdates);
// subscribing to custom entities
remoteEvents.on({
resources: function(message) {
const { type, value } = message;
switch (type) {
case "custom-action":
// handle custom action
break;
}
}
});
When initialized that way, the remoteEvents object will send the websocket a subscription message formatted in the following way:
{"action":"subscribe","name":"resources"}
And the handler will be called whenever a message directed to the specified entity is received:
{"action":"event","body":{"name":"resources",
"value":{"type":"custom-action","value":value}}}
This guide provides the foundation for implementing and customizing live updates in DHTMLX Gantt. For a complete example, refer to the GitHub repository.
Remote Updates API
The RemoteUpdates module can be used to connect Gantt to any source of external changes allowing easy integration of remote changes.
const { remoteUpdates } = gantt.ext.liveUpdates;
// inserts task into gantt without invoking update hooks
remoteUpdates.tasks({ type: "add-task", task: TASK_OBJECT });
// updates task in gantt without invoking update hooks
remoteUpdates.tasks({ type: "update-task", task: TASK_OBJECT });
// deletes task from gantt without invoking update hooks
remoteUpdates.tasks({ type: "delete-task", task: {id: TASK_ID}});
// link operations
remoteUpdates.links({ type: "add-link", link: LINK_OBJECT });
remoteUpdates.links({ type: "update-link", link: LINK_OBJECT });
remoteUpdates.links({ type: "delete-link", link: {id: LINK_ID}});
Check the example of how Gantt can be connected to the Firestore updates in the GitHub repository.