forked from ReDEnergy/SessionSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsession-toolbar.js
More file actions
277 lines (223 loc) · 6.8 KB
/
Copy pathsession-toolbar.js
File metadata and controls
277 lines (223 loc) · 6.8 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
define(function(require, exports) {
'use strict';
// *****************************************************************************
// Custom Modules
// App
const { AppConfig } = require('../config');
// Utils
const { HTMLCreator } = require('../utils/dom');
const { WindowEvents, GlobalEvents } = require('../utils/global-events');
const DOMComponent = require('../utils/components');
// *****************************************************************************
// API
/*
* Command bar
*/
function SessionToolbar()
{
// Create DomHealper
var DomElem = HTMLCreator();
// ------------------------------------------------------------------------
// Create UI
var toolbar = DomElem('div', {class: 'session-toolbar'});
// ------------------------------------------------------------------------
// List settings
var container = DomElem('div', {class: 'session-selector'});
container.style.width = AppConfig.get('style.scale.bookmarks') + 'px';
var activeBtn = DomElem('div', {class: 'button active-session'});
activeBtn.textContent = '';
var syncBtn = DomElem('div', {class: 'button sync'});
syncBtn.textContent = 'Sessions';
var historyBtn = DomElem('div', {class: 'button history'});
historyBtn.textContent = 'History';
container.appendChild(activeBtn);
container.appendChild(syncBtn);
container.appendChild(historyBtn);
toolbar.appendChild(container);
// ------------------------------------------------------------------------
// Session toolbar menu
var sessionMenu = this.createMenu();
toolbar.appendChild(sessionMenu);
var sessionDate = DomElem('div', {class: 'session-date'});
toolbar.appendChild(sessionDate);
// ------------------------------------------------------------------------
// Events
WindowEvents.on(document, 'SetSessionDate', function(date) {
sessionDate.textContent = (new Date(date)).toLocaleString();
});
activeBtn.addEventListener('click', function() {
WindowEvents.emit(document, 'ShowCurrentSession');
});
syncBtn.addEventListener('click', function() {
WindowEvents.emit(document, 'ShowSyncList', { update: true });
});
historyBtn.addEventListener('click', function() {
WindowEvents.emit(document, 'ShowHistoryList');
});
AppConfig.onChange('style.sessions.list.width', function(width) {
container.style.width = width + 'px';
});
AppConfig.onChange('style.scale.toolbar', function(value) {
toolbar.style.fontSize = value + 'px';
});
// ------------------------------------------------------------------------
// Public properties
this.document = document;
this.DOMRoot = toolbar;
}
SessionToolbar.prototype.createMenu = function createMenu()
{
var DomElem = HTMLCreator();
// ------------------------------------------------------------------------
// UI - SessionContainer menu
var menu = DomElem('div', {class: 'menu-bar'});
var ActionButton = function actionButton(options)
{
var button = DomElem('div', {
class: 'button ' + options.className,
'state-current': options.state.current,
'state-restore': options.state.restore,
'state-history': options.state.history,
});
button.setAttribute('tooltip', options.tooltip);
button.addEventListener('click', function (e) {
WindowEvents.emit(document, options.event, e);
});
return button;
};
var save = ActionButton({
tooltip: 'Save session',
className: 'save',
event: 'MenuSaveSession',
state: {
current : true,
history: true
}
});
var add = ActionButton({
tooltip: 'Add current tab',
className: 'add',
event: 'MenuAddCurrentTab',
state: {
restore: true
}
});
var restore = ActionButton({
tooltip: 'Restore',
className: 'restore',
event: 'MenuRestoreClick',
state: {
restore: true
}
});
var restoreW = ActionButton({
tooltip: 'Restore (new window)',
className: 'restore-new-win',
event: 'MenuRestoreNewWindow',
state: {
restore : true,
history: true
}
});
var replaceSession = ActionButton({
tooltip: 'Restore (close active)',
className: 'repalce-session',
event: 'ReplaceSession',
state: {
restore: true
}
});
var replaceSessionAll = ActionButton({
tooltip: 'Restore (close all)',
className: 'repalce-session-all',
event: 'ReplaceSessionAll',
state: {
restore: true
}
});
var mergeSession = ActionButton({
tooltip: 'Merge sessions',
className: 'merge-sessions',
event: 'MenuMergeSessions',
state: {
restore: true
}
});
var overwriteSession = ActionButton({
tooltip: 'Overwrite session',
className: 'replace-session',
event: 'MenuReplaceSession',
state: {
restore: true
}
});
var separator1 = DomElem('div', {class: 'separator'});
var separator2 = DomElem('div', {class: 'separator'});
var saveConfig = DomElem('div', {class: 'save-config'});
// Pin tabs action
var saveCfgKey = 'session.save';
var saveCfg = AppConfig.get(saveCfgKey);
var cfgSavePinned = new DOMComponent.ToggleSwitch({
state: saveCfg.pinned,
tooltip: 'Save pinned tabs',
attribute: 'pin',
onState: '',
offState: '',
callback: function(value) {
saveCfg.pinned = value;
AppConfig.set(saveCfgKey, saveCfg);
}
});
saveConfig.appendChild(cfgSavePinned.DOMRoot);
var cfgAllWindows = new DOMComponent.ToggleSwitch({
state: saveCfg.allWindows,
tooltip: 'Show all windows',
attribute: 'windows',
onState: '',
offState: '',
callback: function(value) {
saveCfg.allWindows = value;
AppConfig.set(saveCfgKey, saveCfg);
}
});
saveConfig.appendChild(cfgAllWindows.DOMRoot);
menu.appendChild(restore);
menu.appendChild(restoreW);
menu.appendChild(replaceSession);
menu.appendChild(replaceSessionAll);
menu.appendChild(separator1);
menu.appendChild(mergeSession);
menu.appendChild(overwriteSession);
menu.appendChild(separator2);
menu.appendChild(add);
menu.appendChild(save);
menu.appendChild(saveConfig);
// ------------------------------------------------------------------------
// Events
AppConfig.onChange(saveCfgKey, function(value) {
cfgSavePinned.setState(value.pinned);
cfgAllWindows.setState(value.allWindows);
});
// Tooltip events
menu.addEventListener('mouseover', function(e) {
var tooltipMsg = e.target.getAttribute('tooltip');
if (tooltipMsg) {
WindowEvents.emit(document, 'ShowTooltip', {
node: e.target,
message: tooltipMsg
});
} else {
WindowEvents.emit(document, 'HideTooltip');
}
});
menu.addEventListener('mouseleave', function() {
WindowEvents.emit(document, 'HideTooltip');
});
// ------------------------------------------------------------------------
// Data
return menu;
};
// *****************************************************************************
// Public API
exports.SessionToolbar = SessionToolbar;
});