feat(curriculum): add remaining new superblocks (4 of them) (#62611)

This commit is contained in:
Tom
2025-10-09 10:54:56 -05:00
committed by GitHub
parent 2cb3baba7f
commit 4afd65e683
30 changed files with 520 additions and 18 deletions

View File

@@ -54,7 +54,11 @@ const iconMap = {
[SuperBlocks.FullStackOpen]: Code,
[SuperBlocks.DevPlayground]: Code,
[SuperBlocks.RespWebDesignV9]: ResponsiveDesign,
[SuperBlocks.JsV9]: JavaScriptIcon
[SuperBlocks.JsV9]: JavaScriptIcon,
[SuperBlocks.FrontEndDevLibsV9]: ReactIcon,
[SuperBlocks.PythonV9]: PythonIcon,
[SuperBlocks.RelationalDbV9]: DatabaseIcon,
[SuperBlocks.BackEndDevApisV9]: APIIcon
};
type SuperBlockIconProps = {

View File

@@ -91,6 +91,10 @@ const createCertifiedMap = ({
[Certification.FullStackDeveloper]: false,
[Certification.RespWebDesignV9]: false,
[Certification.JsV9]: false,
[Certification.FrontEndDevLibsV9]: false,
[Certification.PythonV9]: false,
[Certification.RelationalDbV9]: false,
[Certification.BackEndDevApisV9]: false,
[Certification.A2English]: false,
[Certification.B1English]: false,
[Certification.A2Spanish]: false,

View File

@@ -0,0 +1,9 @@
---
title: Back End Development and APIs
superBlock: back-end-development-and-apis-v9
certification: back-end-development-and-apis-v9
---
## Introduction to Back End Development and APIs
This is a stub introduction for Back End Development and APIs

View File

@@ -0,0 +1,9 @@
---
title: Front End Development Libraries
superBlock: front-end-development-libraries-v9
certification: front-end-development-libraries-v9
---
## Introduction to Front End Development Libraries
This is a stub introduction for Front End Development Libraries

View File

@@ -0,0 +1,9 @@
---
title: Python
superBlock: python-v9
certification: python-v9
---
## Introduction to Python
This is a stub introduction for Python

View File

@@ -0,0 +1,9 @@
---
title: Relational Database
superBlock: relational-databases-v9
certification: relational-databases-v9
---
## Introduction to Relational Databases
This is a stub introduction for Relational Databases

View File

@@ -12,6 +12,10 @@ import fullStackOpen from '../../../../../curriculum/structure/superblocks/full-
import a1Spanish from '../../../../../curriculum/structure/superblocks/a1-professional-spanish.json';
import respWebDesignV9 from '../../../../../curriculum/structure/superblocks/responsive-web-design-v9.json';
import javascriptV9 from '../../../../../curriculum/structure/superblocks/javascript-v9.json';
import frontEndDevLibsV9 from '../../../../../curriculum/structure/superblocks/front-end-development-libraries-v9.json';
import pythonV9 from '../../../../../curriculum/structure/superblocks/python-v9.json';
import relationalDbV9 from '../../../../../curriculum/structure/superblocks/relational-databases-v9.json';
import backEndDevApisV9 from '../../../../../curriculum/structure/superblocks/back-end-development-and-apis-v9.json';
import { ChapterIcon } from '../../../assets/chapter-icon';
import { type Chapter } from '../../../../../shared-dist/config/chapters';
@@ -195,6 +199,14 @@ export const SuperBlockAccordion = ({
return respWebDesignV9;
case SuperBlocks.JsV9:
return javascriptV9;
case SuperBlocks.FrontEndDevLibsV9:
return frontEndDevLibsV9;
case SuperBlocks.PythonV9:
return pythonV9;
case SuperBlocks.RelationalDbV9:
return relationalDbV9;
case SuperBlocks.BackEndDevApisV9:
return backEndDevApisV9;
default:
throw new Error("The SuperBlock structure hasn't been imported.");
}