* fix: add cert to email for when all certs are earned * fix: unhide rdbms from production * fix: cert project input field * feat: add cypress tests * fix: message on project pages to lower expectations * fix: update instructions * fix: add quincy's suggestions * fix: add beta label and reorder * fix: utils test * fix: move rdbms to bottom of settings * fix: cypress tests * Apply suggestions from code review Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: only drop seeded users webhook tokens Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
55 lines
1.7 KiB
JavaScript
55 lines
1.7 KiB
JavaScript
const path = require('path');
|
|
|
|
const _ = require('lodash');
|
|
|
|
const envData = require('../../config/env.json');
|
|
const {
|
|
getChallengesForLang,
|
|
createChallenge,
|
|
challengesDir,
|
|
getChallengesDirForLang
|
|
} = require('../../curriculum/getChallenges');
|
|
|
|
const { curriculumLocale } = envData;
|
|
|
|
exports.localeChallengesRootDir = getChallengesDirForLang(curriculumLocale);
|
|
|
|
exports.replaceChallengeNode = () => {
|
|
return async function replaceChallengeNode(filePath) {
|
|
// get the meta so that challengeOrder is accurate
|
|
const blockNameRe = /\d\d-[-\w]+\/([^/]+)\//;
|
|
const posix = path.normalize(filePath).split(path.sep).join(path.posix.sep);
|
|
const blockName = posix.match(blockNameRe)[1];
|
|
const metaPath = path.resolve(
|
|
__dirname,
|
|
`../../curriculum/challenges/_meta/${blockName}/meta.json`
|
|
);
|
|
delete require.cache[require.resolve(metaPath)];
|
|
const meta = require(metaPath);
|
|
// TODO: reimplement hot-reloading of certifications
|
|
return await createChallenge(
|
|
challengesDir,
|
|
filePath,
|
|
curriculumLocale,
|
|
meta
|
|
);
|
|
};
|
|
};
|
|
|
|
exports.buildChallenges = async function buildChallenges() {
|
|
const curriculum = await getChallengesForLang(curriculumLocale);
|
|
const superBlocks = Object.keys(curriculum);
|
|
const blocks = superBlocks
|
|
.map(superBlock => curriculum[superBlock].blocks)
|
|
.reduce((blocks, superBlock) => {
|
|
const currentBlocks = Object.keys(superBlock).map(key => superBlock[key]);
|
|
return blocks.concat(_.flatten(currentBlocks));
|
|
}, []);
|
|
|
|
const builtChallenges = blocks
|
|
.filter(block => !block.isPrivate)
|
|
.map(({ challenges }) => challenges)
|
|
.reduce((accu, current) => accu.concat(current), []);
|
|
return builtChallenges;
|
|
};
|