This commit is contained in:
thororen1234 2024-06-01 14:32:22 -04:00
parent 268e053d68
commit 7da91d94d8
77 changed files with 3175 additions and 1964 deletions

View file

@ -24,6 +24,7 @@ export default function ReplyNavigator({ replies }: { replies: Message[]; }) {
setVisible(true);
}, [replies]);
React.useEffect(() => {
// https://stackoverflow.com/a/42234988
function onMouseDown(event: MouseEvent) {
if (ref.current && event.target instanceof Element && !ref.current.contains(event.target)) {
setVisible(false);
@ -45,8 +46,7 @@ export default function ReplyNavigator({ replies }: { replies: Message[]; }) {
flexDirection: "row",
alignItems: "center",
paddingLeft: "1em",
paddingRight: "1em",
opacity: "80%"
paddingRight: "1em"
}}>
<Paginator
className={"vc-findreply-paginator"}

View file

@ -1,8 +1,20 @@
/*
* Vencord, a Discord client mod
* Copyright (c) 2024 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
* 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/>.
*/
import { addButton, removeButton } from "@api/MessagePopover";
import { disableStyle, enableStyle } from "@api/Styles";
@ -88,7 +100,7 @@ export default definePlugin({
if (!madeComponent) {
madeComponent = true;
element = document.createElement("div");
document.querySelector("[class^=base__]")!.appendChild(element);
document.querySelector("[class^=base_]")!.appendChild(element);
root = ReactDOM.createRoot(element);
}
root!.render(<ReplyNavigator replies={replies} />);

View file

@ -5,4 +5,4 @@
.vc-findreply-close {
align-items: inherit !important;
line-height: 0 !important;
}
}