mirror of
https://github.com/wisplite/tether-ts.git
synced 2026-05-01 06:22:41 -05:00
64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
export class TetherClient {
|
|
ws = null;
|
|
subscribedQueries = new Map();
|
|
connect = (url) => {
|
|
this.ws = new WebSocket(url);
|
|
this.ws.onopen = () => {
|
|
console.log('Connected to Tether');
|
|
};
|
|
this.ws.onmessage = (event) => {
|
|
const data = JSON.parse(event.data);
|
|
if (data.type === 'query') {
|
|
this.subscribedQueries.forEach((callback, query) => {
|
|
if (data.query === query) {
|
|
callback(data.data);
|
|
}
|
|
});
|
|
}
|
|
else if (data.type === 'error') {
|
|
console.error(data.error);
|
|
}
|
|
};
|
|
this.ws.onclose = () => {
|
|
console.log('Disconnected from Tether');
|
|
};
|
|
};
|
|
disconnect = () => {
|
|
if (!this.ws) {
|
|
throw new Error('Not connected to Tether');
|
|
}
|
|
this.ws.close();
|
|
this.ws = null;
|
|
};
|
|
subscribe = (query, callback) => {
|
|
this.subscribedQueries.set(query, callback);
|
|
if (!this.ws) {
|
|
throw new Error('Not connected to Tether');
|
|
}
|
|
this.ws.send(JSON.stringify({
|
|
type: 'subscribe',
|
|
query: query
|
|
}));
|
|
};
|
|
unsubscribe = (query) => {
|
|
this.subscribedQueries.delete(query);
|
|
if (!this.ws) {
|
|
throw new Error('Not connected to Tether');
|
|
}
|
|
this.ws.send(JSON.stringify({
|
|
type: 'unsubscribe',
|
|
query: query
|
|
}));
|
|
};
|
|
sendMutation = (mutationName, params) => {
|
|
if (!this.ws) {
|
|
throw new Error('Not connected to Tether');
|
|
}
|
|
this.ws.send(JSON.stringify({
|
|
type: 'mutation',
|
|
name: mutationName,
|
|
payload: params,
|
|
}));
|
|
};
|
|
}
|