2022-01-25 11:34:16 +01:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
|
|
|
import { getChallengeSeeds } from '../utils';
|
|
|
|
import { getProjectPath } from './get-project-path';
|
|
|
|
import { ChallengeSeed } from './get-step-template';
|
2021-07-06 19:22:12 -05:00
|
|
|
|
2021-10-21 10:07:52 -07:00
|
|
|
// Looks up the last file found with format `step-###.md` in a directory and
|
2021-07-06 19:22:12 -05:00
|
|
|
// returns associated information to it. At the same time validates that the
|
|
|
|
// number of files match the names used to name these.
|
2022-01-25 11:34:16 +01:00
|
|
|
function getLastStepFileContent(): {
|
|
|
|
challengeSeeds: Record<string, ChallengeSeed>;
|
|
|
|
nextStepNum: number;
|
|
|
|
} {
|
|
|
|
const filesArr: string[] = [];
|
2021-07-06 19:22:12 -05:00
|
|
|
const projectPath = getProjectPath();
|
|
|
|
|
|
|
|
fs.readdirSync(projectPath).forEach(fileName => {
|
|
|
|
if (
|
|
|
|
path.extname(fileName).toLowerCase() === '.md' &&
|
|
|
|
!fileName.endsWith('final.md')
|
|
|
|
) {
|
|
|
|
filesArr.push(fileName);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const fileName = filesArr[filesArr.length - 1];
|
2022-01-25 11:34:16 +01:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
|
|
|
|
const lastStepFileString: string = fileName.split('.')[0].split('-')[1];
|
|
|
|
const lastStepFileNum = parseInt(lastStepFileString, 10);
|
2021-07-06 19:22:12 -05:00
|
|
|
if (filesArr.length !== lastStepFileNum) {
|
|
|
|
throw `Error: The last file step is ${lastStepFileNum} and there are ${filesArr.length} files.`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2022-01-25 11:34:16 +01:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
2021-07-06 19:22:12 -05:00
|
|
|
challengeSeeds: getChallengeSeeds(projectPath + fileName),
|
|
|
|
nextStepNum: lastStepFileNum + 1
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-01-25 11:34:16 +01:00
|
|
|
export { getLastStepFileContent };
|