feat: more performant popular posts

This commit is contained in:
Cory Dransfeldt 2024-06-03 18:23:13 -07:00
parent 7e3503fbb4
commit 3ef783fd18
No known key found for this signature in database
11 changed files with 28 additions and 32 deletions

View file

@ -7,7 +7,7 @@ import markdownItFootnote from 'markdown-it-footnote'
import htmlmin from 'html-minifier-terser' import htmlmin from 'html-minifier-terser'
import filters from './config/filters/index.js' import filters from './config/filters/index.js'
import { minifyJsComponents } from './config/events/index.js' import { minifyJsComponents } from './config/events/index.js'
import { allContent, searchIndex } from './config/collections/index.js' import { allContent, popularPosts, searchIndex } from './config/collections/index.js'
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
// load .env // load .env
@ -56,6 +56,7 @@ export default async function (eleventyConfig) {
// collections // collections
eleventyConfig.addCollection('allContent', allContent) eleventyConfig.addCollection('allContent', allContent)
eleventyConfig.addCollection('popularPosts', popularPosts)
eleventyConfig.addCollection('searchIndex', searchIndex) eleventyConfig.addCollection('searchIndex', searchIndex)
const md = markdownIt({ html: true, linkify: true }) const md = markdownIt({ html: true, linkify: true })

View file

@ -1,4 +1,5 @@
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
import slugify from 'slugify'
const BASE_URL = 'https://coryd.dev' const BASE_URL = 'https://coryd.dev'
@ -98,3 +99,18 @@ export const allContent = (collection) => {
return dateB - dateA return dateB - dateA
}) })
} }
export const popularPosts = (collection) => {
const collectionData = collection.getAll()[0]
const { data } = collectionData
const { posts, analytics } = data
return posts
.filter((post) => {
if (analytics.find((p) => p.url.includes(post.slug))) return true
})
.sort((a, b) => {
const visitors = (page) => analytics.filter((p) => p.url.includes(page.slug)).pop()?.value
return visitors(b) - visitors(a)
})
}

View file

@ -1,6 +1,5 @@
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
import { URL } from 'url' import { URL } from 'url'
import slugify from 'slugify'
import markdownIt from 'markdown-it' import markdownIt from 'markdown-it'
import sanitizeHtml from 'sanitize-html'; import sanitizeHtml from 'sanitize-html';
@ -29,28 +28,11 @@ export default {
return !!normalizedPage && normalizedPage.includes(category) && !/\d+/.test(normalizedPage); return !!normalizedPage && normalizedPage.includes(category) && !/\d+/.test(normalizedPage);
}, },
// analytics
getPopularPosts: (posts, analytics) => {
return posts
.filter((post) => {
if (analytics.find((p) => p.url.includes(slugify(post.title).toLowerCase()))) return true
})
.sort((a, b) => {
const visitors = (page) => analytics.filter((p) => p.url.includes(slugify(page.title).toLowerCase())).pop().value
return visitors(b) - visitors(a)
})
},
// posts // posts
filterByPostType: (posts, postType) => { filterByPostType: (posts, postType) => {
if (postType === 'featured') return shuffleArray(posts.filter(post => post.featured === true)).slice(0, 3) if (postType === 'featured') return shuffleArray(posts.filter(post => post.featured === true)).slice(0, 3)
return posts.slice(0, 5) return posts.slice(0, 5)
}, },
slugifyPost: (title) => slugify(title, {
replacement: '-',
remove: /[#,&,+()$~%.'":*?<>{}\[\]\/\\|`!@\^\—]/g,
lower: true,
}),
// watching // watching
featuredWatching: (watching, count) => shuffleArray(watching.filter(watch => watch.favorite === true)).slice(0, count), featuredWatching: (watching, count) => shuffleArray(watching.filter(watch => watch.favorite === true)).slice(0, count),

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "18.9.10", "version": "18.10.11",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,6 +1,6 @@
<div class="addon-links"> <div class="addon-links">
{%- if analytics.size > 0 -%} {%- if popularPosts.size > 0 -%}
<div>{% render "partials/widgets/popular-posts.liquid", posts:posts, analytics:analytics %}</div> <div>{% render "partials/widgets/popular-posts.liquid", popularPosts:popularPosts %}</div>
{%- endif -%} {%- endif -%}
{%- if links.size > 0 -%} {%- if links.size > 0 -%}
<div>{% render "partials/widgets/recent-links.liquid", links:links %}</div> <div>{% render "partials/widgets/recent-links.liquid", links:links %}</div>

View file

@ -1,11 +1,10 @@
{% assign postData = posts | getPopularPosts: analytics %} {% if popularPosts.size > 0 %}
{% if postData.size > 0 %}
<h2 class="link-list-header flex-centered"> <h2 class="link-list-header flex-centered">
{% tablericon "flame" "Popular" %} {% tablericon "flame" "Popular" %}
Popular posts Popular posts
</h2> </h2>
<ul class="link-list"> <ul class="link-list">
{% for post in postData limit: 5 %} {% for post in popularPosts limit: 5 %}
<li> <li>
<a class="no-underline" href="{{ post.slug }}" title="{{ post.title | escape}}"> <a class="no-underline" href="{{ post.slug }}" title="{{ post.title | escape}}">
{{ post.title }} {{ post.title }}

View file

@ -380,9 +380,6 @@ main {
.home-status, .home-status,
article { article {
margin-bottom: var(--sizing-base); margin-bottom: var(--sizing-base);
}
.home-status {
border-bottom: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light);
} }

View file

@ -30,5 +30,5 @@ image: /assets/img/404.jpg
What kind of idiots do you have working here? <a href="/">Hurry up and skip out on the room service bill!</a> What kind of idiots do you have working here? <a href="/">Hurry up and skip out on the room service bill!</a>
</div> </div>
<hr class="large-spacing" /> <hr class="large-spacing" />
{% render "partials/widgets/addon-links.liquid", posts:posts, analytics:analytics, links:collections.links %} {% render "partials/widgets/addon-links.liquid", popularPosts:collections.popularPosts, links:links %}
</div> </div>

View file

@ -23,3 +23,4 @@ schema: blog
{% render "partials/posts/blocks.liquid", blocks:post.blocks %} {% render "partials/posts/blocks.liquid", blocks:post.blocks %}
</div> </div>
</article> </article>
{% render "partials/widgets/addon-links.liquid", popularPosts:collections.popularPosts, links:links %}

View file

@ -55,4 +55,4 @@ permalink: /search.html
<input class="search__form--fallback" type="hidden" placeholder="Search" name="sites" value="coryd.dev"> <input class="search__form--fallback" type="hidden" placeholder="Search" name="sites" value="coryd.dev">
</form> </form>
<ul class="search__results hidden"></ul> <ul class="search__results hidden"></ul>
{% render "partials/widgets/addon-links.liquid", posts:posts, analytics:analytics, links:links %} {% render "partials/widgets/addon-links.liquid", popularPosts:collections.popularPosts, links:links %}

View file

@ -9,4 +9,4 @@ description: I'll be in touch soon. Thanks for your message!
I'll be in touch soon! <a href="/">Head home</a> I'll be in touch soon! <a href="/">Head home</a>
</div> </div>
<hr class="large-spacing" /> <hr class="large-spacing" />
{% render "partials/widgets/addon-links.liquid", posts:posts, analytics:analytics, links:links %} {% render "partials/widgets/addon-links.liquid", popularPosts:collections.popularPosts, links:links %}