// nav bar scroll effect const scrollLimit = 150; document.addEventListener('DOMContentLoaded', () => { goToURL(window.location.pathname); }); window.addEventListener('popstate', _ => { goToURL(window.history.state); }); window.onscroll = () => { // check if scrolled past limit if so add scrolled class to change background of nav if (document.body.scrollTop >= scrollLimit || document.documentElement.scrollTop >= scrollLimit) { document.querySelector('nav').classList.add('scrolled'); } else { document.querySelector('nav').classList.remove('scrolled'); } }; /** * goToURL tries to go to the specified URL if not shows the error page (not yet implemented) * @param {string} url of the page */ function goToURL(url) { // Get the current URL and split it into an array let urlArray = url.split('/'); if (url === '/blog/' || url === '/blog') { loadHomeContent(); // window.history.pushState(null, null, url); return; } // Check if the URL is a post page if (urlArray[2] === 'post') { // Create a new URL with the dynamic part loadIndividualPost(urlArray[urlArray.length - 1]).catch(err => console.log(err)); return; } if (urlArray[2] === 'category') { // Create a new URL with the dynamic part if (urlArray[3]) { loadPostsByCategory(urlArray[urlArray.length - 1]); return; } loadAllCategories().catch(err => console.log(err)); return; } if (urlArray[2] === 'search' && urlArray[3]) { // Create a new URL with the dynamic part loadSearchResults(urlArray[urlArray.length - 1]); return; } if (urlArray[2] === 'policy') { if (urlArray[3] === 'privacy') { loadPrivacyPolicy(); return; } if (urlArray[3] === 'cookie') { loadCookiePolicy(); return; } } show404(); } document.querySelector('#searchBtn').addEventListener('click', _ => { let searchTerm = document.querySelector('#searchField').value; if (searchTerm.length > 0) { window.history.pushState(null, null, `/blog/search/${searchTerm}`); document.querySelector('#searchField').value = ''; document.querySelector('#main').innerHTML = ''; goToURL(`/blog/search/${searchTerm}`); } }); document.querySelector('#searchField').addEventListener('keyup', e => { if (e.key === 'Enter') { document.querySelector('#searchBtn').click(); } }); /** * Creates a formatted date * @param {string} dateString - the date string * @returns {string} the formatted date */ function createFormattedDate(dateString) { let formattedDate = new Date(dateString); return formattedDate.toLocaleDateString('en-GB', { day: '2-digit', month: 'short', year: 'numeric' }); } /** * Creates a large post element * @param post the post object * @returns {HTMLDivElement} the outer content of the post */ function createLargePost(post) { let outerContent = document.createElement('div'); outerContent.classList.add('outerContent'); let img = document.createElement('img'); img.className = 'banner'; img.src = post.headerImg; img.alt = post.title; outerContent.appendChild(img); let content = document.createElement('div'); content.classList.add('content'); let postContent = document.createElement('div'); postContent.classList.add('postContent'); let categories = ''; post.categories.split(', ').forEach(category => { categories += `${category}`; if (post.categories.split(', ').length > 1) { categories += ', '; } }); if (categories.endsWith(', ')) { categories = categories.substring(0, categories.length - 2); } let dateModifiedString = createFormattedDate(post.dateModified); postContent.innerHTML = `

${post.title}

Last updated: ${dateModifiedString} | ${categories}

${post.abstract}

