mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-04 09:05:49 -05:00
* chore: move files * wip: i have no idea what i am doing * feat: finish up the logic * chore: use order from randy sheet * chore: standardise titles * feat: fix layout for new js projects * fix: utils test * fix: challenge tests * fix: ignore show new curriculum on non-english tests * chore: help category???? * fix: if these tests would fail locally that'd be great * chore: duplicate ids
24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
import { SuperBlocks } from '../../config/certification-settings';
|
|
|
|
export function getSuperBlockSubPath(superBlock: SuperBlocks): string {
|
|
const pathMap = {
|
|
[SuperBlocks.RespWebDesign]: '01-responsive-web-design',
|
|
[SuperBlocks.JsAlgoDataStruct]:
|
|
'02-javascript-algorithms-and-data-structures',
|
|
[SuperBlocks.FrontEndDevLibs]: '03-front-end-development-libraries',
|
|
[SuperBlocks.DataVis]: '04-data-visualization',
|
|
[SuperBlocks.BackEndDevApis]: '05-back-end-development-and-apis',
|
|
[SuperBlocks.QualityAssurance]: '06-quality-assurance',
|
|
[SuperBlocks.SciCompPy]: '07-scientific-computing-with-python',
|
|
[SuperBlocks.DataAnalysisPy]: '08-data-analysis-with-python',
|
|
[SuperBlocks.InfoSec]: '09-information-security',
|
|
[SuperBlocks.CodingInterviewPrep]: '10-coding-interview-prep',
|
|
[SuperBlocks.MachineLearningPy]: '11-machine-learning-with-python',
|
|
[SuperBlocks.RelationalDb]: '13-relational-databases',
|
|
[SuperBlocks.RespWebDesignNew]: '14-responsive-web-design-22',
|
|
[SuperBlocks.JsAlgoDataStructNew]:
|
|
'15-javascript-algorithms-and-data-structures-22'
|
|
};
|
|
return pathMap[superBlock];
|
|
}
|