summaryrefslogtreecommitdiff
path: root/lib/gui/electron.py
blob: 8bc0bcef13d1b0bdc5d9f5ab3f4470f372979716 (plain)
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
import os
import subprocess
import sys

from ..utils import get_bundled_dir


app_process = None


def open_url(url):
    global app

    # Any output on stdout will crash inkscape.
    null = open(os.devnull, 'w')

    if getattr(sys, 'frozen', None) is not None:
        electron_path = os.path.join(get_bundled_dir("electron"), "inkstitch-gui")

        if sys.platform == "darwin":
            electron_path += ".app/Contents/MacOS/inkstitch-gui"
            subprocess.Popen(["open", "-a", electron_path, "--args", url], stdout=null)
        else:
            app_process = subprocess.Popen([electron_path, url])
    else:
        # if we're not running in a pyinstaller bundle, run electron directly
        app_process = subprocess.Popen(["yarn", "dev", url], cwd=get_bundled_dir("electron"), stdout=null)

    return app_process