2020-10-20 23:25:34 +02:00
|
|
|
/**
|
|
|
|
* @name TimedLightDarkMode
|
|
|
|
* @authorId 278543574059057154
|
|
|
|
* @invite Jx3TjNS
|
|
|
|
* @donate https://www.paypal.me/MircoWittrien
|
|
|
|
* @patreon https://www.patreon.com/MircoWittrien
|
|
|
|
* @website https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/TimedLightDarkMode
|
|
|
|
* @source https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/TimedLightDarkMode/TimedLightDarkMode.plugin.js
|
2020-11-12 17:30:48 +01:00
|
|
|
* @updateUrl https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/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 = (_ => {
|
2020-10-09 21:09:35 +02:00
|
|
|
const config = {
|
2020-09-19 20:49:33 +02:00
|
|
|
"info": {
|
|
|
|
"name": "TimedLightDarkMode",
|
|
|
|
"author": "DevilBro",
|
|
|
|
"version": "1.0.8",
|
2020-10-16 10:43:26 +02:00
|
|
|
"description": "Allow you to automatically change light/dark mode depending on the time of day - Slider is added to the 'Appearance' settings"
|
2020-09-19 20:49:33 +02:00
|
|
|
}
|
|
|
|
};
|
2020-11-13 19:47:44 +01:00
|
|
|
|
2020-10-09 21:09:35 +02:00
|
|
|
return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class {
|
2020-09-19 20:49:33 +02:00
|
|
|
getName () {return config.info.name;}
|
|
|
|
getAuthor () {return config.info.author;}
|
|
|
|
getVersion () {return config.info.version;}
|
|
|
|
getDescription () {return config.info.description;}
|
|
|
|
|
2020-10-09 21:09:35 +02: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;
|
|
|
|
BdApi.showConfirmationModal("Library Missing", `The library plugin needed for ${config.info.name} is missing. Please click "Download Now" to install it.`, {
|
|
|
|
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;
|
|
|
|
require("request").get("https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js", (e, r, b) => {
|
2020-10-20 23:25:34 +02:00
|
|
|
if (!e && b && b.indexOf(`* @name BDFDB`) > -1) require("fs").writeFile(require("path").join(BdApi.Plugins.folder, "0BDFDB.plugin.js"), b, _ => {});
|
2020-09-20 08:15:13 +02:00
|
|
|
else BdApi.alert("Error", "Could not download BDFDB library plugin, try again some time later.");
|
|
|
|
});
|
|
|
|
}
|
2020-09-19 20:49:33 +02:00
|
|
|
});
|
2020-06-08 20:41:38 +02:00
|
|
|
}
|
2020-09-19 20:49:33 +02:00
|
|
|
if (!window.BDFDB_Global.pluginQueue.includes(config.info.name)) window.BDFDB_Global.pluginQueue.push(config.info.name);
|
2020-10-09 21:09:35 +02:00
|
|
|
}
|
|
|
|
start() {this.load();}
|
|
|
|
stop() {}
|
|
|
|
} : (([Plugin, BDFDB]) => {
|
2020-09-19 20:49:33 +02:00
|
|
|
var checkInterval, changeTimeout, disableChanging;
|
|
|
|
var settings = {}, values = {};
|
|
|
|
|
2020-10-09 21:09:35 +02:00
|
|
|
return class TimedLightDarkMode extends Plugin {
|
2020-09-19 20:49:33 +02:00
|
|
|
onLoad() {
|
|
|
|
this.defaults = {
|
|
|
|
settings: {
|
|
|
|
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
|
|
|
|
2020-09-19 20:49:33 +02:00
|
|
|
this.patchedModules = {
|
|
|
|
after: {
|
|
|
|
RadioGroup: "componentDidMount"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
onStart() {
|
2020-09-11 19:31:36 +02:00
|
|
|
BDFDB.PatchUtils.patch(this, BDFDB.LibraryModules.SettingsUtils, "updateLocalSettings", {after: e => {
|
2020-08-21 20:14:57 +02:00
|
|
|
if (BDFDB.ObjectUtils.is(e.methodArguments[0]) && e.methodArguments[0].theme) {
|
|
|
|
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
|
|
|
|
|
|
|
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-09-19 20:49:33 +02:00
|
|
|
processRadioGroup (e) {
|
|
|
|
if (e.instance.props && Array.isArray(e.instance.props.options) && e.instance.props.options[0] && (e.instance.props.options[0].value == "light" || e.instance.props.options[0].value == "dark") && e.instance.props.options[1] && (e.instance.props.options[1].value == "light" || e.instance.props.options[1].value == "dark") && e.node.parentElement.firstElementChild.innerText && e.node.parentElement.firstElementChild.innerText.toUpperCase() == BDFDB.LanguageUtils.LanguageStrings.THEME.toUpperCase()) {
|
|
|
|
let slider, settingsBox = BDFDB.DOMUtils.create(`<div class="${BDFDB.disCNS._timedlightdarkmodetimersettings + BDFDB.disCN.margintop8}"></div>`);
|
|
|
|
BDFDB.ReactUtils.render(BDFDB.ReactUtils.createElement(BDFDB.ReactUtils.Fragment, {
|
|
|
|
children: [
|
|
|
|
BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
|
|
|
type: "Switch",
|
|
|
|
plugin: this,
|
|
|
|
keys: ["settings", "running"],
|
|
|
|
value: settings.running,
|
|
|
|
label: `${BDFDB.LanguageUtils.LanguageStrings.THEME} Timer`,
|
|
|
|
tag: BDFDB.LibraryComponents.FormComponents.FormTitle.Tags.H5,
|
|
|
|
onChange: (value, instance) => {
|
|
|
|
this.startInterval();
|
|
|
|
if (slider) BDFDB.DOMUtils.toggleClass(slider, BDFDB.disCN.sliderdisabled, !value);
|
|
|
|
}
|
|
|
|
}),
|
2020-11-19 16:51:14 +01:00
|
|
|
BDFDB.ReactUtils.elementToReact(BDFDB.DOMUtils.create(`<div class="${BDFDB.disCNS.slider + BDFDB.disCN.margintop20}${!settings.running ? (" " + BDFDB.disCN.sliderdisabled): ""}"><input type="number" timer="timer1" class="${BDFDB.disCN.sliderinput}" value="${values.timer1}" readonly=""><input type="number" timer="timer2" class="${BDFDB.disCN.sliderinput}" value="${values.timer2}" readonly=""><div class="${BDFDB.disCN.slidertrack}"><div class="${BDFDB.disCN.slidermark}" style="left: 0%;"><div class="${BDFDB.disCN.slidermarkvalue}">00: 00</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div><div class="${BDFDB.disCN.slidermark}" style="left: 12.5%;"><div class="${BDFDB.disCN.slidermarkvalue}">03: 00</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div><div class="${BDFDB.disCN.slidermark}" style="left: 25%;"><div class="${BDFDB.disCN.slidermarkvalue}">06: 00</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div><div class="${BDFDB.disCN.slidermark}" style="left: 37.5%;"><div class="${BDFDB.disCN.slidermarkvalue}">09: 00</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div><div class="${BDFDB.disCN.slidermark}" style="left: 50%;"><div class="${BDFDB.disCN.slidermarkvalue}">12: 00</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div><div class="${BDFDB.disCN.slidermark}" style="left: 62.5%;"><div class="${BDFDB.disCN.slidermarkvalue}">15: 00</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div><div class="${BDFDB.disCN.slidermark}" style="left: 75%;"><div class="${BDFDB.disCN.slidermarkvalue}">18: 00</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div><div class="${BDFDB.disCN.slidermark}" style="left: 87.5%;"><div class="${BDFDB.disCN.slidermarkvalue}">21: 00</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div><div class="${BDFDB.disCN.slidermark}" style="left: 100%;"><div class="${BDFDB.disCN.slidermarkvalue}">24: 00</div><div class="${BDFDB.disCN.slidermarkdash}"></div></div></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: ${values.timer1}%;"></div><div class="${BDFDB.disCNS.slidergrabber + BDFDB.disCN._timedlightdarkmodetimergrabber}" timer="timer2" style="left: ${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 => {
|
2020-09-19 20:49:33 +02:00
|
|
|
if (Node.prototype.isPrototypeOf(node)) {
|
|
|
|
slider = node;
|
|
|
|
this.updateSlider(slider, values);
|
|
|
|
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);});
|
|
|
|
}
|
|
|
|
})
|
|
|
|
]
|
|
|
|
}), settingsBox);
|
|
|
|
e.node.parentElement.appendChild(settingsBox);
|
|
|
|
}
|
2020-06-08 20:41:38 +02:00
|
|
|
}
|
2019-09-04 12:34:02 +02:00
|
|
|
|
2020-09-19 20:49:33 +02:00
|
|
|
startInterval () {
|
|
|
|
BDFDB.TimeUtils.clear(checkInterval);
|
|
|
|
settings = BDFDB.DataUtils.get(this, "settings");
|
|
|
|
values = BDFDB.DataUtils.get(this, "values");
|
|
|
|
if (settings.running) {
|
|
|
|
let inverted = values.timer1 > values.timer2;
|
|
|
|
let timer1LOW = this.getTime(values.timer1), timer2LOW = this.getTime(values.timer2);
|
|
|
|
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) {
|
|
|
|
let theme = BDFDB.DiscordUtils.getTheme();
|
2020-11-19 16:51:14 +01:00
|
|
|
if (dark && theme == BDFDB.disCN.themelight) BDFDB.LibraryModules.SettingsUtils.updateLocalSettings({theme: "dark"});
|
|
|
|
else if (!dark && theme == BDFDB.disCN.themedark) BDFDB.LibraryModules.SettingsUtils.updateLocalSettings({theme: "light"});
|
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");
|
|
|
|
let input = track.parentNode.querySelector(`${BDFDB.dotCN.sliderinput}[timer="${timer}"]`);
|
|
|
|
|
|
|
|
BDFDB.DOMUtils.appendLocalStyle("disableTextSelection", `*{user-select: none !important;}`);
|
|
|
|
|
|
|
|
let value = values[timer];
|
|
|
|
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);
|
|
|
|
let mouseup = _ => {
|
|
|
|
document.removeEventListener("mouseup", mouseup);
|
|
|
|
document.removeEventListener("mousemove", mousemove);
|
|
|
|
BDFDB.DOMUtils.removeLocalStyle("disableTextSelection");
|
|
|
|
BDFDB.DataUtils.save(value, this, "values", timer);
|
|
|
|
BDFDB.DOMUtils.remove(tooltip);
|
|
|
|
this.startInterval();
|
|
|
|
};
|
|
|
|
let mousemove = e => {
|
|
|
|
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);
|
|
|
|
input.value = value;
|
|
|
|
grabber.style.setProperty("left", value + "%");
|
|
|
|
tooltipContent.innerText = this.getTime(value, true);
|
|
|
|
tooltip.update();
|
|
|
|
values[timer] = value;
|
|
|
|
this.updateSlider(track.parentNode, values);
|
|
|
|
};
|
|
|
|
document.addEventListener("mouseup", mouseup);
|
|
|
|
document.addEventListener("mousemove", mousemove);
|
|
|
|
}
|
2019-09-04 12:34:02 +02:00
|
|
|
|
2020-09-19 20:49:33 +02:00
|
|
|
updateSlider (slider, values) {
|
|
|
|
let bar = slider.querySelector(BDFDB.dotCN.sliderbar);
|
|
|
|
let fill = slider.querySelector(BDFDB.dotCN.sliderbarfill);
|
|
|
|
let inverted = values.timer1 > values.timer2;
|
|
|
|
fill.style.setProperty("width", (inverted ? (values.timer1 - values.timer2) : (values.timer2 - values.timer1)) + "%");
|
|
|
|
fill.style.setProperty("margin-left", (inverted ? values.timer2 : values.timer1) + "%");
|
|
|
|
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);
|
|
|
|
return stringify ? (hours > 9 ? hours : ("0" + hours)) + ":" + (minutes > 9 ? minutes : ("0" + minutes)) : [hours,minutes];
|
|
|
|
}
|
2019-09-04 12:34:02 +02:00
|
|
|
|
2020-09-19 20:49:33 +02:00
|
|
|
getPercent (time) {
|
|
|
|
if (!time) return 0;
|
|
|
|
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);
|
|
|
|
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];
|
|
|
|
}
|
|
|
|
};
|
2020-10-09 21:09:35 +02:00
|
|
|
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
|
2020-09-19 20:49:33 +02:00
|
|
|
})();
|