BetterDiscordAddons/Plugins/JoinedAtDate/JoinedAtDate.plugin.js

357 lines
13 KiB
JavaScript
Raw Normal View History

2020-10-20 23:25:34 +02:00
/**
* @name JoinedAtDate
2021-03-05 13:26:41 +01:00
* @author DevilBro
2020-10-20 23:25:34 +02:00
* @authorId 278543574059057154
2021-06-30 23:25:27 +02:00
* @version 1.3.3
2021-03-05 13:26:41 +01:00
* @description Displays the Joined At Date of a Member in the UserPopout and UserModal
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/JoinedAtDate/
2021-03-10 09:17:37 +01:00
* @updateUrl https://mwittrien.github.io/BetterDiscordAddons/Plugins/JoinedAtDate/JoinedAtDate.plugin.js
2020-10-20 23:25:34 +02:00
*/
2018-11-23 16:58:33 +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": "JoinedAtDate",
"author": "DevilBro",
2021-06-30 23:25:27 +02:00
"version": "1.3.3",
2021-03-04 12:15:46 +01:00
"description": "Displays the Joined At Date of a Member in the UserPopout and UserModal"
2020-10-14 21:21:08 +02:00
},
"changeLog": {
2021-06-08 23:14:34 +02:00
"fixed": {
2021-06-30 23:25:27 +02:00
"User Popout": "No Longer requires you to open the Popout twice"
2020-10-14 21:21:08 +02:00
}
2020-05-26 10:13:46 +02:00
}
2020-09-19 20:49:33 +02:00
};
2020-11-13 19:47:44 +01:00
2021-06-15 13:42:02 +02:00
return (window.Lightcord || window.LightCord) ? class {
getName () {return config.info.name;}
getAuthor () {return config.info.author;}
getVersion () {return config.info.version;}
getDescription () {return "Do not use LightCord!";}
load () {BdApi.alert("Attention!", "By using LightCord you are risking your Discord Account, due to using a 3rd Party Client. Switch to an official Discord Client (https://discord.com/) with the proper BD Injection (https://betterdiscord.app/)");}
start() {}
stop() {}
} : !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class {
2021-01-06 12:38:36 +01:00
getName () {return config.info.name;}
getAuthor () {return config.info.author;}
getVersion () {return config.info.version;}
2021-02-01 17:13:13 +01:00
getDescription () {return `The Library Plugin needed for ${config.info.name} is missing. Open the Plugin Settings to download it. \n\n${config.info.description}`;}
downloadLibrary () {
require("request").get("https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js", (e, r, b) => {
2021-03-05 13:14:18 +01:00
if (!e && b && r.statusCode == 200) require("fs").writeFile(require("path").join(BdApi.Plugins.folder, "0BDFDB.plugin.js"), b, _ => BdApi.showToast("Finished downloading BDFDB Library", {type: "success"}));
2021-03-06 14:59:48 +01:00
else 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;
2021-01-14 16:14:44 +01:00
BdApi.showConfirmationModal("Library Missing", `The Library Plugin needed for ${config.info.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-05-26 10:13:46 +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
}
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");
2021-01-14 16:14:44 +01: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 ${config.info.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]) => {
2021-06-30 23:25:27 +02:00
var _this;
2021-07-05 21:34:35 +02:00
var loadedUsers, requestedUsers, queuedInstances;
2021-06-08 23:14:34 +02:00
var currentPopout, currentProfile;
2020-09-19 20:49:33 +02:00
2020-10-09 21:09:35 +02:00
return class JoinedAtDate extends Plugin {
2021-01-06 12:38:36 +01:00
onLoad () {
2021-06-30 23:25:27 +02:00
_this = this;
2020-09-19 20:49:33 +02:00
loadedUsers = {};
requestedUsers = {};
2021-07-05 21:34:35 +02:00
queuedInstances = {};
2019-01-26 22:45:19 +01:00
2020-09-19 20:49:33 +02:00
this.defaults = {
2021-03-15 13:28:17 +01:00
general: {
displayText: {value: true, description: "Display '{{presuffix}}' in the Date"}
2020-09-19 20:49:33 +02:00
},
2021-03-15 13:28:17 +01:00
places: {
userPopout: {value: true, description: "User Popouts"},
userProfile: {value: true, description: "User Profile Modal"}
2020-09-19 20:49:33 +02:00
},
2021-03-15 13:28:17 +01:00
dates: {
joinedAtDate: {value: {}, description: "Joined at Date"},
2020-09-19 20:49:33 +02:00
}
};
this.patchedModules = {
after: {
2021-06-30 23:25:27 +02:00
UserPopoutContainer: "type",
2021-06-25 10:14:18 +02:00
UserPopoutInfo: "UserPopoutInfo",
2021-06-30 23:25:27 +02:00
UserProfileModal: "default",
2021-06-08 23:14:34 +02:00
UserProfileModalHeader: "default"
2020-09-19 20:49:33 +02:00
}
};
}
2021-01-06 12:38:36 +01:00
onStart () {
2021-03-15 13:28:17 +01:00
BDFDB.PatchUtils.forceAllUpdates(this);
2020-05-26 10:13:46 +02:00
}
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
onStop () {
2021-03-15 13:28:17 +01:00
BDFDB.PatchUtils.forceAllUpdates(this);
2020-05-26 10:13:46 +02:00
}
2018-11-23 16:58:33 +01:00
2020-09-19 20:49:33 +02:00
getSettingsPanel (collapseStates = {}) {
2021-03-15 13:28:17 +01:00
let settingsPanel;
return settingsPanel = BDFDB.PluginUtils.createSettingsPanel(this, {
2020-09-19 20:49:33 +02:00
collapseStates: collapseStates,
2021-03-15 13:28:17 +01:00
children: _ => {
let settingsItems = [];
settingsItems.push(Object.keys(this.defaults.general).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
type: "Switch",
plugin: this,
keys: ["general", key],
label: key == "displayText" ? this.defaults.general[key].description.replace("{{presuffix}}", this.labels.joined_at.replace("{{time}}", "").trim()) : this.defaults.general[key].description,
value: this.settings.general[key]
})));
settingsItems.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormDivider, {
className: BDFDB.disCN.marginbottom8
}));
settingsItems.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsPanelList, {
title: "Add Date in:",
children: Object.keys(this.defaults.places).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
type: "Switch",
plugin: this,
keys: ["places", key],
label: this.defaults.places[key].description,
value: this.settings.places[key]
}))
}));
settingsItems.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.FormComponents.FormDivider, {
className: BDFDB.disCN.marginbottom8
}));
settingsItems.push(Object.keys(this.defaults.dates).map(key => BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.DateInput, Object.assign({}, this.settings.dates[key], {
label: this.defaults.dates[key].description,
prefix: _ => (this.settings.general.displayText && this.labels.joined_at.split("{{time}}")[0] || "").trim(),
suffix: _ => (this.settings.general.displayText && this.labels.joined_at.split("{{time}}")[1] || "").trim(),
onChange: valueObj => {
this.SettingsUpdated = true;
this.settings.dates[key] = valueObj;
BDFDB.DataUtils.save(this.settings.dates, this, "dates");
}
}))));
return settingsItems.flat(10);
}
});
2020-07-11 23:28:30 +02:00
}
2021-01-06 12:38:36 +01:00
onSettingsClosed () {
2020-09-19 20:49:33 +02:00
if (this.SettingsUpdated) {
delete this.SettingsUpdated;
2021-03-15 13:28:17 +01:00
BDFDB.PatchUtils.forceAllUpdates(this);
2020-09-19 20:49:33 +02:00
}
2020-05-26 10:13:46 +02:00
}
2019-01-26 22:45:19 +01:00
2021-06-30 23:25:27 +02:00
processUserPopoutContainer (e) {
currentPopout = e.instance;
2021-05-21 16:12:36 +02:00
}
2021-06-30 23:25:27 +02:00
2021-06-03 16:27:44 +02:00
processUserPopoutInfo (e) {
2021-06-08 23:14:34 +02:00
if (currentPopout && e.instance.props.user && this.settings.places.userPopout) {
2021-06-25 10:14:18 +02:00
let [children, index] = BDFDB.ReactUtils.findParent(e.returnvalue, {name: ["DiscordTag", "ColoredFluxTag"]});
2021-06-30 23:25:27 +02:00
if (index > -1) this.injectDate(children, index + 1, e.instance.props.user, currentPopout.props.guildId);
2020-09-19 20:49:33 +02:00
}
2020-07-19 01:05:21 +02:00
}
2021-06-30 23:25:27 +02:00
processUserProfileModal (e) {
currentProfile = e.instance;
}
2021-06-08 23:14:34 +02:00
processUserProfileModalHeader (e) {
if (currentProfile && e.instance.props.user && this.settings.places.userProfile) {
let [children, index] = BDFDB.ReactUtils.findParent(e.returnvalue, {name: ["DiscordTag", "ColoredFluxTag"]});
2021-06-30 23:25:27 +02:00
if (index > -1) this.injectDate(children, index + 1, e.instance.props.user, currentProfile.props.guildId);
2020-09-19 20:49:33 +02:00
}
2019-02-22 21:39:10 +01:00
}
2020-09-19 20:49:33 +02:00
2021-06-30 23:25:27 +02:00
injectDate (children, index, user, guildId) {
2020-09-19 20:49:33 +02:00
if (!guildId) guildId = BDFDB.LibraryModules.LastGuildStore.getGuildId();
2021-07-05 21:16:01 +02:00
if (!BDFDB.ArrayUtils.is(children) || !user || !guildId || user.isNonUserBot() || !BDFDB.LibraryModules.MemberStore.getMember(guildId, user.id)) return;
2021-06-30 23:25:27 +02:00
2020-09-19 20:49:33 +02:00
if (!loadedUsers[guildId]) loadedUsers[guildId] = {};
if (!requestedUsers[guildId]) requestedUsers[guildId] = {};
2021-07-05 21:34:35 +02:00
if (!queuedInstances[guildId]) queuedInstances[guildId] = {};
2021-06-30 23:25:27 +02:00
2021-07-05 21:34:35 +02:00
if (!loadedUsers[guildId][user.id] && !requestedUsers[guildId][user.id]) {
requestedUsers[guildId][user.id] = true;
queuedInstances[guildId][user.id] = [].concat(queuedInstances[guildId][user.id]).filter(n => n);
2020-09-19 20:49:33 +02:00
BDFDB.LibraryModules.APIUtils.get(BDFDB.DiscordConstants.Endpoints.GUILD_MEMBER(guildId, user.id)).then(result => {
2021-07-05 21:34:35 +02:00
delete requestedUsers[guildId][user.id];
2021-07-05 21:24:43 +02:00
if (typeof result.body.retry_after != "number") {
loadedUsers[guildId][user.id] = new Date(result.body.joined_at);
2021-07-05 21:34:35 +02:00
BDFDB.ReactUtils.forceUpdate(queuedInstances[guildId][user.id]);
delete queuedInstances[guildId][user.id];
2021-07-05 21:24:43 +02:00
}
else BDFDB.TimeUtils.timeout(_ => this.injectDate(children, index, user, guildId), result.body.retry_after + 500);
2020-09-19 20:49:33 +02:00
});
}
2021-06-30 23:25:27 +02:00
children.splice(index, 0, BDFDB.ReactUtils.createElement(class extends BDFDB.ReactUtils.Component {
render() {
if (!loadedUsers[guildId][user.id]) {
2021-07-05 21:34:35 +02:00
if (queuedInstances[guildId][user.id].indexOf(this) == -1) queuedInstances[guildId][user.id].push(this);
2021-06-30 23:25:27 +02:00
return null;
}
else {
let timestamp = BDFDB.LibraryComponents.DateInput.format(_this.settings.dates.joinedAtDate, loadedUsers[guildId][user.id]);
return BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TextScroller, {
className: BDFDB.disCNS._joinedatdatedate + BDFDB.disCNS.userinfodate + BDFDB.disCN.textrow,
children: _this.settings.general.displayText ? _this.labels.joined_at.replace("{{time}}", timestamp) : timestamp
});
}
}
}));
2020-05-26 10:13:46 +02:00
}
2019-01-26 22:45:19 +01:00
2021-01-06 12:38:36 +01:00
setLabelsByLanguage () {
2020-09-19 20:49:33 +02:00
switch (BDFDB.LanguageUtils.getLanguage().id) {
case "bg": // Bulgarian
2020-09-19 20:49:33 +02:00
return {
joined_at: "Присъединил се на {{time}}"
2020-09-19 20:49:33 +02:00
};
2021-07-05 18:38:04 +02:00
case "cs": // Czech
return {
joined_at: "Připojeno {{time}}"
};
case "da": // Danish
2020-09-19 20:49:33 +02:00
return {
joined_at: "Deltog den {{time}}"
2020-09-19 20:49:33 +02:00
};
case "de": // German
2020-09-19 20:49:33 +02:00
return {
2021-03-15 13:28:17 +01:00
joined_at: "Beitritt am {{time}}"
2020-09-19 20:49:33 +02:00
};
case "el": // Greek
2020-09-19 20:49:33 +02:00
return {
joined_at: "Έγινε μέλος στις {{time}}"
2020-09-19 20:49:33 +02:00
};
case "es": // Spanish
2020-09-19 20:49:33 +02:00
return {
joined_at: "Se unió el {{time}}"
2020-09-19 20:49:33 +02:00
};
case "fi": // Finnish
2020-09-19 20:49:33 +02:00
return {
joined_at: "Liittyi {{time}}"
2020-09-19 20:49:33 +02:00
};
case "fr": // French
2020-09-19 20:49:33 +02:00
return {
2021-04-30 12:00:48 +02:00
joined_at: "Rejoint le {{time}}"
2020-09-19 20:49:33 +02:00
};
2021-07-05 18:38:04 +02:00
case "hi": // Hindi
return {
joined_at: "{{time}} को शामिल हुए"
};
case "hr": // Croatian
2020-09-19 20:49:33 +02:00
return {
joined_at: "Pridružio se {{time}}"
2020-09-19 20:49:33 +02:00
};
case "hu": // Hungarian
2020-09-19 20:49:33 +02:00
return {
joined_at: "Csatlakozott: {{time}}"
2020-09-19 20:49:33 +02:00
};
case "it": // Italian
2020-09-19 20:49:33 +02:00
return {
joined_at: "Iscritto il {{time}}"
2020-09-19 20:49:33 +02:00
};
case "ja": // Japanese
2020-09-19 20:49:33 +02:00
return {
joined_at: "{{time}}に参加しました"
2020-09-19 20:49:33 +02:00
};
case "ko": // Korean
2020-09-19 20:49:33 +02:00
return {
joined_at: "{{time}}에 가입했습니다."
2020-09-19 20:49:33 +02:00
};
case "lt": // Lithuanian
2020-09-19 20:49:33 +02:00
return {
joined_at: "Prisijungė {{time}}"
2020-09-19 20:49:33 +02:00
};
case "nl": // Dutch
2020-09-19 20:49:33 +02:00
return {
joined_at: "Aangesloten op {{time}}"
2020-09-19 20:49:33 +02:00
};
case "no": // Norwegian
2020-09-19 20:49:33 +02:00
return {
joined_at: "Ble med {{time}}"
2020-09-19 20:49:33 +02:00
};
case "pl": // Polish
2020-09-19 20:49:33 +02:00
return {
joined_at: "Dołączono {{time}}"
2020-09-19 20:49:33 +02:00
};
case "pt-BR": // Portuguese (Brazil)
2020-09-19 20:49:33 +02:00
return {
joined_at: "Entrou em {{time}}"
2020-09-19 20:49:33 +02:00
};
case "ro": // Romanian
2020-09-19 20:49:33 +02:00
return {
joined_at: "S-a înscris pe {{time}}"
2020-09-19 20:49:33 +02:00
};
case "ru": // Russian
2020-09-19 20:49:33 +02:00
return {
joined_at: "Присоединился {{time}}"
2020-09-19 20:49:33 +02:00
};
case "sv": // Swedish
2020-09-19 20:49:33 +02:00
return {
joined_at: "Gick med den {{time}}"
2020-09-19 20:49:33 +02:00
};
case "th": // Thai
2020-09-19 20:49:33 +02:00
return {
joined_at: "เข้าร่วมเมื่อ {{time}}"
};
case "tr": // Turkish
return {
joined_at: "{{time}} tarihinde katıldı"
};
case "uk": // Ukrainian
return {
joined_at: "Приєднався {{time}}"
};
case "vi": // Vietnamese
return {
joined_at: "Đã tham gia vào {{time}}"
};
2021-01-15 17:54:22 +01:00
case "zh-CN": // Chinese (China)
return {
joined_at: "已于{{time}}加入"
};
2021-01-15 17:54:22 +01:00
case "zh-TW": // Chinese (Taiwan)
return {
joined_at: "已於{{time}}加入"
};
default: // English
return {
joined_at: "Joined on {{time}}"
2020-09-19 20:49:33 +02:00
};
}
}
};
2020-10-09 21:09:35 +02:00
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
2020-09-19 20:49:33 +02:00
})();