This repository was archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.js
More file actions
82 lines (75 loc) · 2.13 KB
/
Copy pathData.js
File metadata and controls
82 lines (75 loc) · 2.13 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
var path = require('path');
var Data = {
config: {
domain: 'https://standing-fleet.apps.goonswarm.org/',
apiUrl: '/api/fleet',
alertStay: 5000,
maxEvents: 20,
uiSpeed: 400,
local_dataport: 44444,
log: 'console'
},
state: {
alertCount: 0,
dimmed: false,
poll: {
loop: 15000,
clipboard: false,
logs: true
},
datasources: {
local: null,
logs: {
handles: [],
path: {
win: path.join(process.env['USERPROFILE'] || '','Documents','EVE','logs','Chatlogs'),
darwin: path.join(process.env['HOME'] || '','Library','Application Support','EVE Online','p_drive','User','My Documents','EVE','logs','Chatlogs')
},
channels: {
"dek.imperium": true,
"brn.imperium": false,
"tnl.imperium": false,
"tri.imperium": false,
"vale.imperium": false,
"vnl.imperium": false,
"fade.imperium": false,
"ce.imperium": false,
"ftn.imperium": false,
"gem.imperium": false,
"cr.imperium": false,
"provi.imperium": false,
"synd.imperium": false,
"ec_gate.imperium": false,
"mo_gate.imperium": false,
"p3_gate.imperium": false
}
}
}
},
build_ui: function() {
return {
logo: $('#top-logo'),
alertContainer: $('#alert-container'),
contentWrapper: $('#content-wrapper'),
dim: $('#dim'),
topMenu: $('#top-menu'),
topMenu_clipboard: $('#top-menu-clipboard'),
topMenu_logs: $('#top-menu-logs'),
bottomMenu: $('#bottom-menu'),
bottomMenu_spinner: $('#bottom-menu-spinner'),
bottomMenu_menu: $('#bottom-menu-menu'),
clipboard: $('#clipboard'),
clipboard_list: $('#clipboard > .list'),
logs: $('#logs'),
logs_list: $('#logs > .list')
};
},
build_templates: function() {
return {
alert: Templates.alert,
event: Templates.event,
report: Templates.report,
panel: Templates.panel
};
}
};