See Post `; content.appendChild(postContent); outerContent.appendChild(content); return outerContent; } /** * Loads the home content */ function loadHomeContent() { fetch('/api/blog/post').then(res => res.json().then(json => { for (let i = 0; i < json.length; i++) { if (json[i].featured === 1) { let featuredPost = document.createElement('section'); featuredPost.classList.add('largePost'); featuredPost.id = 'featuredPost'; let h1 = document.createElement('h1'); h1.innerHTML = 'featured post'; featuredPost.appendChild(h1); let outerContent = createLargePost(json[i]); featuredPost.appendChild(outerContent); document.querySelector('#main').appendChild(featuredPost); } if (i === 1) { let latestPost = document.createElement('section'); latestPost.classList.add('largePost'); latestPost.id = 'latestPost'; let h1 = document.createElement('h1'); h1.innerHTML = 'latest post'; latestPost.appendChild(h1); let outerContent = createLargePost(json[i]); latestPost.appendChild(outerContent); document.querySelector('#main').appendChild(latestPost); } } })); } /** * Gets the latest and featured posts * @returns {Promise} the latest and featured posts */ async function getLatestAndFeaturedPosts() { let latestPost = await fetch('/api/blog/post/latest').then(res => res.json()); let featuredPost = await fetch('/api/blog/post/featured').then(res => res.json()); return [latestPost, featuredPost]; } /** * Converts a csv to an array * @param text the csv text * @returns {string[]} the array */ function csvToArray(text) { let p = ''; let arr = ['']; let i = 0; let s = true; let l = null; for (l of text) { if ('"' === l) { if (s && l === p) { arr[i] += l; } s = !s; } else if (',' === l && s) { l = arr[++i] = ''; } else if ('\n' === l && s) { if ('\r' === p) { row[i] = row[i].slice(0, -1); } arr = arr[++r] = [l = '']; i = 0; } else { arr[i] += l; } p = l; } return arr; } /** * Gets the categories * @returns {Promise<*[]>} the categories */ async function getCategories() { let categories = await fetch('/api/blog/categories').then(res => res.json()); let modifiedCategories = []; categories.forEach(category => modifiedCategories = modifiedCategories.concat(csvToArray(category.categories.replace(/\s*,\s*/g, ',')))); return [...new Set(modifiedCategories)]; } /** * Creates the categories * @param {*[]} categoriesList the categories */ function createCategories(categoriesList) { let categories = ''; categoriesList.forEach(category => categories += `${category}`); return categories; } /** * Creates the button categories * @param {string[][]} categoriesList - the categories */ function createButtonCategories(categoriesList) { let categories = ''; categoriesList.forEach(lst => lst.forEach(category => categories += `${category}`)); return categories; } /** * Creates the side content * @returns {HTMLElement} the aside element */ async function createSideContent() { let posts = await getLatestAndFeaturedPosts(); let latestPost = posts[0]; let featuredPost = posts[1]; let categoriesList = await getCategories(); let categories = createCategories(categoriesList); let sideContent = document.createElement('aside'); sideContent.classList.add('sideContent'); sideContent.innerHTML = `
My professional picture taken in brighton near 
                                        north street at night wearing a beige jacket and checkered shirt

Rohit Pai

Avid Full Stack Dev | Uni of Notts Grad | Amateur Blogger

Sign up to the newsletter

feeds

Atom JSON

categories

${categories}
`; return sideContent; } /** * Trys to load the individual post if not runs the 404 function * @param title */ async function loadIndividualPost(title) { document.title = 'Rohit Pai - ' + decodeURI(title); await fetch(`/api/blog/post/${title}`).then(async res => { if (!res.ok) { show404(); return; } await res.json().then(async json => { // create the post let post = document.createElement('section'); post.classList.add('post'); post.id = 'individualPost'; let mainContent = document.createElement('div'); mainContent.classList.add('mainContent'); let article = document.createElement('article'); article.innerHTML = `

${json.title}

Published: ${createFormattedDate(json.dateCreated)} | Last updated: ${createFormattedDate(json.dateModified)}

${createButtonCategories([csvToArray(json.categories.replace(/\s*,\s*/g, ','))])}

${json.body} `; let comments = document.createElement('section'); comments.classList.add('comments'); comments.innerHTML = `

Comments

