api base
This commit is contained in:
parent
c45d9555e7
commit
0dbe4bc417
7 changed files with 188 additions and 216 deletions
|
@ -15,6 +15,9 @@ let mainWindow6 = null
|
|||
let mainWindow7 = null
|
||||
let mainWindow8 = null
|
||||
|
||||
app.commandLine.appendSwitch('--disable-gpu');
|
||||
app.commandLine.appendSwitch('--disable-gpu-compositing');
|
||||
|
||||
// Quit when all windows are closed.
|
||||
app.on('window-all-closed', () => {
|
||||
app.quit()
|
||||
|
@ -23,13 +26,13 @@ app.on('window-all-closed', () => {
|
|||
exports.load = (appUrl) => {
|
||||
app.on('ready', () => {
|
||||
mainWindow1 = new BrowserWindow({
|
||||
disableGPU: true,
|
||||
width: 800,
|
||||
height: 600,
|
||||
autoHideMenuBar: true,
|
||||
backgroundColor: '#FFFFFF',
|
||||
useContentSize: true,
|
||||
webPreferences: {
|
||||
offScreen: true,
|
||||
nodeIntegration: false
|
||||
}
|
||||
})
|
||||
|
@ -73,7 +76,7 @@ exports.load = (appUrl) => {
|
|||
})
|
||||
mainWindow2.loadURL(appUrl)
|
||||
mainWindow2.focus()
|
||||
mainWindow2.webContents.on('dom-ready', () => {
|
||||
/*mainWindow2.webContents.on('dom-ready', () => {
|
||||
mainWindow2.webContents.beginFrameSubscription(() => {
|
||||
console.log("asd")
|
||||
})
|
||||
|
@ -88,180 +91,180 @@ exports.load = (appUrl) => {
|
|||
console.log(`browser #2: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
|
||||
start2 = end2
|
||||
})
|
||||
|
||||
mainWindow3 = new BrowserWindow({
|
||||
width: 800,
|
||||
height: 600,
|
||||
autoHideMenuBar: true,
|
||||
backgroundColor: '#FFFFFF',
|
||||
useContentSize: true,
|
||||
webPreferences: {
|
||||
nodeIntegration: false
|
||||
}
|
||||
})
|
||||
mainWindow3.loadURL(appUrl)
|
||||
mainWindow3.focus()
|
||||
mainWindow3.webContents.on('dom-ready', () => {
|
||||
mainWindow3.webContents.beginFrameSubscription(() => {
|
||||
console.log("asd")
|
||||
})
|
||||
})
|
||||
|
||||
var start3, end3
|
||||
start3 = +new Date();
|
||||
mainWindow3.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
end3 = +new Date();
|
||||
|
||||
const d = end3 - start3
|
||||
console.log(`browser #3: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
|
||||
start3 = end3
|
||||
})
|
||||
|
||||
mainWindow4 = new BrowserWindow({
|
||||
width: 800,
|
||||
height: 600,
|
||||
autoHideMenuBar: true,
|
||||
backgroundColor: '#FFFFFF',
|
||||
useContentSize: true,
|
||||
webPreferences: {
|
||||
nodeIntegration: false
|
||||
}
|
||||
})
|
||||
mainWindow4.loadURL(appUrl)
|
||||
mainWindow4.focus()
|
||||
mainWindow4.webContents.on('dom-ready', () => {
|
||||
mainWindow4.webContents.beginFrameSubscription(() => {
|
||||
console.log("asd")
|
||||
})
|
||||
})
|
||||
|
||||
var start4, end4
|
||||
start4 = +new Date();
|
||||
mainWindow4.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
end4 = +new Date();
|
||||
|
||||
const d = end4 - start4
|
||||
console.log(`browser #4: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
|
||||
start4 = end4
|
||||
})
|
||||
|
||||
mainWindow5 = new BrowserWindow({
|
||||
width: 800,
|
||||
height: 600,
|
||||
autoHideMenuBar: true,
|
||||
backgroundColor: '#FFFFFF',
|
||||
useContentSize: true,
|
||||
webPreferences: {
|
||||
nodeIntegration: false
|
||||
}
|
||||
})
|
||||
mainWindow5.loadURL(appUrl)
|
||||
mainWindow5.focus()
|
||||
mainWindow5.webContents.on('dom-ready', () => {
|
||||
mainWindow5.webContents.beginFrameSubscription(() => {
|
||||
console.log("asd")
|
||||
})
|
||||
})
|
||||
|
||||
var start5, end5
|
||||
start5 = +new Date();
|
||||
mainWindow5.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
end5 = +new Date();
|
||||
|
||||
const d = end5 - start5
|
||||
console.log(`browser #5: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
|
||||
start5 = end5
|
||||
})
|
||||
|
||||
mainWindow6 = new BrowserWindow({
|
||||
width: 800,
|
||||
height: 600,
|
||||
autoHideMenuBar: true,
|
||||
backgroundColor: '#FFFFFF',
|
||||
useContentSize: true,
|
||||
webPreferences: {
|
||||
nodeIntegration: false
|
||||
}
|
||||
})
|
||||
mainWindow6.loadURL(appUrl)
|
||||
mainWindow6.focus()
|
||||
mainWindow6.webContents.on('dom-ready', () => {
|
||||
mainWindow6.webContents.beginFrameSubscription(() => {
|
||||
console.log("asd")
|
||||
})
|
||||
})
|
||||
|
||||
var start6, end6
|
||||
start6 = +new Date();
|
||||
mainWindow6.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
end6 = +new Date();
|
||||
|
||||
const d = end6 - start6
|
||||
console.log(`browser #6: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
|
||||
start6 = end6
|
||||
})
|
||||
|
||||
mainWindow7 = new BrowserWindow({
|
||||
width: 800,
|
||||
height: 600,
|
||||
autoHideMenuBar: true,
|
||||
backgroundColor: '#FFFFFF',
|
||||
useContentSize: true,
|
||||
webPreferences: {
|
||||
nodeIntegration: false
|
||||
}
|
||||
})
|
||||
mainWindow7.loadURL(appUrl)
|
||||
mainWindow7.focus()
|
||||
mainWindow7.webContents.on('dom-ready', () => {
|
||||
mainWindow7.webContents.beginFrameSubscription(() => {
|
||||
console.log("asd")
|
||||
})
|
||||
})
|
||||
|
||||
var start7, end7
|
||||
start7 = +new Date();
|
||||
mainWindow7.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
end7 = +new Date();
|
||||
|
||||
const d = end7 - start7
|
||||
console.log(`browser #7: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
|
||||
start7 = end7
|
||||
})
|
||||
|
||||
mainWindow8 = new BrowserWindow({
|
||||
width: 800,
|
||||
height: 600,
|
||||
autoHideMenuBar: true,
|
||||
backgroundColor: '#FFFFFF',
|
||||
useContentSize: true,
|
||||
webPreferences: {
|
||||
nodeIntegration: false
|
||||
}
|
||||
})
|
||||
mainWindow8.loadURL(appUrl)
|
||||
mainWindow8.focus()
|
||||
mainWindow8.webContents.on('dom-ready', () => {
|
||||
mainWindow8.webContents.beginFrameSubscription(() => {
|
||||
console.log("asd")
|
||||
})
|
||||
})
|
||||
|
||||
var start8, end8
|
||||
start8 = +new Date();
|
||||
mainWindow8.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
end8 = +new Date();
|
||||
|
||||
const d = end8 - start8
|
||||
console.log(`browser #8: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
|
||||
start8 = end8
|
||||
})
|
||||
})*/
|
||||
//
|
||||
// mainWindow3 = new BrowserWindow({
|
||||
// width: 800,
|
||||
// height: 600,
|
||||
// autoHideMenuBar: true,
|
||||
// backgroundColor: '#FFFFFF',
|
||||
// useContentSize: true,
|
||||
// webPreferences: {
|
||||
// nodeIntegration: false
|
||||
// }
|
||||
// })
|
||||
// mainWindow3.loadURL(appUrl)
|
||||
// mainWindow3.focus()
|
||||
// mainWindow3.webContents.on('dom-ready', () => {
|
||||
// mainWindow3.webContents.beginFrameSubscription(() => {
|
||||
// console.log("asd")
|
||||
// })
|
||||
// })
|
||||
//
|
||||
// var start3, end3
|
||||
// start3 = +new Date();
|
||||
// mainWindow3.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
// end3 = +new Date();
|
||||
//
|
||||
// const d = end3 - start3
|
||||
// console.log(`browser #3: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
//
|
||||
// start3 = end3
|
||||
// })
|
||||
//
|
||||
// mainWindow4 = new BrowserWindow({
|
||||
// width: 800,
|
||||
// height: 600,
|
||||
// autoHideMenuBar: true,
|
||||
// backgroundColor: '#FFFFFF',
|
||||
// useContentSize: true,
|
||||
// webPreferences: {
|
||||
// nodeIntegration: false
|
||||
// }
|
||||
// })
|
||||
// mainWindow4.loadURL(appUrl)
|
||||
// mainWindow4.focus()
|
||||
// mainWindow4.webContents.on('dom-ready', () => {
|
||||
// mainWindow4.webContents.beginFrameSubscription(() => {
|
||||
// console.log("asd")
|
||||
// })
|
||||
// })
|
||||
//
|
||||
// var start4, end4
|
||||
// start4 = +new Date();
|
||||
// mainWindow4.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
// end4 = +new Date();
|
||||
//
|
||||
// const d = end4 - start4
|
||||
// console.log(`browser #4: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
//
|
||||
// start4 = end4
|
||||
// })
|
||||
//
|
||||
// mainWindow5 = new BrowserWindow({
|
||||
// width: 800,
|
||||
// height: 600,
|
||||
// autoHideMenuBar: true,
|
||||
// backgroundColor: '#FFFFFF',
|
||||
// useContentSize: true,
|
||||
// webPreferences: {
|
||||
// nodeIntegration: false
|
||||
// }
|
||||
// })
|
||||
// mainWindow5.loadURL(appUrl)
|
||||
// mainWindow5.focus()
|
||||
// mainWindow5.webContents.on('dom-ready', () => {
|
||||
// mainWindow5.webContents.beginFrameSubscription(() => {
|
||||
// console.log("asd")
|
||||
// })
|
||||
// })
|
||||
//
|
||||
// var start5, end5
|
||||
// start5 = +new Date();
|
||||
// mainWindow5.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
// end5 = +new Date();
|
||||
//
|
||||
// const d = end5 - start5
|
||||
// console.log(`browser #5: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
//
|
||||
// start5 = end5
|
||||
// })
|
||||
//
|
||||
// mainWindow6 = new BrowserWindow({
|
||||
// width: 800,
|
||||
// height: 600,
|
||||
// autoHideMenuBar: true,
|
||||
// backgroundColor: '#FFFFFF',
|
||||
// useContentSize: true,
|
||||
// webPreferences: {
|
||||
// nodeIntegration: false
|
||||
// }
|
||||
// })
|
||||
// mainWindow6.loadURL(appUrl)
|
||||
// mainWindow6.focus()
|
||||
// mainWindow6.webContents.on('dom-ready', () => {
|
||||
// mainWindow6.webContents.beginFrameSubscription(() => {
|
||||
// console.log("asd")
|
||||
// })
|
||||
// })
|
||||
//
|
||||
// var start6, end6
|
||||
// start6 = +new Date();
|
||||
// mainWindow6.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
// end6 = +new Date();
|
||||
//
|
||||
// const d = end6 - start6
|
||||
// console.log(`browser #6: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
//
|
||||
// start6 = end6
|
||||
// })
|
||||
//
|
||||
// mainWindow7 = new BrowserWindow({
|
||||
// width: 800,
|
||||
// height: 600,
|
||||
// autoHideMenuBar: true,
|
||||
// backgroundColor: '#FFFFFF',
|
||||
// useContentSize: true,
|
||||
// webPreferences: {
|
||||
// nodeIntegration: false
|
||||
// }
|
||||
// })
|
||||
// mainWindow7.loadURL(appUrl)
|
||||
// mainWindow7.focus()
|
||||
// mainWindow7.webContents.on('dom-ready', () => {
|
||||
// mainWindow7.webContents.beginFrameSubscription(() => {
|
||||
// console.log("asd")
|
||||
// })
|
||||
// })
|
||||
//
|
||||
// var start7, end7
|
||||
// start7 = +new Date();
|
||||
// mainWindow7.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
// end7 = +new Date();
|
||||
//
|
||||
// const d = end7 - start7
|
||||
// console.log(`browser #7: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
//
|
||||
// start7 = end7
|
||||
// })
|
||||
//
|
||||
// mainWindow8 = new BrowserWindow({
|
||||
// width: 800,
|
||||
// height: 600,
|
||||
// autoHideMenuBar: true,
|
||||
// backgroundColor: '#FFFFFF',
|
||||
// useContentSize: true,
|
||||
// webPreferences: {
|
||||
// nodeIntegration: false
|
||||
// }
|
||||
// })
|
||||
// mainWindow8.loadURL(appUrl)
|
||||
// mainWindow8.focus()
|
||||
// mainWindow8.webContents.on('dom-ready', () => {
|
||||
// mainWindow8.webContents.beginFrameSubscription(() => {
|
||||
// console.log("asd")
|
||||
// })
|
||||
// })
|
||||
//
|
||||
// var start8, end8
|
||||
// start8 = +new Date();
|
||||
// mainWindow8.webContents.on('paint', (e, rect, w, h, data) => {
|
||||
// end8 = +new Date();
|
||||
//
|
||||
// const d = end8 - start8
|
||||
// console.log(`browser #8: ${d < 10 ? ` ${d}` : d} ms`)
|
||||
//
|
||||
// start8 = end8
|
||||
// })
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue