/* * Vencord, a modification for Discord's desktop app * Copyright (c) 2022 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 . */ import "./themesStyles.css"; import { Settings, useSettings } from "@api/Settings"; import { classNameFactory } from "@api/Styles"; import { Flex } from "@components/Flex"; import { CogWheel, DeleteIcon, PluginIcon } from "@components/Icons"; import { Link } from "@components/Link"; import { AddonCard } from "@components/VencordSettings/AddonCard"; import { SettingsTab, wrapTab } from "@components/VencordSettings/shared"; import { Margins } from "@utils/margins"; import { classes } from "@utils/misc"; import { openModal } from "@utils/modal"; import { showItemInFolder } from "@utils/native"; import { useAwaiter } from "@utils/react"; import type { ThemeHeader } from "@utils/themes"; import { getThemeInfo, stripBOM, type UserThemeHeader } from "@utils/themes/bd"; import { usercssParse } from "@utils/themes/usercss"; import { findByPropsLazy, findLazy } from "@webpack"; import { Button, Card, FluxDispatcher, Forms, React, showToast, TabBar, TextArea, Tooltip, useEffect, useMemo, useRef, useState } from "@webpack/common"; import type { ComponentType, Ref, SyntheticEvent } from "react"; import type { UserstyleHeader } from "usercss-meta"; import { isPluginEnabled } from "../../plugins"; import { UserCSSSettingsModal } from "./UserCSSModal"; type FileInput = ComponentType<{ ref: Ref; onChange: (e: SyntheticEvent) => void; multiple?: boolean; filters?: { name?: string; extensions: string[]; }[]; }>; const InviteActions = findByPropsLazy("resolveInvite"); const FileInput: FileInput = findLazy(m => m.prototype?.activateUploadDialogue && m.prototype.setRef); const TextAreaProps = findLazy(m => typeof m.textarea === "string"); const cl = classNameFactory("vc-settings-theme-"); function Validator({ link }: { link: string; }) { const [res, err, pending] = useAwaiter(() => fetch(link).then(res => { if (res.status > 300) throw `${res.status} ${res.statusText}`; const contentType = res.headers.get("Content-Type"); if (!contentType?.startsWith("text/css") && !contentType?.startsWith("text/plain")) throw "Not a CSS file. Remember to use the raw link!"; return "Okay!"; })); const text = pending ? "Checking..." : err ? `Error: ${err instanceof Error ? err.message : String(err)}` : "Valid!"; return {text}; } function Validators({ themeLinks }: { themeLinks: string[]; }) { if (!themeLinks.length) return null; return ( <> Validator This section will tell you whether your themes can successfully be loaded
{themeLinks.map(link => ( {link} ))}
); } interface OtherThemeCardProps { theme: UserThemeHeader; enabled: boolean; onChange: (enabled: boolean) => void; onDelete: () => void; } interface UserCSSCardProps { theme: UserstyleHeader; enabled: boolean; onChange: (enabled: boolean) => void; onDelete: () => void; } function UserCSSThemeCard({ theme, enabled, onChange, onDelete }: UserCSSCardProps) { const missingPlugins = useMemo(() => theme.requiredPlugins?.filter(p => !isPluginEnabled(p)), [theme]); return ( {missingPlugins && missingPlugins.length > 0 && ( {({ onMouseLeave, onMouseEnter }) => (
)}
)} {theme.vars && (
openModal(modalProps => ) }>
)} {IS_WEB && (
)} } footer={ {!!theme.homepageURL && Homepage} {!!(theme.homepageURL && theme.supportURL) && " • "} {!!theme.supportURL && Support} } /> ); } function OtherThemeCard({ theme, enabled, onChange, onDelete }: OtherThemeCardProps) { return ( ) } footer={ {!!theme.website && Website} {!!(theme.website && theme.invite) && " • "} {!!theme.invite && ( { e.preventDefault(); const { invite } = await InviteActions.resolveInvite(theme.invite, "Desktop Modal"); if (!invite) return showToast("Invalid or expired invite"); FluxDispatcher.dispatch({ type: "INVITE_MODAL_OPEN", invite, code: theme.invite, context: "APP" }); }} > Discord Server )} } /> ); } enum ThemeTab { LOCAL, ONLINE } function ThemesTab() { const settings = useSettings(["themeLinks", "enabledThemes"]); const fileInputRef = useRef(null); const [currentTab, setCurrentTab] = useState(ThemeTab.LOCAL); const [themeText, setThemeText] = useState(settings.themeLinks.join("\n")); const [userThemes, setUserThemes] = useState(null); const [themeDir, , themeDirPending] = useAwaiter(VencordNative.themes.getThemesDir); useEffect(() => { refreshLocalThemes(); }, []); async function refreshLocalThemes() { const themes = await VencordNative.themes.getThemesList(); const themeInfo: ThemeHeader[] = []; for (const { fileName, content } of themes) { if (!fileName.endsWith(".css")) continue; if ((!IS_WEB || "armcord" in window) && fileName.endsWith(".user.css")) { // handle it as usercss const header = await usercssParse(content, fileName); themeInfo.push({ type: "usercss", header }); Settings.userCssVars[header.id] ??= {}; for (const [name, varInfo] of Object.entries(header.vars ?? {})) { let normalizedValue = ""; switch (varInfo.type) { case "text": case "color": normalizedValue = varInfo.default; break; case "select": normalizedValue = varInfo.options.find(v => v.name === varInfo.default)!.value; break; case "checkbox": normalizedValue = varInfo.default ? "1" : "0"; break; case "range": normalizedValue = `${varInfo.default}${varInfo.units}`; break; case "number": normalizedValue = String(varInfo.default); break; } Settings.userCssVars[header.id][name] ??= normalizedValue; } } else { // presumably BD but could also be plain css themeInfo.push({ type: "other", header: getThemeInfo(stripBOM(content), fileName) }); } } setUserThemes(themeInfo); } // When a local theme is enabled/disabled, update the settings function onLocalThemeChange(fileName: string, value: boolean) { if (value) { if (settings.enabledThemes.includes(fileName)) return; settings.enabledThemes = [...settings.enabledThemes, fileName]; } else { settings.enabledThemes = settings.enabledThemes.filter(f => f !== fileName); } } async function onFileUpload(e: SyntheticEvent) { e.stopPropagation(); e.preventDefault(); if (!e.currentTarget?.files?.length) return; const { files } = e.currentTarget; const uploads = Array.from(files, file => { const { name } = file; if (!name.endsWith(".css")) return; return new Promise((resolve, reject) => { const reader = new FileReader(); reader.onload = () => { VencordNative.themes.uploadTheme(name, reader.result as string) .then(resolve) .catch(reject); }; reader.readAsText(file); }); }); await Promise.all(uploads); refreshLocalThemes(); } function renderLocalThemes() { return ( <> Find Themes:
BetterDiscord Themes GitHub
If using the BD site, click on "Download" and place the downloaded .theme.css file into your themes folder.
<> {IS_WEB ? ( ) : ( )}
{userThemes?.map(({ type, header: theme }: ThemeHeader) => ( type === "other" ? ( onLocalThemeChange(theme.fileName, enabled)} onDelete={async () => { onLocalThemeChange(theme.fileName, false); await VencordNative.themes.deleteTheme(theme.fileName); refreshLocalThemes(); }} theme={theme as UserThemeHeader} /> ) : ( onLocalThemeChange(theme.fileName, enabled)} onDelete={async () => { onLocalThemeChange(theme.fileName, false); await VencordNative.themes.deleteTheme(theme.fileName); refreshLocalThemes(); }} theme={theme as UserstyleHeader} /> )))}
); } // When the user leaves the online theme textbox, update the settings function onBlur() { settings.themeLinks = [...new Set( themeText .trim() .split(/\n+/) .map(s => s.trim()) .filter(Boolean) )]; } function renderOnlineThemes() { return ( <> Paste links to css files here One link per line Make sure to use direct links to files (raw or github.io)!