feat: split rdbms into individual blocks and two challengeTypes (#44978)

* feat: split english rdbms into individual blocks

fix: stuff

fix: remove from partiallyComplete array on submit

fix: add suggestion

Update client/i18n/locales/english/translations.json

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/i18n/locales/english/intro.json

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/i18n/locales/english/intro.json

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/i18n/locales/english/intro.json

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/src/templates/Challenges/codeally/show.tsx

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/src/templates/Challenges/codeally/show.tsx

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/src/templates/Challenges/codeally/show.tsx

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/src/templates/Challenges/codeally/show.tsx

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/src/templates/Challenges/codeally/show.tsx

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/src/templates/Challenges/codeally/show.tsx

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/src/templates/Challenges/codeally/show.tsx

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Update client/src/templates/Challenges/codeally/show.tsx

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

* fix: prettier

* fix: style suggestion

* Apply suggestions from code review

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
This commit is contained in:
Tom
2022-02-11 09:39:27 -06:00
committed by GitHub
parent 226a8248b7
commit 57cf47dad4
267 changed files with 3832 additions and 2229 deletions

View File

@ -11,7 +11,8 @@ const quiz = 8;
const invalid = 9;
const pythonProject = 10;
const video = 11;
const codeally = 12;
const codeAllyPractice = 12;
const codeAllyCert = 13;
const multiFileCertProject = 14;
// individual exports
@ -34,7 +35,8 @@ exports.challengeTypes = {
quiz,
invalid,
video,
codeally,
codeAllyPractice,
codeAllyCert,
multiFileCertProject
};
@ -69,7 +71,8 @@ exports.viewTypes = {
[quiz]: 'quiz',
[backend]: 'backend',
[video]: 'video',
[codeally]: 'codeally',
[codeAllyPractice]: 'codeAlly',
[codeAllyCert]: 'codeAlly',
[multiFileCertProject]: 'classic'
};
@ -91,6 +94,7 @@ exports.submitTypes = {
[backend]: 'backend',
[modern]: 'tests',
[video]: 'tests',
[codeAllyCert]: 'project.frontEnd',
[multiFileCertProject]: 'tests'
};

View File

@ -15,7 +15,7 @@ const frontend = path.resolve(
__dirname,
'../../src/templates/Challenges/projects/frontend/Show.tsx'
);
const codeally = path.resolve(
const codeAlly = path.resolve(
__dirname,
'../../src/templates/Challenges/codeally/show.tsx'
);
@ -38,7 +38,7 @@ const views = {
modern: classic,
frontend,
video,
codeally
codeAlly
// quiz: Quiz
};

View File

@ -63,21 +63,20 @@
"functional-programming-spreadsheet": "JavaScript",
"intermediate-javascript-calorie-counter": "JavaScript",
"d3-dashboard": "JavaScript",
"learn-bash-by-building-a-boilerplate": "Relational Databases",
"learn-relational-databases-by-building-a-mario-database": "Relational Databases",
"celestial-bodies-database": "Relational Databases",
"learn-bash-scripting-by-building-five-programs": "Relational Databases",
"learn-bash-and-sql-by-building-a-bike-rental-shop": "Relational Databases",
"salon-appointment-scheduler": "Relational Databases",
"learn-sql-by-building-a-student-database-part-1": "Relational Databases",
"learn-sql-by-building-a-student-database-part-2": "Relational Databases",
"learn-advanced-bash-by-building-a-kitty-ipsum-translator": "Relational Databases",
"world-cup-database": "Relational Databases",
"learn-nano-by-building-a-castle": "Relational Databases",
"learn-git-by-building-an-sql-reference-object": "Relational Databases",
"periodic-table-database": "Relational Databases",
"learn-github-by-building-a-list-of-inspirational-quotes": "Relational Databases",
"number-guessing-game": "Relational Databases",
"learn-bash-by-building-a-boilerplate": "Backend Development",
"learn-relational-databases-by-building-a-mario-database": "Backend Development",
"celestial-bodies-database": "Backend Development",
"learn-bash-scripting-by-building-five-programs": "Backend Development",
"learn-bash-and-sql-by-building-a-bike-rental-shop": "Backend Development",
"salon-appointment-scheduler": "Backend Development",
"learn-sql-by-building-a-student-database-part-1": "Backend Development",
"learn-sql-by-building-a-student-database-part-2": "Backend Development",
"learn-advanced-bash-by-building-a-kitty-ipsum-translator": "Backend Development",
"world-cup-database": "Backend Development",
"learn-nano-by-building-a-castle": "Backend Development",
"learn-git-by-building-an-sql-reference-object": "Backend Development",
"periodic-table-database": "Backend Development",
"number-guessing-game": "Backend Development",
"learn-accessibility-by-building-a-quiz": "HTML-CSS",
"learn-css-colors-by-building-a-set-of-colored-markers": "HTML-CSS",
"learn-html-forms-by-building-a-registration-form": "HTML-CSS",