2023-01-25 03:25:29 +01: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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// eslint-disable-next-line path-alias/no-relative
|
2023-04-04 21:09:47 +02:00
|
|
|
import { filters, findByPropsLazy, waitFor } from "@webpack";
|
|
|
|
|
2023-01-25 03:25:29 +01:00
|
|
|
import { waitForComponent } from "./internal";
|
|
|
|
import * as t from "./types/components";
|
|
|
|
|
2023-04-04 21:09:47 +02:00
|
|
|
export let Forms = {} as {
|
|
|
|
FormTitle: t.FormTitle,
|
|
|
|
FormSection: t.FormSection,
|
|
|
|
FormDivider: t.FormDivider,
|
|
|
|
FormText: t.FormText,
|
2023-01-25 03:25:29 +01:00
|
|
|
};
|
|
|
|
|
2023-04-04 21:09:47 +02:00
|
|
|
export let Card: t.Card;
|
|
|
|
export let Button: t.Button;
|
|
|
|
export let Switch: t.Switch;
|
|
|
|
export let Tooltip: t.Tooltip;
|
|
|
|
export let TextInput: t.TextInput;
|
|
|
|
export let TextArea: t.TextArea;
|
|
|
|
export let Text: t.Text;
|
|
|
|
export let Select: t.Select;
|
|
|
|
export let SearchableSelect: t.SearchableSelect;
|
|
|
|
export let Slider: t.Slider;
|
|
|
|
export let ButtonLooks: t.ButtonLooks;
|
2023-05-02 02:55:38 +02:00
|
|
|
export let Popout: t.Popout;
|
|
|
|
export let Dialog: t.Dialog;
|
2023-04-04 21:09:47 +02:00
|
|
|
export let TabBar: any;
|
2023-05-28 23:03:06 +03:00
|
|
|
export let Paginator: t.Paginator;
|
2023-06-15 03:39:15 +02:00
|
|
|
export let ScrollerThin: t.ScrollerThin;
|
|
|
|
export let Clickable: t.Clickable;
|
|
|
|
export let Avatar: t.Avatar;
|
2023-05-10 23:13:47 +02:00
|
|
|
// token lagger real
|
|
|
|
/** css colour resolver stuff, no clue what exactly this does, just copied usage from Discord */
|
|
|
|
export let useToken: t.useToken;
|
2023-04-04 21:09:47 +02:00
|
|
|
|
2023-01-25 03:25:29 +01:00
|
|
|
export const Timestamp = waitForComponent<t.Timestamp>("Timestamp", filters.byCode(".Messages.MESSAGE_EDITED_TIMESTAMP_A11Y_LABEL.format"));
|
|
|
|
export const Flex = waitForComponent<t.Flex>("Flex", ["Justify", "Align", "Wrap"]);
|
|
|
|
|
|
|
|
export const ButtonWrapperClasses = findByPropsLazy("buttonWrapper", "buttonContent") as Record<string, string>;
|
2023-04-04 21:09:47 +02:00
|
|
|
|
|
|
|
waitFor("FormItem", m => {
|
2023-06-15 03:39:15 +02:00
|
|
|
({ useToken, Card, Button, FormSwitch: Switch, Tooltip, TextInput, TextArea, Text, Select, SearchableSelect, Slider, ButtonLooks, TabBar, Popout, Dialog, Paginator, ScrollerThin, Clickable, Avatar } = m);
|
2023-04-04 21:09:47 +02:00
|
|
|
Forms = m;
|
|
|
|
});
|