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
|
|
|
|
import { filters, findByPropsLazy } from "../webpack";
|
|
|
|
import { waitForComponent } from "./internal";
|
|
|
|
import * as t from "./types/components";
|
|
|
|
|
|
|
|
export const Forms = {
|
|
|
|
FormTitle: waitForComponent<t.FormTitle>("FormTitle", filters.byCode("errorSeparator")),
|
|
|
|
FormSection: waitForComponent<t.FormSection>("FormSection", filters.byCode("titleClassName", "sectionTitle")),
|
|
|
|
FormDivider: waitForComponent<t.FormDivider>("FormDivider", m => {
|
|
|
|
if (typeof m !== "function") return false;
|
|
|
|
const s = m.toString();
|
|
|
|
return s.length < 200 && s.includes(".divider");
|
|
|
|
}),
|
|
|
|
FormText: waitForComponent<t.FormText>("FormText", m => m.Types?.INPUT_PLACEHOLDER),
|
|
|
|
};
|
|
|
|
|
2023-02-24 05:48:37 +01:00
|
|
|
export const Card = waitForComponent<t.Card>("Card", m => m.Types?.PRIMARY && m.defaultProps);
|
2023-01-25 03:25:29 +01:00
|
|
|
export const Button = waitForComponent<t.Button>("Button", ["Hovers", "Looks", "Sizes"]);
|
|
|
|
export const Switch = waitForComponent<t.Switch>("Switch", filters.byCode("tooltipNote", "ringTarget"));
|
2023-02-27 21:19:01 +00:00
|
|
|
export const Tooltip = waitForComponent<t.Tooltip>("Tooltip", filters.byCode("shouldShowTooltip:!1", "clickableOnMobile||"));
|
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 TextInput = waitForComponent<t.TextInput>("TextInput", ["defaultProps", "Sizes", "contextType"]);
|
|
|
|
export const TextArea = waitForComponent<t.TextArea>("TextArea", filters.byCode("handleSetRef", "textArea"));
|
|
|
|
export const Text = waitForComponent<t.Text>("Text", m => {
|
|
|
|
if (typeof m !== "function") return false;
|
|
|
|
const s = m.toString();
|
|
|
|
return (s.length < 1500 && s.includes("data-text-variant") && s.includes("always-white"));
|
|
|
|
});
|
|
|
|
export const Select = waitForComponent<t.Select>("Select", filters.byCode("optionClassName", "popoutPosition", "autoFocus", "maxVisibleItems"));
|
2023-02-27 23:48:58 +00:00
|
|
|
const searchableSelectFilter = filters.byCode("autoFocus", ".Messages.SELECT");
|
|
|
|
export const SearchableSelect = waitForComponent<t.SearchableSelect>("SearchableSelect", m =>
|
|
|
|
m.render && searchableSelectFilter(m.render)
|
|
|
|
);
|
2023-01-25 03:25:29 +01:00
|
|
|
export const Slider = waitForComponent<t.Slider>("Slider", filters.byCode("closestMarkerIndex", "stickToMarkers"));
|
|
|
|
export const Flex = waitForComponent<t.Flex>("Flex", ["Justify", "Align", "Wrap"]);
|
|
|
|
|
|
|
|
export const ButtonWrapperClasses = findByPropsLazy("buttonWrapper", "buttonContent") as Record<string, string>;
|
|
|
|
export const ButtonLooks: t.ButtonLooks = findByPropsLazy("BLANK", "FILLED", "INVERTED");
|