Skip to main content
Version: 0.2.1

The Kabelwerk object

The Kabelwerk object is a singleton that opens and maintains the websocket connection to the Kabelwerk backend. It is also used for retrieving and updating the connected user's info, opening inboxes, and creating and opening rooms.

import Kabelwerk from 'kabelwerk';

Kabelwerk.config({
url: 'wss://hub.kabelwerk.io/socket/user',
token: 'signed.jwt.token',
refreshToken: async (token) => token,
logging: 'info',
});

Kabelwerk.on('ready', () => {
// this event is fired once: when the initial connection is established and
// the other methods are ready to be used (openInbox, openRoom, etc.)
});

Kabelwerk.on('error', (error) => {
// e.g. if the token is invalid
});

Kabelwerk.on('disconnected', () => {
// this event is fired every time when the connection drops
});

Kabelwerk.on('reconnected', () => {
// this event is fired every time when the connection is automatically
// re-established after a disconnect
});

Kabelwerk.connect();

Config

  • url: the URL of the Kabelwerk backend to connect to;
  • token: a JWT token identifying the user on behalf of whom the connection is established;
  • refreshToken: a function that should take as argument the current token and should return a promise resolving into the new token (or the same token, if no refresh is needed); the default is null, which means that the same token is going to be used for reconnection;
  • logging: one of the (case-insensitive) strings debug, info, error, silent (the default).

The Kabelwerk.config() method can be called mutliple times; also, only the given keys are updated.

User

let user = Kabelwerk.getUser();
user.name = 'Nana';

Kabelwerk.updateUser(user)
.then((user) => {
console.assert(user.name == 'Nana');
console.assert(kabel.getUser().name == 'Nana');
})
.catch((error) => {
// e.g. if the server times out
});

Inboxes

let inbox = Kabelwerk.openInbox();

See the inboxes page.

Rooms

// to create a new room for the connected user in the given hub
Kabelwerk.createRoom(hubId).then(({ id }) => {
let room = Kabelwerk.openRoom(id);
});

// if you already have the room's id
let room = Kabelwerk.openRoom(roomId);

See the rooms page.

On the hub side

The Kabelwerk object provides some additional functionality if the connected user is a hub user:

Kabelwerk.loadHubInfo()
.then(() => {
// { id, name, users }
})
.catch((error) => {
// e.g. if the connected user is not a hub user
});

List of methods

  • Kabelwerk.config(opts) → Sets the configuration. This method should be called at least once before invoking Kabelwerk.connect() in order to set an authentication token.
  • Kabelwerk.connect() → Establishes connection to the server. Usually all event listeners should be already attached when this method is invoked.
  • Kabelwerk.createRoom(hubId) → Creates a chat room between the connected user and a hub. Returns a Promise resolving into an {id} object holding the ID of the newly created room. This method is intended to be used on the end side.
  • Kabelwerk.disconnect() → Removes all previously attached event listeners and closes the connection to the server.
  • Kabelwerk.getUser() → Returns the connected user, as an {id, key, name} object.
  • Kabelwerk.isConnected() → Returns a boolean indicating whether the SDK is currently connected to the server.
  • Kabelwerk.loadHubInfo() → Loads info about the connected user's hub. Returns a Promise resolving info an {id, name, users} object. This method is only available on the hub side.
  • Kabelwerk.off(event, ref) → Removes one or more previously attached event listeners. Both parameters are optional: if no ref is given, all listeners for the given event are removed; if no event is given, then all event listeners attached to the Kabelwerk object are removed.
  • Kabelwerk.on(event, listener) → Attaches an event listener. See next section for a list of available events. Returns a short string identifying the attached listener — which string can be then used to remove that event listener via the Kabelwerk.off(event, ref) method.
  • Kabelwerk.once(event, listener) → The same as the Kabelwerk.on(event, listener) method, except that the listener will be automatically removed after being invoked — i.e. the listener is invoked at most once.
  • Kabelwerk.openInbox(params) → Initialises and returns an inbox object with the given parameters.
  • Kabelwerk.openNotifier() → Initialises and returns a notifier object.
  • Kabelwerk.openRoom(roomId) → Initialises and returns a room object for the chat room with the given ID.
  • Kabelwerk.updateUser(attributes) → Updates the connected user's name. Expects a {name} object and returns a Promise.
  • Kabelwerk.VERSION → The SDK's version, as a major.minor.patch string.

List of events

  • error → Fired when there is a problem establishing connection to the server (e.g. because of a timeout). The attached listeners are called with an extended Error instance.
  • ready → Fired at most once, when the connection to the server is first established and the Kabelwerk object is ready to be used.
  • connected → Fired at most once, when the connection to the server is first established. At this point the Kabelwerk object is not ready to be used as it yet has to exchange some data with the server (such as fetching the connected user's info). However, this event may be useful for displaying the connection's status.
  • disconnected → Fired when the connection to the server is dropped. Useful for displaying the connection's status to the user.
  • reconnected → Fired when the connection to the server is automatically re-established after a disconnect. Useful for displaying the connection's status to the user.
  • user_updated → Fired when the connected user's attributes are changed. The attached listeners are called with the up-to-date {id, key, name} object.

See also