Conflicts: - `app/helpers/theme_helper.rb`: Conflict because of different theming system. Adapted upstream's changes. - `vite.config.mts`: Conflict because of different theming system. Adapted upstream's changes.
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
/* This plugins handles glitch-soc's specific theming system
|
|
*/
|
|
|
|
import fs from 'node:fs/promises';
|
|
import path from 'node:path';
|
|
|
|
import glob from 'fast-glob';
|
|
import yaml from 'js-yaml';
|
|
import type { Plugin } from 'vite';
|
|
|
|
interface Flavour {
|
|
pack_directory: string;
|
|
}
|
|
|
|
export function GlitchThemes(): Plugin {
|
|
return {
|
|
name: 'glitch-themes',
|
|
async config(userConfig) {
|
|
const entrypoints: Record<string, string> = {};
|
|
|
|
if (!userConfig.root || !userConfig.envDir) {
|
|
throw new Error('Unknown project directory');
|
|
}
|
|
|
|
const glitchFlavourFiles = glob.sync(
|
|
path.resolve(userConfig.root, 'flavours/*/theme.yml'),
|
|
);
|
|
|
|
for (const flavourFile of glitchFlavourFiles) {
|
|
const flavourName = path.basename(path.dirname(flavourFile));
|
|
const flavourString = await fs.readFile(flavourFile, 'utf8');
|
|
const flavourDef = yaml.load(flavourString, {
|
|
filename: 'theme.yml',
|
|
schema: yaml.FAILSAFE_SCHEMA,
|
|
}) as Flavour;
|
|
|
|
const flavourEntrypoints = glob.sync(
|
|
`${flavourDef.pack_directory}/*.{ts,tsx,js,jsx}`,
|
|
);
|
|
for (const entrypoint of flavourEntrypoints) {
|
|
const name = `${flavourName}/${path.basename(entrypoint)}`;
|
|
entrypoints[name] = path.resolve(userConfig.envDir, entrypoint);
|
|
}
|
|
|
|
// Skins
|
|
const skinFiles = glob.sync(
|
|
`app/javascript/skins/${flavourName}/*.{css,scss}`,
|
|
);
|
|
for (const entrypoint of skinFiles) {
|
|
const name = `skins/${flavourName}/${path.basename(entrypoint)}`;
|
|
entrypoints[name] = path.resolve(userConfig.envDir, entrypoint);
|
|
}
|
|
|
|
const alternateSkinFiles = glob.sync(
|
|
`app/javascript/skins/${flavourName}/*/{index,common,application}.{css,scss}`,
|
|
);
|
|
for (const entrypoint of alternateSkinFiles) {
|
|
const name = `skins/${flavourName}/${path.basename(path.dirname(entrypoint))}`;
|
|
entrypoints[name] = path.resolve(userConfig.envDir, entrypoint);
|
|
}
|
|
}
|
|
|
|
return {
|
|
build: {
|
|
rollupOptions: {
|
|
input: entrypoints,
|
|
},
|
|
},
|
|
};
|
|
},
|
|
};
|
|
}
|