mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
152 lines
4.7 KiB
JavaScript
152 lines
4.7 KiB
JavaScript
enabled(){
|
|
let configuration = { defaultAccount: "#preferred" };
|
|
|
|
window.TDPF_loadConfigurationFile(this, "configuration.js", "configuration.default.js", obj => configuration = obj);
|
|
|
|
this.lastSelectedAccount = null;
|
|
|
|
this.uiComposeTweetEvent = (e, data) => {
|
|
if (!(data.type === "reply" || (data.type === "tweet" && "quotedTweet" in data)) || data.popFromInline || !("element" in data)) {
|
|
return;
|
|
}
|
|
|
|
let query;
|
|
|
|
if (configuration.useAdvancedSelector) {
|
|
if (configuration.customSelector) {
|
|
let customSelectorDef = configuration.customSelector.toString();
|
|
|
|
if (customSelectorDef.startsWith("function (column){")) {
|
|
$TD.alert("warning", "Plugin reply-account has invalid configuration: customSelector needs to be updated due to TweetDeck changes, please read the default configuration file for the updated guide");
|
|
return;
|
|
}
|
|
else if (customSelectorDef.startsWith("function (type,")) {
|
|
$TD.alert("warning", "Plugin reply-account has invalid configuration: the type parameter is no longer present due to TweetDeck changes, please read the default configuration file for the updated guide");
|
|
return;
|
|
}
|
|
|
|
let section = data.element.closest("section.js-column");
|
|
let column = TD.controller.columnManager.get(section.attr("data-column"));
|
|
|
|
let feeds = column.getFeeds();
|
|
let accountText = "";
|
|
|
|
if (feeds.length === 1) {
|
|
let metadata = feeds[0].getMetadata();
|
|
let id = metadata.ownerId || metadata.id;
|
|
|
|
if (id) {
|
|
accountText = TD.cache.names.getScreenName(id);
|
|
}
|
|
else {
|
|
let account = TD.storage.accountController.get(feeds[0].getAccountKey());
|
|
|
|
if (account) {
|
|
accountText = "@" + account.getUsername();
|
|
}
|
|
}
|
|
}
|
|
|
|
let header = $(".column-header-title", section);
|
|
let title = header.children(".column-heading");
|
|
let titleText = title.length ? title.text() : header.children(".column-title-edit-box").val();
|
|
|
|
try {
|
|
query = configuration.customSelector(titleText, accountText, column, section.hasClass("column-temp"));
|
|
} catch (e) {
|
|
$TD.alert("warning", "Plugin reply-account has invalid configuration: customSelector threw an error: " + e.message);
|
|
return;
|
|
}
|
|
}
|
|
else {
|
|
$TD.alert("warning", "Plugin reply-account has invalid configuration: useAdvancedSelector is true, but customSelector function is missing");
|
|
return;
|
|
}
|
|
}
|
|
else {
|
|
query = configuration.defaultAccount;
|
|
|
|
if (query === "") {
|
|
query = "#preferred";
|
|
}
|
|
else if (typeof query !== "string") {
|
|
query = "#default";
|
|
}
|
|
}
|
|
|
|
if (typeof query === "undefined") {
|
|
query = "#preferred";
|
|
}
|
|
|
|
if (typeof query !== "string") {
|
|
return;
|
|
}
|
|
else if (query.length === 0) {
|
|
$TD.alert("warning", "Plugin reply-account has invalid configuration: the requested account is empty");
|
|
return;
|
|
}
|
|
else if (query[0] !== "@" && query[0] !== "#") {
|
|
$TD.alert("warning", "Plugin reply-account has invalid configuration: the requested account does not begin with @ or #: " + query);
|
|
return;
|
|
}
|
|
|
|
let identifier = null;
|
|
|
|
switch (query) {
|
|
case "#preferred":
|
|
identifier = TD.storage.clientController.client.getDefaultAccount();
|
|
break;
|
|
|
|
case "#last":
|
|
if (this.lastSelectedAccount === null) {
|
|
return;
|
|
}
|
|
|
|
identifier = this.lastSelectedAccount;
|
|
break;
|
|
|
|
case "#default":
|
|
return;
|
|
|
|
default:
|
|
if (query[0] === "@") {
|
|
let obj = TD.storage.accountController.getAccountFromUsername(query.substring(1));
|
|
|
|
if (obj.length === 0) {
|
|
$TD.alert("warning", "Plugin reply-account has invalid configuration: requested account not found: " + query);
|
|
return;
|
|
}
|
|
else {
|
|
identifier = obj[0].privateState.key;
|
|
}
|
|
}
|
|
else {
|
|
$TD.alert("warning", "Plugin reply-account has invalid configuration: unknown requested account query: " + query);
|
|
return;
|
|
}
|
|
}
|
|
|
|
data.singleFrom = data.from = [ identifier ];
|
|
};
|
|
|
|
this.onSelectedAccountChanged = () => {
|
|
let selected = $(".js-account-item.is-selected", ".js-account-list");
|
|
this.lastSelectedAccount = selected.length === 1 ? selected.attr("data-account-key") : null;
|
|
};
|
|
}
|
|
|
|
ready(){
|
|
for (let event of [ "uiInlineComposeTweet", "uiDockedComposeTweet" ]) {
|
|
$(document).on(event, this.uiComposeTweetEvent);
|
|
window.TDPF_prioritizeNewestEvent(document, event);
|
|
}
|
|
|
|
$(document).on("click", ".js-account-list .js-account-item", this.onSelectedAccountChanged);
|
|
}
|
|
|
|
disabled(){
|
|
$(document).off("uiInlineComposeTweet", this.uiComposeTweetEvent);
|
|
$(document).off("uiDockedComposeTweet", this.uiComposeTweetEvent);
|
|
$(document).off("click", ".js-account-list .js-account-item", this.onSelectedAccountChanged);
|
|
}
|