2018-10-06 21:06:17 -05:00
|
|
|
import autobind from 'autobind-decorator';
|
|
|
|
import Connection from '.';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stream channel
|
|
|
|
*/
|
|
|
|
export default abstract class Channel {
|
|
|
|
protected connection: Connection;
|
|
|
|
public id: string;
|
2018-10-11 09:01:57 -05:00
|
|
|
public abstract readonly chName: string;
|
2018-10-11 09:07:20 -05:00
|
|
|
public static readonly shouldShare: boolean;
|
2018-11-10 11:22:34 -06:00
|
|
|
public static readonly requireCredential: boolean;
|
2018-10-06 21:06:17 -05:00
|
|
|
|
|
|
|
protected get user() {
|
|
|
|
return this.connection.user;
|
|
|
|
}
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
protected get following() {
|
|
|
|
return this.connection.following;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected get muting() {
|
|
|
|
return this.connection.muting;
|
|
|
|
}
|
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
protected get subscriber() {
|
|
|
|
return this.connection.subscriber;
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(id: string, connection: Connection) {
|
|
|
|
this.id = id;
|
|
|
|
this.connection = connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public send(typeOrPayload: any, payload?: any) {
|
|
|
|
const type = payload === undefined ? typeOrPayload.type : typeOrPayload;
|
|
|
|
const body = payload === undefined ? typeOrPayload.body : payload;
|
|
|
|
|
|
|
|
this.connection.sendMessageToWs('channel', {
|
|
|
|
id: this.id,
|
|
|
|
type: type,
|
|
|
|
body: body
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public abstract init(params: any): void;
|
|
|
|
public dispose?(): void;
|
|
|
|
public onMessage?(type: string, body: any): void;
|
|
|
|
}
|