aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/openInApp.ts
diff options
context:
space:
mode:
authorV <vendicated@riseup.net>2023-06-29 05:02:13 +0200
committerV <vendicated@riseup.net>2023-06-29 05:02:13 +0200
commit088a8bd1b681b6983c19a8b062e7f755374a4335 (patch)
tree379c98b69bfaf00d49b2a54d87012ffbb76331b2 /src/plugins/openInApp.ts
parent51adb26d01013e737bdb97f7b278df2587fb042b (diff)
downloadVencord-088a8bd1b681b6983c19a8b062e7f755374a4335.tar.gz
Vencord-088a8bd1b681b6983c19a8b062e7f755374a4335.tar.bz2
Vencord-088a8bd1b681b6983c19a8b062e7f755374a4335.zip
OpenInApp: Support profile activity on web & profile connection
Diffstat (limited to 'src/plugins/openInApp.ts')
-rw-r--r--src/plugins/openInApp.ts39
1 files changed, 32 insertions, 7 deletions
diff --git a/src/plugins/openInApp.ts b/src/plugins/openInApp.ts
index d5e0273..8249ed7 100644
--- a/src/plugins/openInApp.ts
+++ b/src/plugins/openInApp.ts
@@ -19,20 +19,38 @@
import { Devs } from "@utils/constants";
import definePlugin from "@utils/types";
-const SpotifyMatcher = /https:\/\/open\.spotify\.com\/(track|album|artist|playlist)\/([^S]+)/;
+const SpotifyMatcher = /https:\/\/open\.spotify\.com\/(track|album|artist|playlist|user)\/([^S]+)/;
export default definePlugin({
name: "OpenInApp",
description: "Open spotify URLs in app",
authors: [Devs.Ven],
- patches: [{
- find: '"MaskedLinkStore"',
- replacement: {
- match: /return ((\i)\.apply\(this,arguments\))(?=\}function \i.{0,200}\.trusted)/,
- replace: "return $self.handleLink(...arguments)||$1"
+ patches: [
+ {
+ find: '"MaskedLinkStore"',
+ replacement: {
+ match: /return ((\i)\.apply\(this,arguments\))(?=\}function \i.{0,200}\.trusted)/,
+ replace: "return $self.handleLink(...arguments)||$1"
+ }
+ },
+ // Make Spotify profile activity links open in app on web
+ {
+ find: "WEB_OPEN(",
+ predicate: () => !IS_DISCORD_DESKTOP,
+ replacement: {
+ match: /\i\.\i\.isProtocolRegistered\(\)(.{0,100})window.open/g,
+ replace: "true$1VencordNative.native.openExternal"
+ }
+ },
+ {
+ find: ".CONNECTED_ACCOUNT_VIEWED,",
+ replacement: {
+ match: /(?<=href:\i,onClick:function\(\)\{)(?=return \i=(\i)\.type,.{0,50}CONNECTED_ACCOUNT_VIEWED)/,
+ replace: "$self.handleAccountView(arguments[0],$1.type,$1.id);"
+ }
}
- }],
+ ],
handleLink(data: { href: string; }, event: MouseEvent) {
if (!data) return;
@@ -45,5 +63,12 @@ export default definePlugin({
event.preventDefault();
return Promise.resolve();
+ },
+
+ handleAccountView(event: MouseEvent, platformType: string, otherUserId: string) {
+ if (platformType !== "spotify") return;
+
+ VencordNative.native.openExternal(`spotify:user:${otherUserId}`);
+ event.preventDefault();
}
});