`; mainContent.appendChild(article); mainContent.appendChild(comments); let sideContent = await createSideContent(); post.appendChild(mainContent); post.appendChild(sideContent); document.querySelector('#main').appendChild(post); let disqus_config = _ => { this.page.url = window.location.href; // Replace PAGE_URL with your page's canonical URL variable this.page.identifier = window.location.href.substring(window.location.href.lastIndexOf('/') + 1); // Replace PAGE_IDENTIFIER with your page's unique identifier variable }; (function () { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = 'https://rohitpaiportfolio.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); d.body.appendChild(s); })(); }); }); } /** * Loads all the categories */ async function loadAllCategories() { document.title = 'Rohit Pai - Categories'; let categoriesList = await getCategories(); let main = document.querySelector('#main'); let categories = document.createElement('section'); categories.classList.add('categories'); categories.id = 'allCategories'; let h1 = document.createElement('h1'); h1.innerHTML = 'Categories'; main.appendChild(h1); for (let category of categoriesList) { let btnContainer = document.createElement('div'); btnContainer.classList.add('btnContainer'); let btn = document.createElement('a'); btn.classList.add('btn'); btn.classList.add('btnPrimary'); btn.innerHTML = category; btn.href = `/blog/category/${category}`; btnContainer.appendChild(btn); categories.appendChild(btnContainer); } main.appendChild(categories); } /** * Loads the posts by category * @param category the category */ function loadPostsByCategory(category) { document.title = 'Rohit Pai - ' + decodeURI(category); fetch(`/api/blog/categories/${category}`).then(res => res.json().then(json => { let main = document.querySelector('#main'); let posts = document.createElement('section'); posts.classList.add('catPosts'); posts.id = 'postsByCategory'; let h1 = document.createElement('h1'); h1.innerHTML = decodeURI(category); main.appendChild(h1); for (let i = 0; i < json.length; i++) { let largePost = document.createElement('section'); largePost.classList.add('largePost'); if (i < json.length - 1) { largePost.classList.add('categoryPost'); } largePost.id = `lp-${i + 1}`; let outerContent = createLargePost(json[i]); largePost.appendChild(outerContent); posts.appendChild(largePost); } main.appendChild(posts); })); } /** * Loads the search results * @param searchTerm the search term */ function loadSearchResults(searchTerm) { document.title = 'Rohit Pai - Search Results for ' + decodeURI(searchTerm); fetch(`/api/blog/search/${searchTerm}`).then(res => res.json().then(json => { let main = document.querySelector('#main'); let posts = document.createElement('section'); posts.classList.add('catPosts'); posts.id = 'searchResults'; let h1 = document.createElement('h1'); h1.innerHTML = 'Search Results'; main.appendChild(h1); for (let i = 0; i < json.length; i++) { let largePost = document.createElement('section'); largePost.classList.add('largePost'); if (i < json.length - 1) { largePost.classList.add('categoryPost'); } let outerContent = createLargePost(json[i]); largePost.appendChild(outerContent); posts.appendChild(largePost); } main.appendChild(posts); })); } /** * Loads the privacy policy */ function loadPrivacyPolicy() { document.querySelector('#main').innerHTML = `

Privacy Policy

Last Updated: Nov 12, 2023

Thank you for visiting the Privacy Policy of Rohit Pai's Blog. This Privacy Policy explains how I, Rohit Pai, collect, use, and share information about you (“you”, “yours” or “user”) when you access or use my website (“Services”). You are responsible for any third-party data you provide or share through the Services and confirm that you have the third party's consent to provide such data to me.


Sources of Information and Tracking Technologies

I collect information that you directly provide to me, such as when you submit a form or send me a message with your information. I may also receive information about you from my partners, including but not limited to distribution partners, data services, and marketing firms. I may combine this information with other information I collect from or about you. In these cases, my Privacy Policy governs the handling of the combined information. I and my partners may collect the information noted in this privacy policy using cookies, web beacons, pixels, and other similar technologies. These technologies are used for authentication, to store your preferences or progress, for analytics, and for advertising and analytics. Cookies are small text files stored on your computer. You can set your browser to reject cookies altogether, to reject my cookies in particular, or to delete cookies. However, this may cause some or all of my Services not to function on your computer or device.


How I Use Your Information

I use information I collect about you to provide, maintain, and improve my Services and other interactions I have with you. For example, I use the information collected to:


