aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorV <vendicated@riseup.net>2023-05-11 02:34:25 +0200
committerV <vendicated@riseup.net>2023-05-11 02:35:06 +0200
commit6e3cafce42ea4eee7e1103225ebe5cb9931967e1 (patch)
tree6fc847562b2d246749fffdf90dc94dc9dd561ade /src
parent4d0a0644254294371831be0fe342aa824cc717ff (diff)
downloadVencord-6e3cafce42ea4eee7e1103225ebe5cb9931967e1.tar.gz
Vencord-6e3cafce42ea4eee7e1103225ebe5cb9931967e1.tar.bz2
Vencord-6e3cafce42ea4eee7e1103225ebe5cb9931967e1.zip
Translate: Only add button in chat box
Diffstat (limited to 'src')
-rw-r--r--src/plugins/translate/TranslateIcon.tsx5
-rw-r--r--src/plugins/translate/index.tsx8
2 files changed, 10 insertions, 3 deletions
diff --git a/src/plugins/translate/TranslateIcon.tsx b/src/plugins/translate/TranslateIcon.tsx
index d944ec1..af97a53 100644
--- a/src/plugins/translate/TranslateIcon.tsx
+++ b/src/plugins/translate/TranslateIcon.tsx
@@ -37,9 +37,12 @@ export function TranslateIcon({ height = 24, width = 24, className }: { height?:
);
}
-export function TranslateChatBarIcon() {
+export function TranslateChatBarIcon({ slateProps }: { slateProps: { type: { analyticsName: string; }; }; }) {
const { autoTranslate } = settings.use(["autoTranslate"]);
+ if (slateProps.type.analyticsName !== "normal")
+ return null;
+
return (
<Tooltip text="Open Translate Modal">
{({ onMouseEnter, onMouseLeave }) => (
diff --git a/src/plugins/translate/index.tsx b/src/plugins/translate/index.tsx
index cb61254..d71b2da 100644
--- a/src/plugins/translate/index.tsx
+++ b/src/plugins/translate/index.tsx
@@ -45,7 +45,7 @@ export default definePlugin({
find: ".activeCommandOption",
replacement: {
match: /(.)\.push.{1,30}disabled:(\i),.{1,20}\},"gift"\)\)/,
- replace: "$&;try{$2||$1.push($self.chatBarIcon())}catch{}",
+ replace: "$&;try{$2||$1.push($self.chatBarIcon(arguments[0]))}catch{}",
}
},
],
@@ -82,5 +82,9 @@ export default definePlugin({
removeAccessory("vc-translation");
},
- chatBarIcon: ErrorBoundary.wrap(TranslateChatBarIcon, { noop: true }),
+ chatBarIcon: (slateProps: any) => (
+ <ErrorBoundary noop>
+ <TranslateChatBarIcon slateProps={slateProps} />
+ </ErrorBoundary>
+ )
});