Skip to content

Commit cbc4bed

Browse files
committed
Updated TODO. Remove bootstrap.js.
1 parent 624d620 commit cbc4bed

File tree

3 files changed

+25
-201
lines changed

3 files changed

+25
-201
lines changed

TODO

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11

22
Todo:
3-
Switch to Mobx
4-
Redo config file layout
3+
Switch to Mobx @done(19-04-01 06:56)
4+
Redo config file layout @done(19-04-01 06:56)
55
// What if we use nesting instead of named scenes? Does that give use more
66
// flexibility?
77
// What if we use x:y coords instead of nested array? Would that make it
88
// easier to read/use?
9-
Rename some keys for consistency
10-
keyBind -> bindKey
11-
sceneSourceToggle -> toggleSource
12-
globalSceneSourceToggle -> toggleSceneSource
13-
This will make changes to layouts.js -- make sure it comes out clean
9+
Rename some keys for consistency @done(19-04-01 06:56)
10+
keyBind -> bindKey @done(19-04-01 06:56)
11+
sceneSourceToggle -> toggleSource @done(19-04-01 06:56)
12+
globalSceneSourceToggle -> toggleSceneSource @done(19-04-01 06:56)
13+
This will make changes to layouts.js -- make sure it comes out clean @done(19-04-01 06:56)
1414
☐ We want more flexibility on targets and modifiers -- not sure what that looks like yet
15-
Redo bootstrap.js
16-
Redo obs.js
15+
Redo bootstrap.js (Just remove it) @done(19-04-01 07:42)
16+
Redo obs.js @cancelled(19-04-01 06:57)
1717
☐ Add handling for multiple zoom levels
1818
// What does this look like in the config file?
1919
// Could almost picture holding the momentary button and then having other

src/index.js

+16-22
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,32 @@
1-
import {
2-
app,
3-
BrowserWindow,
4-
Tray,
5-
Menu
6-
} from 'electron';
7-
import installExtension, {
8-
REACT_DEVELOPER_TOOLS
9-
} from 'electron-devtools-installer';
10-
import {
11-
enableLiveReload
12-
} from 'electron-compile';
1+
import { app, BrowserWindow, Tray, Menu } from 'electron';
2+
import installExtension, { REACT_DEVELOPER_TOOLS } from 'electron-devtools-installer';
3+
import { enableLiveReload } from 'electron-compile';
134

145
import * as path from 'path';
156

16-
import {
17-
reloadConfig
18-
} from './main/bootstrap';
7+
import { state } from './main/state';
8+
import { load } from './main/layouts';
9+
10+
load();
1911

2012
// Keep a global reference of the window object, if you don't, the window will
2113
// be closed automatically when the JavaScript object is garbage collected.
2214
let mainWindow;
2315

2416
const isDevMode = process.execPath.match(/[\\/]electron/);
2517

26-
if (isDevMode) enableLiveReload({
27-
strategy: 'react-hmr'
28-
});
18+
if (isDevMode)
19+
enableLiveReload({
20+
strategy: 'react-hmr'
21+
});
2922

3023
let tray = null;
3124

3225
const createMainWindow = async () => {
3326
// Create the browser window.
3427
const window = new BrowserWindow({
3528
width: 1280,
36-
height: 720,
29+
height: 720
3730
});
3831

3932
// and load the index.html of the app.
@@ -58,7 +51,8 @@ const createMainWindow = async () => {
5851

5952
function createTray() {
6053
tray = new Tray(path.join(__dirname, '..', 'assets', 'icon.png'));
61-
const contextMenu = Menu.buildFromTemplate([{
54+
const contextMenu = Menu.buildFromTemplate([
55+
{
6256
label: 'Settings',
6357
click() {
6458
createMainWindow();
@@ -67,15 +61,15 @@ function createTray() {
6761
{
6862
label: 'Reload Configuration',
6963
click() {
70-
reloadConfig();
64+
load();
7165
}
7266
},
7367
{
7468
label: 'Exit',
7569
click() {
7670
app.quit();
7771
}
78-
},
72+
}
7973
]);
8074
tray.setToolTip('Deckish');
8175
tray.setContextMenu(contextMenu);

src/main/bootstrap.js

-170
This file was deleted.

0 commit comments

Comments
 (0)