How I May Share Information

I may share your Personal Information in the following situations:


Advertising and Analytics

I use advertising and analytics technologies to better understand your online activity on my Services to provide personalized products and services that may interest you. I may allow third-party companies, including ad networks, to serve advertisements, provide other advertising services, and/or collect certain information when you visit my website. Third-party companies may use pseudonymized personal data (e.g., click stream information, browser type, time and date, subject of advertisements clicked or scrolled over) during your visit to this website in order to provide advertisements about goods and services likely to be of interest to you, on this website and others. To learn more about Interest-Based Advertising or to opt-out of this type of advertising, you can visit AboutAds.info/choices or www.networkadvertising.org/choices. Some third-party companies may also use non-cookie technologies, such as statistical IDs. Please keep in mind that your web browser may not permit you to block the use of these non-cookie technologies, and those browser settings that block cookies may have no effect on such techniques. If the third-party company uses the non-cookie technologies for interest-based advertising, you can opt out at www.networkadvertising.org/choices. Please note the industry opt out only applies to use for interest-based advertising and may not apply to use for analytics or attribution. Some websites have “do not track” features that allow you to tell a website not to track you. These features are not all uniform. I do not currently respond to those signals.


Data Security

I implement commercially reasonable security measures designed to protect your information. Despite my best efforts, however, no security measures are completely impenetrable.


Data Retention

I store the information I collect about you for as long as necessary for the purpose(s) for which I collected it or for other legitimate business purposes, including to meet my legal, regulatory, or other compliance obligations.


EU Privacy Rights

Individuals located in certain countries, including the European Economic Area (EEA) and the United Kingdom, have certain statutory rights under the General Data Protection Regulation (GDPR) in relation to their personal data.

To the extent information I collect is associated with an identified or identifiable natural person and is protected as personal data under GDPR, it is referred to in this Privacy Policy as “Personal Data”.

Data Subject Access Requests

Subject to any exemptions provided by law, you may have the right to request:

To access your privacy rights, send me an email at rohit@rohitpai.co.uk.

I will generally process requests within one month. I may need to request specific information from you to help me confirm your identity and/or the jurisdiction in which you reside. If your request is complicated or if you have made a large number of requests, it may take me longer. I will let you know if I need longer than one month to respond.

Legal Bases For Processing Personal Data

I may process your Personal Data under applicable data protection law on the following legal grounds:


Age Limitations

My Service is intended for adults ages 18 years and above. I do not knowingly collect personally identifiable information from children. If you are a parent or legal guardian and think your child under 13 has given me information, please email or write to me at the address listed at the end of this Privacy Policy. Please mark your inquiries “COPPA Information Request.”


Changes to this Privacy Policy

Rohit Pai may change this Privacy Policy from time to time. I encourage you to visit this page to stay informed. If the changes are material, I may provide you additional notice to your email address or through my Services. Your continued use of the Services indicates your acceptance of the modified Privacy Policy.


Newsletters

You can opt in to receive my marketing emails and/or newsletters by below. I may still send you transactional messages, which include Services-related communications and responses to your questions.


Storage of Information in the United States

Information I maintain may be stored both within and outside of the United States. If you live outside of the United States, you understand and agree that I may transfer your information to the United States, and that U.S. laws may not afford the same level of protection as those in your country.


Contact Me

If you have questions, comments, or concerns about this Privacy Policy, you may contact me at:

Contact rohit@rohitpai.co.uk
`; } function loadCookiePolicy() { document.querySelector('#main').innerHTML = `

Cookies Policy

I only use functional cookies for the blog which includes PHP Session ID, disqus and maybe share this. I think that these are functional cookies, if you don't, you're welcome to exit the site or tell me by emailing me through the email address below, or the contact form on the contact page.


rohit@rohitpai.co.uk
contact
`; } /** * Shows the 404 page */ function show404() { document.querySelector('#main').innerHTML = `

Blog post, Category or page not found

See all blog posts
`; }