forked from jlord/git-it-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
142 lines (123 loc) · 3.96 KB
/
main.js
File metadata and controls
142 lines (123 loc) · 3.96 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
var fs = require('fs')
var path = require('path')
var electron = require('electron')
var locale = require('./lib/locale.js')
var app = electron.app
var BrowserWindow = electron.BrowserWindow
var Menu = electron.Menu
var ipcMain = electron.ipcMain
var dialog = electron.dialog
var darwinTemplate = require('./menus/darwin-menu.js')
var otherTemplate = require('./menus/other-menu.js')
var emptyData = require('./empty-data.json')
var emptySavedDir = require('./empty-saved-dir.json')
var mainWindow = null
var menu = null
var iconPath = path.join(__dirname, '/assets/git-it.png')
app.on('window-all-closed', function appQuit () {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('ready', function appReady () {
mainWindow = new BrowserWindow({
'minWidth': 800,
'minHeight': 600,
width: 980,
height: 760,
title: 'Git-it',
icon: iconPath,
webPreferences: {
nodeIntegration: true,
contextIsolation: false
}
})
var appPath = app.getPath('userData')
var userDataPath = path.join(appPath, 'user-data.json')
var userSavedDir = path.join(appPath, 'saved-dir.json')
var language = locale.getLocale(app.getLocale())
// tools for development to prefill challenge completion
// usage: electron . --none
// electron . --some
// electron . --all
if (process.argv[ 2 ] === '--none') {
setAllChallengesUncomplete(userDataPath)
}
if (process.argv[ 2 ] === '--some') {
setSomeChallengesComplete(userDataPath)
}
if (process.argv[ 2 ] === '--all') {
setAllChallengesComplete(userDataPath)
}
fs.exists(userDataPath, function (exists) {
if (!exists) {
fs.writeFile(userDataPath, JSON.stringify(emptyData, null, ' '), function (err) {
if (err) return console.log(err)
})
}
})
fs.exists(userSavedDir, function (exists) {
if (!exists) {
fs.writeFile(userSavedDir, JSON.stringify(emptySavedDir, null, ' '), function (err) {
if (err) return console.log(err)
})
}
})
mainWindow.loadURL('file://' + locale.getLocaleBuiltPath(language) + '/pages/index.html')
ipcMain.on('getUserDataPath', function (event) {
event.returnValue = userDataPath
})
ipcMain.on('getUserSavedDir', function (event) {
event.returnValue = userSavedDir
})
ipcMain.on('open-file-dialog', function (event) {
var files = dialog.showOpenDialogSync(mainWindow, { properties: [ 'openFile', 'openDirectory' ] })
if (files && files.length) {
event.sender.send('selected-directory', files)
}
})
ipcMain.on('confirm-clear', function (event) {
var options = {
type: 'info',
buttons: [ 'Yes', 'No' ],
title: 'Confirm Clearing Statuses',
message: 'Are you sure you want to clear the status for every challenge?'
}
dialog.showMessageBox(mainWindow, options).then(function (result) {
event.sender.send('confirm-clear-response', result.response)
})
})
if (process.platform === 'darwin') {
menu = Menu.buildFromTemplate(darwinTemplate(app, mainWindow))
Menu.setApplicationMenu(menu)
} else {
menu = Menu.buildFromTemplate(otherTemplate(app, mainWindow))
mainWindow.setMenu(menu)
}
mainWindow.on('closed', function winClosed () {
mainWindow = null
})
})
function setAllChallengesComplete (path) {
var challenges = JSON.parse(fs.readFileSync(path))
for (var key in challenges) {
challenges[ key ].completed = true
}
fs.writeFileSync(path, JSON.stringify(challenges), '', null)
}
function setAllChallengesUncomplete (path) {
var challenges = JSON.parse(fs.readFileSync(path))
for (var key in challenges) {
challenges[ key ].completed = false
}
fs.writeFileSync(path, JSON.stringify(challenges), '', null)
}
function setSomeChallengesComplete (path) {
var counter = 0
var challenges = JSON.parse(fs.readFileSync(path))
for (var key in challenges) {
counter++
challenges[ key ].completed = counter < 6
}
fs.writeFileSync(path, JSON.stringify(challenges), '', null)
}