From 4b0ff040234b9404da4841d09a270f6f9a04a1ef Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 8 May 2024 09:27:21 -0700 Subject: [PATCH] chore: randomize featured posts on build --- config/filters/index.js | 3 ++- config/utilities/index.js | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 config/utilities/index.js diff --git a/config/filters/index.js b/config/filters/index.js index fe805fda..e2160603 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -3,6 +3,7 @@ import { URL } from 'url' import slugify from 'slugify' import sanitizeHtml from 'sanitize-html'; import authors from '../data/author-map.js' +import { shuffleArray } from '../utilities/index.js' const utmPattern = /[?&](utm_[^&=]+=[^&#]*)/gi const BASE_URL = 'https://coryd.dev' @@ -61,7 +62,7 @@ export default { // posts filterByPostType: (posts, postType) => { - if (postType === 'featured') return posts.filter(post => post.data.featured === true).splice(0, 3) + if (postType === 'featured') return shuffleArray(posts.filter(post => post.data.featured === true)).slice(0, 3) return posts.slice(0, 5) }, truncateByWordCount: (text, wordCount) => { diff --git a/config/utilities/index.js b/config/utilities/index.js new file mode 100644 index 00000000..9aff9a39 --- /dev/null +++ b/config/utilities/index.js @@ -0,0 +1,9 @@ +export const shuffleArray = array => { + for (let i = array.length - 1; i > 0; i--) { + let j = Math.floor(Math.random() * (i + 1)); + let temp = array[i]; + array[i] = array[j]; + array[j] = temp; + } + return array +} \ No newline at end of file