mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-09 14:43:03 -04:00
BetterFolder Fixes
This commit is contained in:
parent
f2247a3e2b
commit
ccb029b839
1 changed files with 75 additions and 15 deletions
|
@ -44,27 +44,80 @@ export async function toggle(isEnabled: boolean) {
|
||||||
if (!style) {
|
if (!style) {
|
||||||
if (isEnabled) {
|
if (isEnabled) {
|
||||||
style = createStyle("vencord-custom-css");
|
style = createStyle("vencord-custom-css");
|
||||||
|
|
||||||
VencordNative.quickCss.addChangeListener(css => {
|
VencordNative.quickCss.addChangeListener(css => {
|
||||||
|
css = patchSidebar(css);
|
||||||
style.textContent = css;
|
style.textContent = css;
|
||||||
// At the time of writing this, changing textContent resets the disabled state
|
|
||||||
style.disabled = !Settings.useQuickCss;
|
style.disabled = !Settings.useQuickCss;
|
||||||
});
|
});
|
||||||
style.textContent = await VencordNative.quickCss.get();
|
|
||||||
|
const css = await VencordNative.quickCss.get();
|
||||||
|
style.textContent = patchSidebar(css);
|
||||||
}
|
}
|
||||||
} else
|
} else {
|
||||||
style.disabled = !isEnabled;
|
style.disabled = !isEnabled;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function patchSidebar(css: string): string {
|
||||||
|
if (
|
||||||
|
css.includes("grid-template-columns") && Settings.plugins.BetterFolders.enabled ||
|
||||||
|
css.includes("grid-template-areas") && Settings.plugins.BetterFolders.enabled
|
||||||
|
) {
|
||||||
|
css = css.replace(
|
||||||
|
/\btitleBar\b/,
|
||||||
|
"titleBar titleBar"
|
||||||
|
);
|
||||||
|
css = css.replace(
|
||||||
|
/\buserPanel\b/,
|
||||||
|
"userPanel userPanel"
|
||||||
|
);
|
||||||
|
css = css.replace(
|
||||||
|
/guildsList/g,
|
||||||
|
"guildsList sidebar"
|
||||||
|
);
|
||||||
|
css = css.replace(
|
||||||
|
/guildsEnd\]/g,
|
||||||
|
"guildsEnd] min-content [sidebarEnd]"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return css;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function fetchAndPatchCSS(url: string): Promise<string> {
|
||||||
|
try {
|
||||||
|
const res = await fetch(url);
|
||||||
|
const css = await res.text();
|
||||||
|
|
||||||
|
const importLinks = extractImportLinks(css);
|
||||||
|
const patchedCSS = await Promise.all(importLinks.map(fetchAndPatchCSS));
|
||||||
|
|
||||||
|
const combinedCSS = patchedCSS.join("\n") + "\n" + patchSidebar(css);
|
||||||
|
return combinedCSS;
|
||||||
|
} catch (e) {
|
||||||
|
console.warn(`Failed to fetch and patch CSS from ${url}`, e);
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function extractImportLinks(css: string): string[] {
|
||||||
|
const importRegex = /@import url\(([^)]+)\)/g;
|
||||||
|
const links: string[] = [];
|
||||||
|
let match;
|
||||||
|
while ((match = importRegex.exec(css)) !== null) {
|
||||||
|
links.push(match[1].trim().replace(/['"]/g, ""));
|
||||||
|
}
|
||||||
|
return links;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function initThemes() {
|
async function initThemes() {
|
||||||
themesStyle ??= createStyle("vencord-themes");
|
themesStyle ??= createStyle("vencord-themes");
|
||||||
|
|
||||||
const { enabledThemeLinks, enabledThemes } = Settings;
|
const { enabledThemeLinks, enabledThemes } = Settings;
|
||||||
|
|
||||||
const enabledlinks: string[] = [...enabledThemeLinks];
|
const enabledlinks: string[] = [...enabledThemeLinks];
|
||||||
// "darker" and "midnight" both count as dark
|
|
||||||
const activeTheme = ThemeStore.theme === "light" ? "light" : "dark";
|
const activeTheme = ThemeStore.theme === "light" ? "light" : "dark";
|
||||||
|
|
||||||
const links = enabledlinks
|
const rawLinks = enabledlinks
|
||||||
.map(rawLink => {
|
.map(rawLink => {
|
||||||
const match = /^@(light|dark) (.*)/.exec(rawLink);
|
const match = /^@(light|dark) (.*)/.exec(rawLink);
|
||||||
if (!match) return rawLink;
|
if (!match) return rawLink;
|
||||||
|
@ -72,19 +125,26 @@ async function initThemes() {
|
||||||
const [, mode, link] = match;
|
const [, mode, link] = match;
|
||||||
return mode === activeTheme ? link : null;
|
return mode === activeTheme ? link : null;
|
||||||
})
|
})
|
||||||
.filter(link => link !== null);
|
.filter((link): link is string => link !== null);
|
||||||
|
|
||||||
|
const links: string[] = [];
|
||||||
|
|
||||||
|
for (const url of rawLinks) {
|
||||||
|
const css = await fetchAndPatchCSS(url);
|
||||||
|
if (css) {
|
||||||
|
const blob = new Blob([css], { type: "text/css" });
|
||||||
|
links.push(URL.createObjectURL(blob));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (IS_WEB) {
|
|
||||||
for (const theme of enabledThemes) {
|
for (const theme of enabledThemes) {
|
||||||
const themeData = await VencordNative.themes.getThemeData(theme);
|
const themeData = await VencordNative.themes.getThemeData(theme);
|
||||||
if (!themeData) continue;
|
if (!themeData) continue;
|
||||||
const blob = new Blob([themeData], { type: "text/css" });
|
|
||||||
|
const patchedTheme = patchSidebar(themeData);
|
||||||
|
const blob = new Blob([patchedTheme], { type: "text/css" });
|
||||||
links.push(URL.createObjectURL(blob));
|
links.push(URL.createObjectURL(blob));
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
const localThemes = enabledThemes.map(theme => `vencord:///themes/${theme}?v=${Date.now()}`);
|
|
||||||
links.push(...localThemes);
|
|
||||||
}
|
|
||||||
|
|
||||||
themesStyle.textContent = links.map(link => `@import url("${link.trim()}");`).join("\n");
|
themesStyle.textContent = links.map(link => `@import url("${link.trim()}");`).join("\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue