mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
* chore: bump prettier v3 and format all code * chore: mjs config * chore: revert * chore: revert * chore: update lock
121 lines
2.7 KiB
TypeScript
121 lines
2.7 KiB
TypeScript
import { relative, sep, join } from 'node:path';
|
|
import { CSS_LANG } from '../common/css.js';
|
|
import { existsSync } from 'node:fs';
|
|
import { getDeps, clearDepsCache, fillExt } from './get-deps.js';
|
|
import { getComponents, smartOutputFile } from '../common/index.js';
|
|
import { SRC_DIR, STYLE_DEPS_JSON_FILE } from '../common/constant.js';
|
|
|
|
function matchPath(path: string, component: string): boolean {
|
|
const p = relative(SRC_DIR, path);
|
|
const arr = p.split(sep);
|
|
return arr.includes(component);
|
|
}
|
|
|
|
function getStylePath(component: string) {
|
|
return join(SRC_DIR, `${component}/index.${CSS_LANG}`);
|
|
}
|
|
|
|
export function checkStyleExists(component: string) {
|
|
return existsSync(getStylePath(component));
|
|
}
|
|
|
|
// analyze component dependencies
|
|
function analyzeComponentDeps(components: string[], component: string) {
|
|
const checkList: string[] = [];
|
|
const componentEntry = fillExt(join(SRC_DIR, component, 'index')).path;
|
|
const record = new Set();
|
|
|
|
function search(filePath: string) {
|
|
record.add(filePath);
|
|
|
|
getDeps(filePath).forEach((key) => {
|
|
if (record.has(key)) {
|
|
return;
|
|
}
|
|
|
|
search(key);
|
|
components
|
|
.filter((item) => matchPath(key, item))
|
|
.forEach((item) => {
|
|
if (!checkList.includes(item) && item !== component) {
|
|
checkList.push(item);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
search(componentEntry);
|
|
|
|
return checkList.filter(checkStyleExists);
|
|
}
|
|
|
|
type DepsMap = Record<string, string[]>;
|
|
|
|
function getSequence(components: string[], depsMap: DepsMap) {
|
|
const sequence: string[] = [];
|
|
const record = new Set();
|
|
|
|
function add(item: string) {
|
|
const deps = depsMap[item];
|
|
|
|
if (sequence.includes(item) || !deps) {
|
|
return;
|
|
}
|
|
|
|
if (record.has(item)) {
|
|
sequence.push(item);
|
|
return;
|
|
}
|
|
|
|
record.add(item);
|
|
|
|
if (!deps.length) {
|
|
sequence.push(item);
|
|
return;
|
|
}
|
|
|
|
deps.forEach(add);
|
|
|
|
if (sequence.includes(item)) {
|
|
return;
|
|
}
|
|
|
|
const maxIndex = Math.max(...deps.map((dep) => sequence.indexOf(dep)));
|
|
|
|
sequence.splice(maxIndex + 1, 0, item);
|
|
}
|
|
|
|
components.forEach(add);
|
|
|
|
return sequence;
|
|
}
|
|
|
|
export async function genStyleDepsMap() {
|
|
const components = getComponents();
|
|
|
|
return new Promise<void>((resolve) => {
|
|
clearDepsCache();
|
|
|
|
const map = {} as DepsMap;
|
|
|
|
components.forEach((component) => {
|
|
map[component] = analyzeComponentDeps(components, component);
|
|
});
|
|
|
|
const sequence = getSequence(components, map);
|
|
|
|
Object.keys(map).forEach((key) => {
|
|
map[key] = map[key].sort(
|
|
(a, b) => sequence.indexOf(a) - sequence.indexOf(b),
|
|
);
|
|
});
|
|
|
|
smartOutputFile(
|
|
STYLE_DEPS_JSON_FILE,
|
|
JSON.stringify({ map, sequence }, null, 2),
|
|
);
|
|
|
|
resolve();
|
|
});
|
|
}
|