const addHeader = ( { document }, title = 'Awesome Design Tools', logo, nav, isTool = false, isPlugin = false, isKit = false ) => { const header = document.querySelector('.header-top'); header.classList.add('header-top--hide-banner'); const { loop } = nav; const defineProductName = () => (isTool && `Awesome Design Tools`) || (isPlugin && `Awesome Design Plugins`) || (isKit && `Awesome Design Kits`); header.innerHTML = `
${ isTool ? ` ` : `` } ${ isPlugin ? `
Show plugins for:
` : `` } ${ isKit ? `
Show plugins for:
` : `` }
`; }; module.exports = addHeader;