|
|
|
@ -16,17 +16,27 @@
|
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { definePluginSettings } from "@api/Settings";
|
|
|
|
|
import { Flex } from "@components/Flex";
|
|
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
|
import definePlugin, { OptionType } from "@utils/types";
|
|
|
|
|
import { RelationshipStore } from "@webpack/common";
|
|
|
|
|
import { User } from "discord-types/general";
|
|
|
|
|
import { Settings } from "Vencord";
|
|
|
|
|
|
|
|
|
|
const settings = definePluginSettings({
|
|
|
|
|
showDates: {
|
|
|
|
|
type: OptionType.BOOLEAN,
|
|
|
|
|
description: "Show dates on friend requests",
|
|
|
|
|
default: false,
|
|
|
|
|
restartNeeded: true
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
|
name: "SortFriendRequests",
|
|
|
|
|
authors: [Devs.Megu],
|
|
|
|
|
description: "Sorts friend requests by date of receipt",
|
|
|
|
|
settings,
|
|
|
|
|
|
|
|
|
|
patches: [{
|
|
|
|
|
find: "getRelationshipCounts(){",
|
|
|
|
@ -35,13 +45,11 @@ export default definePlugin({
|
|
|
|
|
replace: ".sortBy((row) => $self.sortList(row))"
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
find: "RelationshipTypes.PENDING_INCOMING?",
|
|
|
|
|
find: ".Messages.FRIEND_REQUEST_CANCEL",
|
|
|
|
|
replacement: {
|
|
|
|
|
predicate: () => Settings.plugins.SortFriendRequests.showDates,
|
|
|
|
|
match: /(user:(\i),.{10,50}),subText:(\i),(className:\i\.userInfo}\))/,
|
|
|
|
|
replace: (_, pre, user, subtext, post) => `${pre},
|
|
|
|
|
subText: $self.makeSubtext(${subtext}, ${user}),
|
|
|
|
|
${post}`
|
|
|
|
|
predicate: () => settings.store.showDates,
|
|
|
|
|
match: /subText:(\i)(?=,className:\i\.userInfo}\))(?<=user:(\i).+?)/,
|
|
|
|
|
replace: (_, subtext, user) => `subText:$self.makeSubtext(${subtext},${user})`
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
|
@ -63,14 +71,5 @@ export default definePlugin({
|
|
|
|
|
{!isNaN(since.getTime()) && <span>Received — {since.toDateString()}</span>}
|
|
|
|
|
</Flex>
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
options: {
|
|
|
|
|
showDates: {
|
|
|
|
|
type: OptionType.BOOLEAN,
|
|
|
|
|
description: "Show dates on friend requests",
|
|
|
|
|
default: false,
|
|
|
|
|
restartNeeded: true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|