2023-01-28 23:06:33 +00:00
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
|
|
|
* Copyright (c) 2023 Vendicated and contributors
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-05-05 23:36:00 +00:00
|
|
|
import { definePluginSettings } from "@api/Settings";
|
2023-01-28 23:06:33 +00:00
|
|
|
import ErrorBoundary from "@components/ErrorBoundary";
|
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
import definePlugin, { OptionType } from "@utils/types";
|
|
|
|
import { findByCodeLazy } from "@webpack";
|
2023-03-28 16:43:45 +00:00
|
|
|
import { GuildMemberStore, React, RelationshipStore, SelectedChannelStore } from "@webpack/common";
|
2023-02-12 20:06:49 +00:00
|
|
|
import { User } from "discord-types/general";
|
2023-01-28 23:06:33 +00:00
|
|
|
|
2023-04-22 01:16:08 +00:00
|
|
|
const Avatar = findByCodeLazy(".typingIndicatorRef", "svg");
|
2023-03-28 16:43:45 +00:00
|
|
|
const openProfile = findByCodeLazy("friendToken", "USER_PROFILE_MODAL_OPEN");
|
2023-01-28 23:06:33 +00:00
|
|
|
|
|
|
|
const settings = definePluginSettings({
|
|
|
|
showAvatars: {
|
|
|
|
type: OptionType.BOOLEAN,
|
|
|
|
default: true,
|
|
|
|
description: "Show avatars in the typing indicator"
|
|
|
|
},
|
|
|
|
showRoleColors: {
|
|
|
|
type: OptionType.BOOLEAN,
|
|
|
|
default: true,
|
|
|
|
description: "Show role colors in the typing indicator"
|
|
|
|
},
|
|
|
|
alternativeFormatting: {
|
|
|
|
type: OptionType.BOOLEAN,
|
|
|
|
default: true,
|
|
|
|
description: "Show a more useful message when several users are typing"
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-02-16 02:57:57 +00:00
|
|
|
export function buildSeveralUsers({ a, b, c }: { a: string, b: string, c: number; }) {
|
|
|
|
return [
|
|
|
|
<strong key="0">{a}</strong>,
|
|
|
|
", ",
|
|
|
|
<strong key="2">{b}</strong>,
|
|
|
|
`, and ${c} others are typing...`
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2023-03-28 16:43:45 +00:00
|
|
|
interface Props {
|
|
|
|
user: User;
|
|
|
|
guildId: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TypingUser = ErrorBoundary.wrap(function ({ user, guildId }: Props) {
|
|
|
|
return (
|
|
|
|
<strong
|
|
|
|
role="button"
|
|
|
|
onClick={() => {
|
|
|
|
openProfile({
|
|
|
|
userId: user.id,
|
|
|
|
guildId,
|
|
|
|
channelId: SelectedChannelStore.getChannelId(),
|
|
|
|
analyticsLocation: {
|
|
|
|
page: guildId ? "Guild Channel" : "DM Channel",
|
|
|
|
section: "Profile Popout"
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
style={{
|
|
|
|
display: "grid",
|
|
|
|
gridAutoFlow: "column",
|
|
|
|
gap: "4px",
|
|
|
|
color: settings.store.showRoleColors ? GuildMemberStore.getMember(guildId, user.id)?.colorString : undefined,
|
|
|
|
cursor: "pointer"
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{settings.store.showAvatars && (
|
|
|
|
<div style={{ marginTop: "4px" }}>
|
|
|
|
<Avatar
|
|
|
|
size="SIZE_16"
|
|
|
|
src={user.getAvatarURL(guildId, 128)} />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{GuildMemberStore.getNick(guildId!, user.id) || !guildId && RelationshipStore.getNickname(user.id) || user.username}
|
|
|
|
</strong>
|
|
|
|
);
|
|
|
|
}, { noop: true });
|
|
|
|
|
2023-01-28 23:06:33 +00:00
|
|
|
export default definePlugin({
|
|
|
|
name: "TypingTweaks",
|
|
|
|
description: "Show avatars and role colours in the typing indicator",
|
|
|
|
authors: [Devs.zt],
|
|
|
|
patches: [
|
|
|
|
// Style the indicator and add function call to modify the children before rendering
|
|
|
|
{
|
|
|
|
find: "getCooldownTextStyle",
|
|
|
|
replacement: {
|
|
|
|
match: /=(\i)\[2];(.+)"aria-atomic":!0,children:(\i)}\)/,
|
|
|
|
replace: "=$1[2];$2\"aria-atomic\":!0,style:{display:\"grid\",gridAutoFlow:\"column\",gridGap:\"0.25em\"},children:$self.mutateChildren(this.props,$1,$3)})"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// Changes the indicator to keep the user object when creating the list of typing users
|
|
|
|
{
|
|
|
|
find: "getCooldownTextStyle",
|
|
|
|
replacement: {
|
2023-03-05 21:49:59 +00:00
|
|
|
match: /return \i\.\i\.getName\(.,.\.props\.channel\.id,(.)\)/,
|
2023-01-28 23:06:33 +00:00
|
|
|
replace: "return $1"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// Adds the alternative formatting for several users typing
|
|
|
|
{
|
|
|
|
find: "getCooldownTextStyle",
|
|
|
|
replacement: {
|
2023-02-12 20:06:49 +00:00
|
|
|
match: /((\i)\.length\?.\..\.Messages\.THREE_USERS_TYPING.format\(\{a:(\i),b:(\i),c:.}\)):.+?SEVERAL_USERS_TYPING/,
|
|
|
|
replace: "$1:$self.buildSeveralUsers({a:$3,b:$4,c:$2.length-2})"
|
2023-01-28 23:06:33 +00:00
|
|
|
},
|
|
|
|
predicate: () => settings.store.alternativeFormatting
|
|
|
|
}
|
|
|
|
],
|
|
|
|
settings,
|
|
|
|
|
2023-02-16 02:57:57 +00:00
|
|
|
buildSeveralUsers,
|
2023-02-12 20:06:49 +00:00
|
|
|
|
|
|
|
mutateChildren(props: any, users: User[], children: any) {
|
2023-01-28 23:06:33 +00:00
|
|
|
if (!Array.isArray(children)) return children;
|
|
|
|
|
|
|
|
let element = 0;
|
|
|
|
|
2023-03-28 16:43:45 +00:00
|
|
|
return children.map(c =>
|
|
|
|
c.type === "strong"
|
|
|
|
? <TypingUser {...props} user={users[element++]} />
|
|
|
|
: c
|
|
|
|
);
|
2023-01-28 23:06:33 +00:00
|
|
|
},
|
|
|
|
});
|