BetterDiscordAddons/Plugins/TimedLightDarkMode/TimedLightDarkMode.plugin.js

255 lines
12 KiB
JavaScript
Raw Normal View History

2020-10-20 23:25:34 +02:00
/**
* @name TimedLightDarkMode
2021-03-05 13:26:41 +01:00
* @author DevilBro
2020-10-20 23:25:34 +02:00
* @authorId 278543574059057154
2023-03-25 14:44:09 +01:00
* @version 1.1.8
2021-03-05 13:26:41 +01:00
* @description Adds a Time Slider to the Appearance Settings
2020-10-20 23:25:34 +02:00
* @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien
* @patreon https://www.patreon.com/MircoWittrien
2021-03-09 15:10:55 +01:00
* @website https://mwittrien.github.io/
* @source https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/TimedLightDarkMode/
2021-03-10 09:17:37 +01:00
* @updateUrl https://mwittrien.github.io/BetterDiscordAddons/Plugins/TimedLightDarkMode/TimedLightDarkMode.plugin.js
2020-10-20 23:25:34 +02:00
*/
2019-03-07 23:15:46 +01:00
2020-09-19 20:49:33 +02:00
module.exports = (_ => {
2022-09-01 14:40:11 +02:00
const changeLog = {
2022-09-02 12:37:10 +02:00
2020-09-19 20:49:33 +02:00
};
2020-11-13 19:47:44 +01:00
2022-02-05 21:14:17 +01:00
return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class {
2022-09-01 14:55:22 +02:00
constructor (meta) {for (let key in meta) this[key] = meta[key];}
getName () {return this.name;}
getAuthor () {return this.author;}
getVersion () {return this.version;}
getDescription () {return `The Library Plugin needed for ${this.name} is missing. Open the Plugin Settings to download it. \n\n${this.description}`;}
2021-02-01 17:13:13 +01:00
downloadLibrary () {
2023-11-18 18:31:04 +01:00
BdApi.Net.fetch("https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js").then(r => {
if (!r || r.status != 200) throw new Error();
else return r.text();
}).then(b => {
if (!b) throw new Error();
else return require("fs").writeFile(require("path").join(BdApi.Plugins.folder, "0BDFDB.plugin.js"), b, _ => BdApi.showToast("Finished downloading BDFDB Library", {type: "success"}));
}).catch(error => {
BdApi.alert("Error", "Could not download BDFDB Library Plugin. Try again later or download it manually from GitHub: https://mwittrien.github.io/downloader/?library");
2021-02-01 17:13:13 +01:00
});
}
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
load () {
2020-11-19 16:51:14 +01:00
if (!window.BDFDB_Global || !Array.isArray(window.BDFDB_Global.pluginQueue)) window.BDFDB_Global = Object.assign({}, window.BDFDB_Global, {pluginQueue: []});
2020-09-19 20:49:33 +02:00
if (!window.BDFDB_Global.downloadModal) {
window.BDFDB_Global.downloadModal = true;
2022-09-01 14:55:22 +02:00
BdApi.showConfirmationModal("Library Missing", `The Library Plugin needed for ${this.name} is missing. Please click "Download Now" to install it.`, {
2020-09-19 20:49:33 +02:00
confirmText: "Download Now",
cancelText: "Cancel",
onCancel: _ => {delete window.BDFDB_Global.downloadModal;},
2020-09-20 08:15:13 +02:00
onConfirm: _ => {
delete window.BDFDB_Global.downloadModal;
2021-02-01 17:13:13 +01:00
this.downloadLibrary();
2020-09-20 08:15:13 +02:00
}
2020-09-19 20:49:33 +02:00
});
2020-06-08 20:41:38 +02:00
}
2022-09-01 14:55:22 +02:00
if (!window.BDFDB_Global.pluginQueue.includes(this.name)) window.BDFDB_Global.pluginQueue.push(this.name);
2020-10-09 21:09:35 +02:00
}
2021-01-06 12:38:36 +01:00
start () {this.load();}
stop () {}
getSettingsPanel () {
2020-11-28 23:12:09 +01:00
let template = document.createElement("template");
2022-09-01 14:55:22 +02:00
template.innerHTML = `<div style="color: var(--header-primary); font-size: 16px; font-weight: 300; white-space: pre; line-height: 22px;">The Library Plugin needed for ${this.name} is missing.\nPlease click <a style="font-weight: 500;">Download Now</a> to install it.</div>`;
2021-02-01 17:13:13 +01:00
template.content.firstElementChild.querySelector("a").addEventListener("click", this.downloadLibrary);
2020-11-28 23:12:09 +01:00
return template.content.firstElementChild;
}
2020-10-09 21:09:35 +02:00
} : (([Plugin, BDFDB]) => {
2020-09-19 20:49:33 +02:00
var checkInterval, changeTimeout, disableChanging;
2020-10-09 21:09:35 +02:00
return class TimedLightDarkMode extends Plugin {
2021-01-06 12:38:36 +01:00
onLoad () {
2020-09-19 20:49:33 +02:00
this.defaults = {
2022-10-20 12:44:07 +02:00
general: {
2020-09-19 20:49:33 +02:00
running: {value: true}
},
values: {
2020-11-19 16:51:14 +01:00
timer1: {value: 25},
timer2: {value: 75}
2020-09-19 20:49:33 +02:00
}
};
2020-08-21 20:14:57 +02:00
2022-10-20 12:44:07 +02:00
this.modulePatches = {
after: [
"UserSettingsAppearance"
]
2020-09-19 20:49:33 +02:00
};
}
2021-04-14 14:58:24 +02:00
onStart () {
2022-08-16 14:44:54 +02:00
BDFDB.PatchUtils.patch(this, BDFDB.LibraryModules.AppearanceSettingsUtils, "updateTheme", {after: e => {
2022-10-20 12:44:07 +02:00
if (this.settings.general.running) {
2022-08-16 14:44:54 +02:00
BDFDB.TimeUtils.clear(changeTimeout);
disableChanging = true;
changeTimeout = BDFDB.TimeUtils.timeout(_ => {
disableChanging = false;
}, 1000*60*10);
}
}});
2019-09-04 12:34:02 +02:00
2020-06-08 20:41:38 +02:00
this.startInterval();
2019-09-04 12:34:02 +02:00
2020-09-11 19:31:36 +02:00
BDFDB.PatchUtils.forceAllUpdates(this);
2020-06-08 20:41:38 +02:00
}
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
onStop () {
2020-08-21 20:14:57 +02:00
BDFDB.TimeUtils.clear(checkInterval);
2019-09-04 12:34:02 +02:00
2020-06-08 20:41:38 +02:00
BDFDB.DOMUtils.remove(BDFDB.dotCN._timedlightdarkmodetimersettings);
}
2019-09-04 12:34:02 +02:00
2020-11-21 19:59:21 +01:00
processUserSettingsAppearance (e) {
2023-03-25 14:44:09 +01:00
let [children, index] = BDFDB.ReactUtils.findParent(e.returnvalue, {filter: n => n && n.props && n.props.children == BDFDB.LanguageUtils.LanguageStrings.ACCESSIBILITY_DARK_SIDEBAR});
if (index == -1) return;
2022-10-20 12:44:07 +02:00
let slider;
2023-03-25 14:44:09 +01:00
children.splice(index, 0, [
2022-10-20 12:44:07 +02:00
BDFDB.ReactUtils.createElement("div", {
className: BDFDB.disCNS._timedlightdarkmodetimersettings + BDFDB.disCN.margintop20,
children: [
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
type: "Switch",
plugin: this,
keys: ["general", "running"],
value: this.settings.general.running,
label: `${BDFDB.LanguageUtils.LanguageStrings.THEME} Timer`,
2022-11-22 01:30:30 +01:00
tag: BDFDB.LibraryComponents.FormComponents.FormTags.H5,
2022-10-20 12:44:07 +02:00
childProps: {
2023-03-25 14:44:09 +01:00
checkedColor: BDFDB.DiscordConstants.Colors.GREEN_360
2022-10-20 12:44:07 +02:00
},
onChange: (value, instance) => {
this.startInterval();
if (slider) BDFDB.DOMUtils.toggleClass(slider, BDFDB.disCN.sliderdisabled, !value);
}
}),
BDFDB.ReactUtils.elementToReact(BDFDB.DOMUtils.create(`<div class="${BDFDB.disCNS.slider + BDFDB.disCN.margintop20}${!this.settings.general.running ? (" " + BDFDB.disCN.sliderdisabled): ""}"><div class="${BDFDB.disCN.slidertrack}">${[["0%", "00:00"], ["12.5%", "03:00"], ["25%", "06:00"], ["37.5%", "09:00"], ["50%", "12:00"], ["62.5%", "15:00"], ["75%", "18:00"], ["87.5%", "21:00"], ["100%", "24:00"]].map(n => `<div class="${BDFDB.disCNS.slidermark + BDFDB.disCN.slidermarkabove}" style="left:${n[0]};"><div class="${BDFDB.disCN.slidermarkvalue}">${n[1]}</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div>`).join("")}</div><div class="${BDFDB.disCN.sliderbar}"><div class="${BDFDB.disCN.sliderbarfill}"></div></div><div class="${BDFDB.disCN.slidertrack}"><div class="${BDFDB.disCNS.slidergrabber + BDFDB.disCN._timedlightdarkmodetimergrabber}" timer="timer1" style="left: ${this.settings.values.timer1}%;"></div><div class="${BDFDB.disCNS.slidergrabber + BDFDB.disCN._timedlightdarkmodetimergrabber}" timer="timer2" style="left: ${this.settings.values.timer2}%;"></div><div class="${BDFDB.disCNS.slidergrabber + BDFDB.disCN._timedlightdarkmodedategrabber}" timer="current" style="left: ${this.getPercent(new Date())}%; cursor: help !important; height: 12px; margin-top: -7px;"></div></div></div>`), node => {
if (!Node.prototype.isPrototypeOf(node)) return;
slider = node;
this.updateSlider(slider);
BDFDB.ListenerUtils.addToChildren(slider, "mousedown", BDFDB.dotCN._timedlightdarkmodetimergrabber, event => this.dragSlider(event.currentTarget));
BDFDB.ListenerUtils.addToChildren(slider, "mouseenter", BDFDB.dotCN._timedlightdarkmodedategrabber, event => this.showCurrentTime(event.currentTarget));
})
]
}),
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormDivider, {
className: BDFDB.disCNS.margintop20 + BDFDB.disCN.marginbottom8
})
2023-03-04 14:56:02 +01:00
]);
2020-06-08 20:41:38 +02:00
}
2019-09-04 12:34:02 +02:00
2021-01-06 12:38:36 +01:00
startInterval () {
2020-09-19 20:49:33 +02:00
BDFDB.TimeUtils.clear(checkInterval);
2021-01-23 13:22:18 +01:00
disableChanging = false;
2022-10-20 12:44:07 +02:00
if (this.settings.general.running) {
let inverted = this.settings.values.timer1 > this.settings.values.timer2;
let timer1LOW = this.getTime(this.settings.values.timer1), timer2LOW = this.getTime(this.settings.values.timer2);
2020-09-19 20:49:33 +02:00
let timer1HIGH = this.getHighTime(timer2LOW), timer2HIGH = this.getHighTime(timer1LOW);
let check = _ => {
if (disableChanging) return;
let currentTime = new Date();
let currentHours = currentTime.getHours();
let currentMinutes = currentTime.getMinutes();
if (inverted) this.changeTheme(!(this.checkTime(timer1LOW, timer1HIGH, [currentHours, currentMinutes])));
else this.changeTheme(this.checkTime(timer2LOW, timer2HIGH, [currentHours, currentMinutes]));
};
check();
checkInterval = BDFDB.TimeUtils.interval(_ => {check();}, 1000*60*1);
}
2020-06-08 20:41:38 +02:00
}
2019-09-04 12:34:02 +02:00
2020-09-19 20:49:33 +02:00
checkTime (timerLOW, timerHIGH, time) {
return timerHIGH[0] > time[0] || timerHIGH[0] == time[0] && timerHIGH[1] >= time[1] || time[0] > timerLOW[0] || time[0] == timerLOW[0] && time[1] >= timerLOW[1];
}
2019-09-04 12:34:02 +02:00
2020-09-19 20:49:33 +02:00
changeTheme (dark) {
2022-08-16 14:44:54 +02:00
let theme = BDFDB.DiscordUtils.getTheme(), newTheme = null;
if (dark && theme == BDFDB.disCN.themelight) newTheme = "dark";
else if (!dark && theme == BDFDB.disCN.themedark) newTheme = "light";
2022-08-18 08:36:12 +02:00
if (newTheme) BDFDB.LibraryModules.AppearanceSettingsUtils.updateTheme(newTheme);
2020-09-19 20:49:33 +02:00
}
2019-09-04 12:34:02 +02:00
2020-09-19 20:49:33 +02:00
showCurrentTime (grabber) {
let currentTime = new Date();
let currentHours = currentTime.getHours();
let currentMinutes = currentTime.getMinutes();
grabber.style.setProperty("left", `${this.getPercent(currentTime)}%`);
BDFDB.TooltipUtils.create(grabber, (currentHours > 9 ? currentHours : ("0" + currentHours)) + ":" + (currentMinutes > 9 ? currentMinutes : ("0" + currentMinutes)), {color: "grey"});
}
2019-09-04 12:34:02 +02:00
2020-09-19 20:49:33 +02:00
dragSlider (grabber) {
let track = grabber.parentNode;
if (BDFDB.DOMUtils.containsClass(track.parentNode, BDFDB.disCN.sliderdisabled)) return;
let timer = grabber.getAttribute("timer");
BDFDB.DOMUtils.appendLocalStyle("disableTextSelection", `*{user-select: none !important;}`);
2022-10-20 12:44:07 +02:00
let value = this.settings.values[timer];
2020-09-19 20:49:33 +02:00
let sY = 0;
let sHalfW = BDFDB.DOMUtils.getRects(grabber).width/2;
let sMinX = BDFDB.DOMUtils.getRects(track).left;
let sMaxX = sMinX + BDFDB.DOMUtils.getRects(track).width;
let tooltip = BDFDB.TooltipUtils.create(grabber, this.getTime(value, true), {color: "grey", perssist: true});
let tooltipContent = tooltip.querySelector(BDFDB.dotCN.tooltipcontent);
2020-11-21 19:59:21 +01:00
let mouseUp = _ => {
document.removeEventListener("mouseup", mouseUp);
document.removeEventListener("mousemove", mouseMove);
2020-09-19 20:49:33 +02:00
BDFDB.DOMUtils.removeLocalStyle("disableTextSelection");
BDFDB.DataUtils.save(value, this, "values", timer);
BDFDB.DOMUtils.remove(tooltip);
this.startInterval();
};
2020-11-21 19:59:21 +01:00
let mouseMove = e => {
2020-09-19 20:49:33 +02:00
sY = e.clientX > sMaxX ? sMaxX - sHalfW : (e.clientX < sMinX ? sMinX - sHalfW : e.clientX - sHalfW);
value = BDFDB.NumberUtils.mapRange([sMinX - sHalfW, sMaxX - sHalfW], [0, 100], sY);
grabber.style.setProperty("left", value + "%");
tooltipContent.innerText = this.getTime(value, true);
tooltip.update();
2022-10-20 12:44:07 +02:00
this.settings.values[timer] = value;
this.updateSlider(track.parentNode);
2020-09-19 20:49:33 +02:00
};
2020-11-21 19:59:21 +01:00
document.addEventListener("mouseup", mouseUp);
document.addEventListener("mousemove", mouseMove);
2020-09-19 20:49:33 +02:00
}
2019-09-04 12:34:02 +02:00
2022-10-20 12:44:07 +02:00
updateSlider (slider) {
2020-09-19 20:49:33 +02:00
let bar = slider.querySelector(BDFDB.dotCN.sliderbar);
let fill = slider.querySelector(BDFDB.dotCN.sliderbarfill);
2022-10-20 12:44:07 +02:00
let inverted = this.settings.values.timer1 > this.settings.values.timer2;
fill.style.setProperty("width", (inverted ? (this.settings.values.timer1 - this.settings.values.timer2) : (this.settings.values.timer2 - this.settings.values.timer1)) + "%");
fill.style.setProperty("margin-left", (inverted ? this.settings.values.timer2 : this.settings.values.timer1) + "%");
2020-09-19 20:49:33 +02:00
fill.style.setProperty("background-color", inverted ? "#66757F" : "#E0C460", "important");
bar.style.setProperty("background-color", inverted ? "#E0C460" : "#66757F", "important");
}
2019-09-04 12:34:02 +02:00
2020-09-19 20:49:33 +02:00
getTime (percent, stringify) {
let time = BDFDB.NumberUtils.mapRange([0, 100], [0, 1440], percent)/60;
let hours = Math.floor(time);
let minutes = Math.floor((time - hours) * 60);
2020-11-21 19:59:21 +01:00
return stringify ? (hours > 9 ? hours : ("0" + hours)) + ":" + (minutes > 9 ? minutes : ("0" + minutes)) : [hours, minutes];
2020-09-19 20:49:33 +02:00
}
2019-09-04 12:34:02 +02:00
2020-09-19 20:49:33 +02:00
getPercent (time) {
if (!time) return 0;
2020-11-21 19:59:21 +01:00
let hours = Array.isArray(time) ? time[0] : (typeof time == "object" && typeof time.getHours == "function" ? time.getHours() :0);
let minutes = Array.isArray(time) ? time[1] : (typeof time == "object" && typeof time.getMinutes == "function" ? time.getMinutes() :0);
2020-09-19 20:49:33 +02:00
return BDFDB.NumberUtils.mapRange([0, 1440], [0, 100], (hours * 60) + minutes);
2020-06-08 20:41:38 +02:00
}
2020-07-26 16:39:51 +02:00
2020-09-19 20:49:33 +02:00
getHighTime (timer) {
let hours = timer[0];
let minutes = timer[1] - 1;
if (minutes < 0) {
minutes = 59;
hours -= 1;
}
if (hours < 0) hours = 0;
return [hours, minutes];
}
};
2022-09-01 14:40:11 +02:00
})(window.BDFDB_Global.PluginUtils.buildPlugin(changeLog));
2020-09-19 20:49:33 +02:00
})();