-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.js
115 lines (102 loc) · 3 KB
/
main.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
const electron = require('electron');
const url = require('url');
const path = require('path');
const{app,BrowserWindow,Menu,ipcMain} = electron;
let mainWindow;
let composeWindow;
var count=1;
var check_array =new Array();
//listen for app to be ready
app.on('ready',function(){
//create new window
mainWindow = new BrowserWindow({});
//load html into window
mainWindow.loadURL(url.format({
pathname:path.join(__dirname,'mainwindow.html'),
protocol:'file:',
slashes:true
}));
mainWindow.on('closed',function(){
app.quit();
});
const mainMenu = Menu.buildFromTemplate(mainMenuTemplate);
Menu.setApplicationMenu(mainMenu);
count=1;
});
ipcMain.on('mail:send', function(e, item){
console.log(item);
mainWindow.webContents.send('mail:send',item);
composeWindow.close();
});
/*
function showMessage(){
// console.log("123");
var new_div = document.createElement("div");
new_div.setAttribute('id','mail'+count);
new_div.style.position="relative";
new_div.innerHTML = " text "+count+"<br>text123";
new_div.style.background="white";
new_div.style.marginBottom="2%";
new_div.style.padding="1% 0 1% 0";
new_div.style.cursor="pointer";
// alert(new_div.getAttribute('id'));
new_div.setAttribute('onclick','display_mail(this.id)');
document.getElementById("mails").appendChild(new_div);
count++;
}
function display_mail(id){
var mail_content = document.getElementById(id);
mail_content.style.background="yellow";
// alert(check_array.size);
document.getElementById("mails-display").innerHTML=""+mail_content.textContent+"<br>";
// for(var i=0; i<check_array.size; i++)
// alert(check_array[i]+"<br>");
}
*/
function composeMessage(){
//create new window
composeWindow = new BrowserWindow({
title:'Compose Mail'
});
//load html into window
composeWindow.loadURL(url.format({
pathname:path.join(__dirname,'compose.html'),
protocol:'file:',
slashes:true
}));
composeWindow.on('close',function(){
composeWindow = null;
});
}
const mainMenuTemplate = [
{
label:'File',
submenu:[
{
label:'Compose',
accelerator:process.platform == 'drawin' ? 'Command+N' : 'ctrl+N',
click(){
composeMessage();
}
},
{
label:'Sync',
role:'reload'
},
{
label:'Quit',
accelerator:process.platform == 'drawin' ? 'Command+Q' : 'ctrl+Q',
click(){
app.quit();
}
},
{
label:'Developer tools',
accelerator:process.platform == 'drawin' ? 'Command+Q' : 'ctrl+I',
click(item, focusedWindow){
focusedWindow.toggleDevTools();
}
},
]
}
]