chore: randomize featured posts on build
This commit is contained in:
parent
6f30c62761
commit
4b0ff04023
2 changed files with 11 additions and 1 deletions
|
@ -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) => {
|
||||
|
|
9
config/utilities/index.js
Normal file
9
config/utilities/index.js
Normal file
|
@ -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
|
||||
}
|
Reference in a new issue