mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			95 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { createConsumer } from '@rails/actioncable';
 | 
						|
import { BUS_EVENTS } from 'shared/constants/busEvents';
 | 
						|
 | 
						|
const PRESENCE_INTERVAL = 20000;
 | 
						|
const RECONNECT_INTERVAL = 1000;
 | 
						|
 | 
						|
class BaseActionCableConnector {
 | 
						|
  static isDisconnected = false;
 | 
						|
 | 
						|
  constructor(app, pubsubToken, websocketHost = '') {
 | 
						|
    const websocketURL = websocketHost ? `${websocketHost}/cable` : undefined;
 | 
						|
 | 
						|
    this.consumer = createConsumer(websocketURL);
 | 
						|
    this.subscription = this.consumer.subscriptions.create(
 | 
						|
      {
 | 
						|
        channel: 'RoomChannel',
 | 
						|
        pubsub_token: pubsubToken,
 | 
						|
        account_id: app.$store.getters.getCurrentAccountId,
 | 
						|
        user_id: app.$store.getters.getCurrentUserID,
 | 
						|
      },
 | 
						|
      {
 | 
						|
        updatePresence() {
 | 
						|
          this.perform('update_presence');
 | 
						|
        },
 | 
						|
        received: this.onReceived,
 | 
						|
        disconnected: () => {
 | 
						|
          BaseActionCableConnector.isDisconnected = true;
 | 
						|
          this.onDisconnected();
 | 
						|
          this.initReconnectTimer();
 | 
						|
          // TODO: Remove this after completing the conversation list refetching
 | 
						|
          window.bus.$emit(BUS_EVENTS.WEBSOCKET_DISCONNECT);
 | 
						|
        },
 | 
						|
      }
 | 
						|
    );
 | 
						|
    this.app = app;
 | 
						|
    this.events = {};
 | 
						|
    this.reconnectTimer = null;
 | 
						|
    this.isAValidEvent = () => true;
 | 
						|
    this.triggerPresenceInterval = () => {
 | 
						|
      setTimeout(() => {
 | 
						|
        this.subscription.updatePresence();
 | 
						|
        this.triggerPresenceInterval();
 | 
						|
      }, PRESENCE_INTERVAL);
 | 
						|
    };
 | 
						|
    this.triggerPresenceInterval();
 | 
						|
  }
 | 
						|
 | 
						|
  checkConnection() {
 | 
						|
    const isConnectionActive = this.consumer.connection.isOpen();
 | 
						|
    const isReconnected =
 | 
						|
      BaseActionCableConnector.isDisconnected && isConnectionActive;
 | 
						|
    if (isReconnected) {
 | 
						|
      this.clearReconnectTimer();
 | 
						|
      this.onReconnect();
 | 
						|
      BaseActionCableConnector.isDisconnected = false;
 | 
						|
    } else {
 | 
						|
      this.initReconnectTimer();
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  clearReconnectTimer = () => {
 | 
						|
    if (this.reconnectTimer) {
 | 
						|
      clearTimeout(this.reconnectTimer);
 | 
						|
      this.reconnectTimer = null;
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  initReconnectTimer = () => {
 | 
						|
    this.clearReconnectTimer();
 | 
						|
    this.reconnectTimer = setTimeout(() => {
 | 
						|
      this.checkConnection();
 | 
						|
    }, RECONNECT_INTERVAL);
 | 
						|
  };
 | 
						|
 | 
						|
  // eslint-disable-next-line class-methods-use-this
 | 
						|
  onReconnect = () => {};
 | 
						|
 | 
						|
  // eslint-disable-next-line class-methods-use-this
 | 
						|
  onDisconnected = () => {};
 | 
						|
 | 
						|
  disconnect() {
 | 
						|
    this.consumer.disconnect();
 | 
						|
  }
 | 
						|
 | 
						|
  onReceived = ({ event, data } = {}) => {
 | 
						|
    if (this.isAValidEvent(data)) {
 | 
						|
      if (this.events[event] && typeof this.events[event] === 'function') {
 | 
						|
        this.events[event](data);
 | 
						|
      }
 | 
						|
    }
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
export default BaseActionCableConnector;
 |