import { isEmpty } from 'lodash';
/**
* Generate the string for the page
* @param {string} courseOrSectionName The name of the course, or the section of the MFE that the user is in currently
* @param {string} pageName The name of the current page
* @returns {string} The combined title
*/
const getPageHeadTitle = (courseOrSectionName, pageName) => {
if (isEmpty(courseOrSectionName)) {
return `${pageName} | ${process.env.SITE_NAME}`;
}
return `${pageName} | ${courseOrSectionName} | ${process.env.SITE_NAME}`;
};
export default getPageHeadTitle;