mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-19 18:18:27 -05:00
feat: release rdb and python certs (#64253)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: moT01 <20648924+moT01@users.noreply.github.com>
This commit is contained in:
@@ -5089,13 +5089,9 @@
|
||||
"title": "JavaScript Certification",
|
||||
"intro": [
|
||||
"This course teaches you core JavaScript programming concepts such as working with variables, functions, objects, arrays, and control flow. You'll also learn how to manipulate the DOM, handle events, and apply techniques like asynchronous programming, functional programming, and accessibility best practices.",
|
||||
"To qualify for the exam, you must complete the following projects:",
|
||||
"- Build a Markdown to HTML Converter",
|
||||
"- Build a Drum Machine",
|
||||
"- Build a Voting System",
|
||||
"- Build a Bank Account Management Program",
|
||||
"- Build a Weather App",
|
||||
"Pass the exam to earn your JavaScript Certification."
|
||||
"To earn your JavaScript Certification:",
|
||||
"- Complete the five required projects to qualify for the certification exam.",
|
||||
"- Pass the JavaScript Certification exam."
|
||||
],
|
||||
"chapters": {
|
||||
"javascript": "JavaScript",
|
||||
@@ -6666,7 +6662,6 @@
|
||||
},
|
||||
"python-v9": {
|
||||
"title": "Python Certification",
|
||||
"note": "This certification is currently in development and will be available soon. We recommend completing the available courses below to prepare for the certification exam once it is released.",
|
||||
"intro": [
|
||||
"This course teaches you the fundamentals of Python programming.",
|
||||
"To earn your Python Certification:",
|
||||
@@ -7142,7 +7137,6 @@
|
||||
},
|
||||
"relational-databases-v9": {
|
||||
"title": "Relational Databases Certification",
|
||||
"note": "This certification is currently in development and will be available soon. We recommend completing the available courses below to prepare for the certification exam once it is released.",
|
||||
"intro": [
|
||||
"This course teaches you the fundamentals of relational databases.",
|
||||
"To earn your Relational Databases Certification:",
|
||||
@@ -7734,13 +7728,9 @@
|
||||
"title": "Responsive Web Design Certification",
|
||||
"intro": [
|
||||
"This course teaches the fundamentals of HTML and CSS, including modern layout, design, accessibility, and responsive web development. You'll build practical projects and gain the skills to create professional, user-friendly webpages.",
|
||||
"To qualify for the exam, you must complete the following projects:",
|
||||
"- Build a Survey Form",
|
||||
"- Build a Page of Playing Cards",
|
||||
"- Build a Book Inventory App",
|
||||
"- Build a Technical Documentation Page",
|
||||
"- Build a Product Landing Page",
|
||||
"Pass the exam to earn your Responsive Web Design Certification."
|
||||
"To earn your Responsive Web Design Certification:",
|
||||
"- Complete the five required projects to qualify for the certification exam.",
|
||||
"- Pass the Responsive Web Design Certification exam."
|
||||
],
|
||||
"chapters": {
|
||||
"html": "HTML",
|
||||
|
||||
@@ -154,6 +154,8 @@ export function ShowSettings(props: ShowSettingsProps): JSX.Element {
|
||||
isFullStackCert,
|
||||
isRespWebDesignCert,
|
||||
isRespWebDesignCertV9,
|
||||
isPythonCertV9,
|
||||
isRelationalDatabaseCertV9,
|
||||
isSciCompPyCertV7,
|
||||
isDataAnalysisPyCertV7,
|
||||
isMachineLearningPyCertV7,
|
||||
@@ -241,8 +243,10 @@ export function ShowSettings(props: ShowSettingsProps): JSX.Element {
|
||||
isInfosecQaCert={isInfosecQaCert}
|
||||
isJsAlgoDataStructCert={isJsAlgoDataStructCert}
|
||||
isMachineLearningPyCertV7={isMachineLearningPyCertV7}
|
||||
isPythonCertV9={isPythonCertV9}
|
||||
isQaCertV7={isQaCertV7}
|
||||
isRelationalDatabaseCertV8={isRelationalDatabaseCertV8}
|
||||
isRelationalDatabaseCertV9={isRelationalDatabaseCertV9}
|
||||
isRespWebDesignCert={isRespWebDesignCert}
|
||||
isRespWebDesignCertV9={isRespWebDesignCertV9}
|
||||
isSciCompPyCertV7={isSciCompPyCertV7}
|
||||
|
||||
@@ -12,6 +12,7 @@ export const getCertifications = (user: User) => {
|
||||
isJsAlgoDataStructCert,
|
||||
isApisMicroservicesCert,
|
||||
isInfosecQaCert,
|
||||
isPythonCertV9,
|
||||
isQaCertV7,
|
||||
isInfosecCertV7,
|
||||
isFrontEndCert,
|
||||
@@ -22,6 +23,7 @@ export const getCertifications = (user: User) => {
|
||||
isDataAnalysisPyCertV7,
|
||||
isMachineLearningPyCertV7,
|
||||
isRelationalDatabaseCertV8,
|
||||
isRelationalDatabaseCertV9,
|
||||
isCollegeAlgebraPyCertV8,
|
||||
isFoundationalCSharpCertV8,
|
||||
isJsAlgoDataStructCertV8
|
||||
@@ -32,7 +34,9 @@ export const getCertifications = (user: User) => {
|
||||
isA2EnglishCert ||
|
||||
isRespWebDesignCertV9 ||
|
||||
isJavascriptCertV9 ||
|
||||
isFoundationalCSharpCertV8,
|
||||
isFoundationalCSharpCertV8 ||
|
||||
isPythonCertV9 ||
|
||||
isRelationalDatabaseCertV9,
|
||||
hasLegacyCert:
|
||||
isFrontEndCert ||
|
||||
isJsAlgoDataStructCert ||
|
||||
@@ -73,6 +77,16 @@ export const getCertifications = (user: User) => {
|
||||
show: isFoundationalCSharpCertV8,
|
||||
title: 'Foundational C# with Microsoft Certification',
|
||||
certSlug: Certification.FoundationalCSharp
|
||||
},
|
||||
{
|
||||
show: isPythonCertV9,
|
||||
title: 'Python Certification',
|
||||
certSlug: Certification.PythonV9
|
||||
},
|
||||
{
|
||||
show: isRelationalDatabaseCertV9,
|
||||
title: 'Relational Database Certification',
|
||||
certSlug: Certification.RelationalDbV9
|
||||
}
|
||||
],
|
||||
legacyCerts: [
|
||||
|
||||
@@ -63,6 +63,7 @@ const userProps = {
|
||||
isFrontEndLibsCert: true,
|
||||
isFullStackCert: true,
|
||||
isInfosecQaCert: true,
|
||||
isPythonCertV9: true,
|
||||
isQaCertV7: true,
|
||||
isInfosecCertV7: true,
|
||||
isJavascriptCertV9: true,
|
||||
@@ -73,6 +74,7 @@ const userProps = {
|
||||
isDataAnalysisPyCertV7: true,
|
||||
isMachineLearningPyCertV7: true,
|
||||
isRelationalDatabaseCertV8: true,
|
||||
isRelationalDatabaseCertV9: true,
|
||||
isCollegeAlgebraPyCertV8: true,
|
||||
isFoundationalCSharpVertV8: true
|
||||
},
|
||||
|
||||
@@ -271,6 +271,7 @@ const defaultTestProps = {
|
||||
isFullStackCert: false,
|
||||
isHonest: false,
|
||||
isInfosecQaCert: false,
|
||||
isPythonCertV9: false,
|
||||
isQaCertV7: false,
|
||||
isInfosecCertV7: false,
|
||||
isJavascriptCertV9: false,
|
||||
@@ -282,6 +283,7 @@ const defaultTestProps = {
|
||||
isDataAnalysisPyCertV7: false,
|
||||
isMachineLearningPyCertV7: false,
|
||||
isRelationalDatabaseCertV8: false,
|
||||
isRelationalDatabaseCertV9: false,
|
||||
isCollegeAlgebraPyCertV8: false,
|
||||
isFoundationalCSharpCertV8: false,
|
||||
username: 'developmentuser',
|
||||
|
||||
@@ -49,6 +49,7 @@ const createCertifiedMap = ({
|
||||
isJavascriptCertV9,
|
||||
isJsAlgoDataStructCert,
|
||||
isInfosecQaCert,
|
||||
isPythonCertV9,
|
||||
isQaCertV7,
|
||||
isInfosecCertV7,
|
||||
isFrontEndLibsCert,
|
||||
@@ -61,6 +62,7 @@ const createCertifiedMap = ({
|
||||
isDataAnalysisPyCertV7,
|
||||
isMachineLearningPyCertV7,
|
||||
isRelationalDatabaseCertV8,
|
||||
isRelationalDatabaseCertV9,
|
||||
isCollegeAlgebraPyCertV8,
|
||||
isFoundationalCSharpCertV8,
|
||||
isJsAlgoDataStructCertV8
|
||||
@@ -91,8 +93,8 @@ const createCertifiedMap = ({
|
||||
[Certification.RespWebDesignV9]: isRespWebDesignCertV9,
|
||||
[Certification.JsV9]: isJavascriptCertV9,
|
||||
[Certification.FrontEndDevLibsV9]: false,
|
||||
[Certification.PythonV9]: false,
|
||||
[Certification.RelationalDbV9]: false,
|
||||
[Certification.PythonV9]: isPythonCertV9,
|
||||
[Certification.RelationalDbV9]: isRelationalDatabaseCertV9,
|
||||
[Certification.BackEndDevApisV9]: false,
|
||||
[Certification.FullStackDeveloperV9]: false,
|
||||
[Certification.A2English]: isA2EnglishCert,
|
||||
|
||||
@@ -474,10 +474,12 @@ export type ClaimedCertifications = {
|
||||
isFullStackCert: boolean;
|
||||
isInfosecQaCert: boolean;
|
||||
isJavascriptCertV9: boolean;
|
||||
isPythonCertV9: boolean;
|
||||
isQaCertV7: boolean;
|
||||
isInfosecCertV7: boolean;
|
||||
isJsAlgoDataStructCert: boolean;
|
||||
isRelationalDatabaseCertV8: boolean;
|
||||
isRelationalDatabaseCertV9: boolean;
|
||||
isRespWebDesignCert: boolean;
|
||||
isRespWebDesignCertV9: boolean;
|
||||
isSciCompPyCertV7: boolean;
|
||||
|
||||
Reference in New Issue
Block a user