forked from PolyLogiX-Studio/HeadlessGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindowManager.js
165 lines (159 loc) · 3.76 KB
/
WindowManager.js
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
const url = require('url');
const uuidv4 = require('uuid/v4');
var bus
/**
* @typedef WindowProperties
* @type {Object}
*/
/**
* @typedef WindowData
* @type {Object}
*/
/**
* @class WindowManager
* @classdesc Window Manager to manage all HeadlessCore Windows.
*/
class WindowManager {
/**
* @param {Object} BrowserWindow Electron Browser Window Object
*/
constructor(BrowserWindow) {
this.BrowserWindow = BrowserWindow
/**
* All Open Windows
* @returns Object
*/
this.Windows = {}
}
/**
* Create a new Electron Window
* @param {String} [ID] Unique ID to use
* @param {WindowProperties} prop
* @param {WindowData} data
* @param {Object} [menu=null]
* @example WindowManager.createWindow('addWindow', {
parent: 'MainWindow',
show: false,
darkTheme: true,
width: 800,
height: 800,
title: "New Server",
icon: ICON_GLOBAL_PNG,
webPreferences: {
nodeIntegration: true
}
}, {page:{
pathname: path.join(__dirname, '/Pages/addWindow.html'),
protocol: 'file:',
slashes: true,
},children:['ConfigWindow']})
* @returns {String} Unique Window ID
*/
createWindow(ID = uuidv4(), prop, data,show = true, menu = null) {
console.log('New Window Call,', ID)
if (this.Windows[ID] != undefined) {
return false
}
prop.show = false
if (prop.parent) {
if (this.Windows[prop.parent]) {
//Exclude Top Level
if (ID !== 'MainWindow') {
if (!this.Windows[prop.parent].Children.includes(ID)) {
this.Windows[prop.parent].Children.push(ID)
}
}
prop.parent = this.Windows[prop.parent]
} else {
prop.parent = this.Windows['MainWindow']
}
} else {
prop.parent = this.Windows['MainWindow']
}
//console.log(prop)
this.Windows[ID] = new this.BrowserWindow(prop);
this.Windows[ID].setMenu(menu)
this.Windows[ID].Children = (data.children ? data.children : []);
//console.log('menu',menu)
let windowURL = url.format(data.page)
console.log('query', data.query)
if (data.query) {
let t_query = ""
for (const [key, value] of Object.entries(data.query)) {
t_query += `${key}=${encodeURIComponent(value)}&`
}
windowURL += `?${t_query}`
}
console.log('windowURL', windowURL)
this.Windows[ID].loadURL(windowURL)
this.Windows[ID].once('ready-to-show', () => {
if (show) {
setTimeout(() => { this.Windows[ID].show(); }, 10);
}
})
// GC Handle
this.Windows[ID].onClose = (this.Windows[ID].on('close', () => {
console.log(`Manual Close on ${ID}`)
if (ID != 'MainWindow') {
for (let i = 0; i < this.Windows[ID].Children.length; i++) {
this.closeWindow(this.Windows[ID].Children[i])
}
delete this.Windows[ID]
}
}))
this.Windows[ID].onClosed = (this.Windows[ID].on('closed', () => {
console.log(`Window ${ID}: Closed.`)
}))
//console.log(this.Windows)
return ID
}
/**
*
* @param {String} ID
* @param {String} tag
* @param {*} data
* @example WindowManager.sendData('MainWindow','NEOS:Login', {'neosCredential':someLogin,'neosPassword':somepassword})
*/
sendData(ID, tag, data) {
if (!this.Windows[ID]) {
return false
}
//console.log(`sendData(${ID},${tag},${data})`)
this.Windows[ID].webContents.send(tag, data)
}
/**
* Check if a window ID exists
* @param {String} ID Unique Window ID
* @example if(WindowManager.isOpen('ConfigWindow')){
* //Some code
* }
* @returns {Boolean} Is Window Open
*/
isOpen(ID) {
return !(!this.Windows[ID])
}
/**
* Close a Window if it exists
* @param {String} ID Unique Window ID
*/
closeWindow(ID) {
if (!this.Windows[ID]) {
return false
}
this.Windows[ID].close()
}
/**
* Close all Windows
*/
closeAllWindows() {
}
}
/**
* @private
*/
module.exports = function (b) {
bus = b;
return {
WindowManager
}
}