Starting to migrate @storybook/channel-websocket

This commit is contained in:
Kai Röder 2018-12-17 01:37:52 +01:00
parent 77b928ea80
commit e47c34830f
4 changed files with 40 additions and 14 deletions

View File

@ -15,7 +15,7 @@
},
"license": "MIT",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"jsnext:main": "src/index.ts",
"scripts": {
"prepare": "node ../../scripts/prepare.js"
},

View File

@ -1,14 +1,26 @@
/* eslint-disable no-underscore-dangle */
import { WebSocket } from 'global';
import Channel from '@storybook/channels';
import { Channel } from '@storybook/channels';
type OnError = (message: Event) => void;
interface WebsocketTransportArgs {
url: string;
onError: OnError;
}
interface CreateChannelArgs {
url: string;
async: boolean;
onError: OnError;
}
export class WebsocketTransport {
constructor({ url, onError }) {
this._socket = null;
this._buffer = [];
this._handler = null;
this._isReady = false;
private _socket: WebSocket;
private _handler: any;
private _buffer: string[] = [];
private _isReady = false;
constructor({ url, onError }: WebsocketTransportArgs) {
this._connect(url, onError);
}
@ -24,22 +36,22 @@ export class WebsocketTransport {
}
}
_sendLater(event) {
private _sendLater(event) {
this._buffer.push(event);
}
_sendNow(event) {
private _sendNow(event) {
const data = JSON.stringify(event);
this._socket.send(data);
}
_flush() {
private _flush() {
const buffer = this._buffer;
this._buffer = [];
buffer.forEach(event => this.send(event));
}
_connect(url, onError) {
private _connect(url: string, onError: OnError) {
this._socket = new WebSocket(url);
this._socket.onopen = () => {
this._isReady = true;
@ -57,7 +69,7 @@ export class WebsocketTransport {
}
}
export default function createChannel({ url, async, onError }) {
export default function createChannel({ url, async, onError }: CreateChannelArgs) {
const transport = new WebsocketTransport({ url, onError });
return new Channel({ transport, async });
}

View File

@ -0,0 +1 @@
declare module 'global';

View File

@ -0,0 +1,13 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "./src"
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"src/index.test.ts"
]
}