aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/darkmode.ts
blob: 88d39f19ff5759c5b59dbf673999f1eaf8afa921 (plain) (blame)
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
import { join } from 'node:path';
import { pathExistsSync, readFileSync } from 'fs-extra';

const debug = require('../preload-safe-debug')('Ferdium:DarkMode');

const chars = [...'abcdefghijklmnopqrstuvwxyz'];

const ID = Array.from({ length: 20 })
  .map(() => chars[Math.trunc(Math.random() * chars.length)])
  .join('');

function darkModeFilePath(recipePath: string) {
  return join(recipePath, 'darkmode.css');
}

export function darkModeStyleExists(recipePath: string) {
  return pathExistsSync(darkModeFilePath(recipePath));
}

export function injectDarkModeStyle(recipePath: string) {
  if (darkModeStyleExists(recipePath)) {
    const darkmodeCss = darkModeFilePath(recipePath);
    const data = readFileSync(darkmodeCss);
    const styles = document.createElement('style');
    styles.id = ID;
    styles.innerHTML = data.toString();
    debug('Loaded darkmode.css from: ', darkmodeCss);

    document.querySelector('head')?.append(styles);

    debug('Injected Dark Mode style with ID', ID);
  }
}

export function removeDarkModeStyle() {
  const style = document.querySelector(`#${ID}`);

  if (style) {
    style.remove();

    debug('Removed Dark Mode Style with ID', ID);
  }
}

export function isDarkModeStyleInjected() {
  return !!document.querySelector(`#${ID}`);
}