aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/index.ts
blob: cd04276022368a0ecbc95153f2b9315fc5ccc693 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import { app, BrowserWindow } from 'electron';
import { join } from 'path';
import { RendererIpcMessage } from '@sophie/shared';
import { URL } from 'url';

const isSingleInstance = app.requestSingleInstanceLock();
const isDevelopment = import.meta.env.MODE === 'development';

if (!isSingleInstance) {
  app.quit();
  process.exit(0);
}

app.enableSandbox();

if (isDevelopment) {
  app.whenReady().then(async () => {
    const {
      default: installExtension,
      MOBX_DEVTOOLS,
      REACT_DEVELOPER_TOOLS,
    } = await import('electron-devtools-installer');
    installExtension(
      [
        MOBX_DEVTOOLS,
        REACT_DEVELOPER_TOOLS,
      ],
      {
        forceDownload: false,
        loadExtensionOptions: {
          allowFileAccess: true,
        },
      },
    );
  }).catch((err) => {
    console.error('Failed to install devtools extension', err);
  });
}

let mainWindow: BrowserWindow | null = null;

function createWindow(): Promise<void> {
  mainWindow = new BrowserWindow({
    show: false,
    webPreferences: {
      nativeWindowOpen: true,
      webviewTag: false,
      sandbox: true,
      preload: join(__dirname, '../../preload/dist/index.cjs'),
    }
  });

  const { webContents } = mainWindow;

  // See https://github.com/MarshallOfSound/electron-devtools-installer/issues/195#issuecomment-998872878
  if (isDevelopment) {
    webContents.once('dom-ready', () => {
      webContents.once('devtools-opened', () => {
        mainWindow?.focus();
      });
      webContents.openDevTools();
    });
  }

  mainWindow.on('ready-to-show', () => {
    mainWindow?.show();
  });

  webContents.on('ipc-message', (_event, channel, ...args) => {
    switch (channel) {
      case RendererIpcMessage.ButtonClicked:
        console.log('Button clicked');
        break;
      default:
        console.warn('Unknown IPC message:', channel, args);
        break;
    }
  });

  const pageUrl = (isDevelopment && import.meta.env.VITE_DEV_SERVER_URL !== undefined)
    ? import.meta.env.VITE_DEV_SERVER_URL
    : new URL('../renderer/dist/index.html', `file://${__dirname}`).toString();

  return mainWindow.loadURL(pageUrl);
}

app.on('second-instance', () => {
  if (mainWindow !== null) {
    if (!mainWindow.isVisible()) {
      mainWindow.show();
    }
    if (mainWindow.isMinimized()) {
      mainWindow.restore();
    }
    mainWindow.focus();
  }
});

app.on('window-all-closed', () => {
  if (process.platform !== 'darwin') {
    app.quit();
  }
});

app.whenReady().then(createWindow).catch((err) => {
  console.error('Failed to create window', err);
  process.exit(1);
});