aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/TouchBar.js
blob: c8093120056798b96e2e5e56918affbbb9fc45d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import semver from 'semver';
import { TouchBar, getCurrentWindow } from '@electron/remote';
import { autorun } from 'mobx';

import { isMac, osRelease } from '../environment';

export default class FranzTouchBar {
  constructor(stores, actions) {
    this.stores = stores;
    this.actions = actions;

    // Temporary fix for https://github.com/electron/electron/issues/10442
    // TODO: remove when we upgrade to electron 1.8.2 or later
    try {
      if (isMac && semver.gt(osRelease, '16.6.0')) {
        this.build = autorun(this._build.bind(this));
      }
    } catch (error) {
      console.error(error);
    }
  }

  _build() {
    const currentWindow = getCurrentWindow();

    if (this.stores.user.isLoggedIn) {
      const { TouchBarButton, TouchBarSpacer } = TouchBar;

      const buttons = [];
      for (const service of this.stores.services.allDisplayed) {
        buttons.push(new TouchBarButton({
          label: `${service.name}${service.unreadDirectMessageCount > 0
            ? ' 🔴' : ''} ${service.unreadDirectMessageCount === 0
              && service.unreadIndirectMessageCount > 0
            ? ' ⚪️' : ''}`,
          backgroundColor: service.isActive ? '#3498DB' : null,
          click: () => {
            this.actions.service.setActive({ serviceId: service.id });
          },
        }), new TouchBarSpacer({ size: 'small' }));
      }

      const touchBar = new TouchBar({ items: buttons });
      currentWindow.setTouchBar(touchBar);
    } else {
      currentWindow.setTouchBar(null);
    }
  }
}