summaryrefslogtreecommitdiff
path: root/js/common.js
blob: ecc820675ff7e2e8e610e242d902edd4058b7f60 (plain)
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
'use strict';

$.urlParam = function(name){
	try {
		const results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(window.location.href);
		return decodeURIComponent(results[1].replace(/\+/g, " ")) || 0;
	} catch (e) {
		return 0;
	}
}

function offline_remove(id, callback) {

	if (confirm("Remove download?")) {

		const cacheId = "epube-book." + id;
		const promises = [];

		console.log("offline remove: " + id);

		localforage.iterate(function(value, key, i) {
			if (key.match(cacheId)) {
				promises.push(localforage.removeItem(key));
			}
		});

		Promise.all(promises).then(function() {
			window.setTimeout(function() {
				callback();
			}, 500);
		});
	}
}

function init_night_mode() {
	if (window.matchMedia) {
		const mql = window.matchMedia('(prefers-color-scheme: dark)');

		mql.addEventListener("change", () => {
			apply_night_mode(mql.matches);
		});

		apply_night_mode(mql.matches);
	}
}

function apply_night_mode(is_night) {
	console.log("night mode changed to", is_night);

	$("#theme_css").attr("href",
		"lib/bootstrap/v3/css/" + (is_night ? "theme-dark.min.css" : "bootstrap-theme.min.css"));
}