aboutsummaryrefslogblamecommitdiff
path: root/src/content/client/FollowMasterClient.ts
blob: f0686838d8e2977bd5f1d35b2248612dda47f378 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                  





                                                          


























                                                                   
                                 


                                                    
                                                      
   
import * as messages from "../../shared/messages";
import Key from "../../shared/settings/Key";

export default interface FollowMasterClient {
  startFollow(newTab: boolean, background: boolean): void;

  responseHintCount(count: number): void;

  sendKey(key: Key): void;
}

export class FollowMasterClientImpl implements FollowMasterClient {
  private window: Window;

  constructor(window: Window) {
    this.window = window;
  }

  startFollow(newTab: boolean, background: boolean): void {
    this.postMessage({
      type: messages.FOLLOW_START,
      newTab,
      background,
    });
  }

  responseHintCount(count: number): void {
    this.postMessage({
      type: messages.FOLLOW_RESPONSE_COUNT_TARGETS,
      count,
    });
  }

  sendKey(key: Key): void {
    this.postMessage({
      type: messages.FOLLOW_KEY_PRESS,
      key: key.key,
      ctrlKey: key.ctrl || false,
    });
  }

  private postMessage(msg: messages.Message): void {
    this.window.postMessage(JSON.stringify(msg), "*");
  }
}