-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
medistar1
committed
Jun 13, 2021
1 parent
95ab26f
commit 98f6fff
Showing
4 changed files
with
69 additions
and
63 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,91 @@ | ||
// Modules to control application life and create native browser window | ||
const {app, Menu, ipcMain, BrowserWindow} = require('electron'); | ||
const { | ||
app, | ||
Menu, | ||
ipcMain, | ||
BrowserWindow | ||
} = require('electron'); | ||
const singleInstance = require('single-instance'); | ||
const path = require('path'); | ||
const fs = require('fs'); | ||
|
||
var locker = new singleInstance('LibertasTsfWallet'); | ||
|
||
locker.lock().then(function() { | ||
// Keep a global reference of the window object, if you don't, the window will | ||
// be closed automatically when the JavaScript object is garbage collected. | ||
mainWindow = null; | ||
locker.lock().then(function () { | ||
// Keep a global reference of the window object, if you don't, the window will | ||
// be closed automatically when the JavaScript object is garbage collected. | ||
mainWindow = null; | ||
|
||
function createWindow () { | ||
// Create the browser window. | ||
mainWindow = new BrowserWindow({ | ||
width: 1200, | ||
height: 800, | ||
minWidth: 1000, | ||
minHeight: 650, | ||
backgroundColor: "#000000", | ||
icon: 'assets/images/brand-logo-icon.png' | ||
}); | ||
function createWindow() { | ||
// Create the browser window. | ||
mainWindow = new BrowserWindow({ | ||
width: 1200, | ||
height: 800, | ||
minWidth: 1000, | ||
minHeight: 650, | ||
backgroundColor: "#000000", | ||
icon: path.join(__dirname, 'assets/images/Opus1024.png') | ||
}); | ||
|
||
// and load the index.html of the app. | ||
mainWindow.loadFile('index.html'); | ||
TSFGtsf.startGtsf(); | ||
// and load the index.html of the app. | ||
mainWindow.loadFile('index.html'); | ||
TSFGtsf.startGtsf(); | ||
|
||
// Open the DevTools. | ||
// mainWindow.webContents.openDevTools() | ||
// Open the DevTools. | ||
// mainWindow.webContents.openDevTools() | ||
|
||
// Emitted when the window is closed. | ||
mainWindow.on('closed', function () { | ||
// Dereference the window object, usually you would store windows | ||
// in an array if your app supports multi windows, this is the time | ||
// when you should delete the corresponding element. | ||
mainWindow = null | ||
}); | ||
// Emitted when the window is closed. | ||
mainWindow.on('closed', function () { | ||
// Dereference the window object, usually you would store windows | ||
// in an array if your app supports multi windows, this is the time | ||
// when you should delete the corresponding element. | ||
mainWindow = null | ||
}); | ||
|
||
require('./modules/menu.js'); | ||
} | ||
require('./modules/menu.js'); | ||
} | ||
|
||
// This method will be called when Electron has finished | ||
// initialization and is ready to create browser windows. | ||
// Some APIs can only be used after this event occurs. | ||
app.on('ready', createWindow) | ||
// This method will be called when Electron has finished | ||
// initialization and is ready to create browser windows. | ||
// Some APIs can only be used after this event occurs. | ||
app.on('ready', createWindow) | ||
|
||
// Quit when all windows are closed. | ||
app.on('window-all-closed', function () { | ||
// On OS X it is common for applications and their menu bar | ||
// to stay active until the user quits explicitly with Cmd + Q | ||
if (process.platform !== 'darwin') { | ||
TSFGtsf.stopGtsf(); | ||
app.quit(); | ||
} | ||
}) | ||
// Quit when all windows are closed. | ||
app.on('window-all-closed', function () { | ||
// On OS X it is common for applications and their menu bar | ||
// to stay active until the user quits explicitly with Cmd + Q | ||
if (process.platform !== 'darwin') { | ||
TSFGtsf.stopGtsf(); | ||
app.quit(); | ||
} | ||
}) | ||
|
||
app.on('activate', function () { | ||
// On OS X it's common to re-create a window in the app when the | ||
// dock icon is clicked and there are no other windows open. | ||
if (mainWindow === null) { | ||
createWindow() | ||
} | ||
}) | ||
app.on('activate', function () { | ||
// On OS X it's common to re-create a window in the app when the | ||
// dock icon is clicked and there are no other windows open. | ||
if (mainWindow === null) { | ||
createWindow() | ||
} | ||
}) | ||
|
||
// In this file you can include the rest of your app's specific main process | ||
// code. You can also put them in separate files and require them here. | ||
// listen for request to get template | ||
// In this file you can include the rest of your app's specific main process | ||
// code. You can also put them in separate files and require them here. | ||
// listen for request to get template | ||
|
||
// get the template content from file | ||
ipcMain.on('getTemplateContent', (event, arg) => { | ||
event.returnValue = fs.readFileSync(path.join(app.getAppPath(), "assets/templates/") + arg, 'utf8'); | ||
}); | ||
// get the template content from file | ||
ipcMain.on('getTemplateContent', (event, arg) => { | ||
event.returnValue = fs.readFileSync(path.join(app.getAppPath(), "assets/templates/") + arg, 'utf8'); | ||
}); | ||
|
||
// quit the app on coomand | ||
ipcMain.on('appQuit', (event, arg) => { | ||
app.quit(); | ||
}); | ||
}) | ||
.catch(function(err) { | ||
app.quit(); | ||
}) | ||
}); | ||
}) | ||
.catch(function (err) { | ||
app.quit(); | ||
}) | ||
|
||
require('./modules/gtsf.js'); | ||
require('./modules/accounts.js'); | ||
require('./modules/database.js'); | ||
require('./modules/database.js'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters