Files
freeCodeCamp/tools/challenge-editor/api/utils/get-steps.ts
Naomi Carrigan ab640abee1 chore: detuplication (#50955)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2023-07-13 12:46:00 +02:00

45 lines
1.2 KiB
TypeScript

import { readdir, readFile } from 'fs/promises';
import { join } from 'path';
import matter from 'gray-matter';
import { PartialMeta } from '../interfaces/partial-meta';
import { CHALLENGE_DIR, META_DIR } from '../configs/paths';
const getFileOrder = (id: string, meta: PartialMeta) => {
return meta.challengeOrder.findIndex(({ id: f }) => f === id);
};
type Step = {
name: string;
id: string;
path: string;
};
export const getSteps = async (sup: string, block: string): Promise<Step[]> => {
const filePath = join(CHALLENGE_DIR, sup, block);
const metaPath = join(META_DIR, block, 'meta.json');
const metaData = JSON.parse(await readFile(metaPath, 'utf8')) as PartialMeta;
const stepFilenames = await readdir(filePath);
const stepData = await Promise.all(
stepFilenames.map(async filename => {
const stepPath = join(filePath, filename);
const step = await readFile(stepPath, 'utf8');
const frontMatter = matter(step);
return {
name: frontMatter.data.title as string,
id: frontMatter.data.id as string,
path: filename
};
})
);
return stepData.sort(
(a, b) => getFileOrder(a.id, metaData) - getFileOrder(b.id, metaData)
);
};