setLinkWith(hook) {
    this.hooksToListen.add(hook);
    hook.on("startLoading", () => this.setReady(false));
    hook.on("ready", this.checkTimeLimits.bind(this));
  },