2018-04-06 14:51:52 +01:00
|
|
|
const preFormattedBlockNames = {
|
|
|
|
'api-projects': 'API Projects',
|
|
|
|
'basic-css': 'Basic CSS',
|
|
|
|
'basic-html-and-html5': 'Basic HTML and HTML5',
|
|
|
|
'css-flexbox': 'CSS Flexbox',
|
|
|
|
'css-grid': 'CSS Grid',
|
|
|
|
devops: 'DevOps',
|
|
|
|
es6: 'ES6',
|
|
|
|
'information-security-with-helmetjs': 'Information Security with HelmetJS',
|
|
|
|
jquery: 'jQuery',
|
|
|
|
'json-apis-and-ajax': 'JSON APIs and Ajax',
|
|
|
|
'mongodb-and-mongoose': 'MongoDB and Mongoose',
|
2018-12-03 01:56:18 -08:00
|
|
|
'the-dom': 'The DOM',
|
|
|
|
'apis-and-microservices': 'APIs and Microservices',
|
2020-02-25 00:10:32 +05:30
|
|
|
'apis-and-microservices-projects': 'APIs and Microservices Projects',
|
|
|
|
'scientific-computing-with-python': 'Scientific Computing with Python',
|
|
|
|
'data-analysis-with-python': 'Data Analysis with Python',
|
2020-07-02 18:50:43 +07:00
|
|
|
'machine-learning-with-python': 'Machine Learning with Python',
|
2019-11-05 10:56:32 +09:00
|
|
|
tensorflow: 'TensorFlow',
|
2019-12-09 19:37:02 +09:00
|
|
|
'basic-javascript-rpg-game': 'Basic JavaScript RPG Game',
|
2019-11-05 02:09:40 -01:00
|
|
|
'css-variables-skyline': 'CSS Variables Skyline',
|
|
|
|
'javascript-spreadsheet': 'JavaScript Spreadsheet'
|
2018-04-06 14:51:52 +01:00
|
|
|
};
|
|
|
|
|
2018-04-17 15:24:17 +01:00
|
|
|
const noFormatting = ['and', 'for', 'of', 'the', 'up', 'with'];
|
2018-04-06 14:51:52 +01:00
|
|
|
|
|
|
|
exports.blockNameify = function blockNameify(phrase) {
|
|
|
|
const preFormatted = preFormattedBlockNames[phrase] || '';
|
|
|
|
if (preFormatted) {
|
|
|
|
return preFormatted;
|
|
|
|
}
|
2018-04-17 15:24:17 +01:00
|
|
|
return phrase
|
|
|
|
.split('-')
|
|
|
|
.map(word => {
|
2018-04-06 14:51:52 +01:00
|
|
|
if (noFormatting.indexOf(word) !== -1) {
|
|
|
|
return word;
|
|
|
|
}
|
|
|
|
if (word === 'javascript') {
|
|
|
|
return 'JavaScript';
|
|
|
|
}
|
|
|
|
return word.charAt(0).toUpperCase() + word.slice(1);
|
|
|
|
})
|
|
|
|
.join(' ');
|
|
|
|
};
|