chore: bigger pool for watching heros; truncate shares more

This commit is contained in:
Cory Dransfeldt 2024-06-20 14:19:40 -07:00
parent c44ab7a8fd
commit 98e04e2bb3
No known key found for this signature in database
6 changed files with 29 additions and 15 deletions

View file

@ -80,7 +80,12 @@ export const allContent = (collection) => {
} }
if (item?.['link']) content['url'] = item?.['link'] if (item?.['link']) content['url'] = item?.['link']
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString() if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()
if (item?.['description']) content['description'] = `${item['description'].split(' ').slice(0, 100).join(' ')}...<br/><br/>` if (item?.['description']) {
content['description'] = `${item['description'].split(' ').slice(0, 25).join(' ')}...<br/><br/>`
} else {
content['description'] = ''
}
const date = getDate ? parseDate(getDate(item)) : null const date = getDate ? parseDate(getDate(item)) : null
if (date) content['date'] = date if (date) content['date'] = date
aggregateContent.push(content) aggregateContent.push(content)

22
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.5.10", "version": "19.5.12",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.5.10", "version": "19.5.12",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",
@ -532,9 +532,9 @@
"peer": true "peer": true
}, },
"node_modules/@types/node": { "node_modules/@types/node": {
"version": "20.14.6", "version": "20.14.7",
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.6.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.7.tgz",
"integrity": "sha512-JbA0XIJPL1IiNnU7PFxDXyfAwcwVVrOoqyzzyQTyMeVhBzkJVMSkC1LlVsRQ2lpqiY4n6Bb9oCS6lzDKVQxbZw==", "integrity": "sha512-uTr2m2IbJJucF3KUxgnGOZvYbN0QgkGyWxG6973HCpMYFy2KfcgYuIwkJQMQkt1VbBMlvWRbpshFTLxnxCZjKQ==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
@ -1149,9 +1149,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.4.806", "version": "1.4.807",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.806.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.807.tgz",
"integrity": "sha512-nkoEX2QIB8kwCOtvtgwhXWy2IHVcOLQZu9Qo36uaGB835mdX/h8uLRlosL6QIhLVUnAiicXRW00PwaPZC74Nrg==", "integrity": "sha512-kSmJl2ZwhNf/bcIuCH/imtNOKlpkLDn2jqT5FJ+/0CXjhnFaOa9cOe9gHKKy71eM49izwuQjZhKk+lWQ1JxB7A==",
"dev": true, "dev": true,
"license": "ISC" "license": "ISC"
}, },
@ -2405,9 +2405,9 @@
"license": "BSD-3-Clause" "license": "BSD-3-Clause"
}, },
"node_modules/morphdom": { "node_modules/morphdom": {
"version": "2.7.2", "version": "2.7.3",
"resolved": "https://registry.npmjs.org/morphdom/-/morphdom-2.7.2.tgz", "resolved": "https://registry.npmjs.org/morphdom/-/morphdom-2.7.3.tgz",
"integrity": "sha512-Dqb/lHFyTi7SZpY0a5R4I/0Edo+iPMbaUexsHHsLAByyixCDiLHPHyVoKVmrpL0THcT7V9Cgev9y21TQYq6wQg==", "integrity": "sha512-rvGK92GxSuPEZLY8D/JH07cG3BxyA+/F0Bxg32OoGAEFFhGWA3OqVpqPZlOgZTCR52clXrmz+z2pYSJ6gOig1w==",
"dev": true, "dev": true,
"license": "MIT" "license": "MIT"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.5.11", "version": "19.5.12",
"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

@ -3,7 +3,12 @@
<div class="watching hero shadow"> <div class="watching hero shadow">
<div class="meta-text"> <div class="meta-text">
<div class="header">{{ movie.title }} ({{ movie.year }})</div> <div class="header">{{ movie.title }} ({{ movie.year }})</div>
<div class="subheader">Last watched @ {{ movie.dateAdded | date: "%B %e, %Y" }}</div> <div class="subheader">
Last watched @ {{ movie.dateAdded | date: "%B %e, %Y" }}
{%- if movie.rating -%}
<span class="rating">({{ movie.rating }})</span>
{%- endif -%}
</div>
</div> </div>
<img <img
srcset=" srcset="

View file

@ -19,6 +19,9 @@
left: var(--sizing-sm); left: var(--sizing-sm);
bottom: var(--sizing-lg); bottom: var(--sizing-lg);
z-index: 2; z-index: 2;
display: flex;
flex-direction: column;
gap: var(--sizing-xs);
& .header { & .header {
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
@ -26,6 +29,7 @@
& .subheader { & .subheader {
font-size: var(--font-size-sm); font-size: var(--font-size-sm);
display: inline-flex;
gap: var(--sizing-xs) gap: var(--sizing-xs)
} }

View file

@ -6,7 +6,7 @@ permalink: "/watching/index.html"
updated: "now" updated: "now"
schema: watching schema: watching
--- ---
{% assign featuredMovie = movies.favorites | featuredWatching: 1 | first %} {% assign featuredMovie = movies.recentlyWatched | featuredWatching: 1 | first %}
<h2 class="watching page-header">{{ title }}</h2> <h2 class="watching page-header">{{ title }}</h2>
{% render "partials/media/watching/hero.liquid" movie:featuredMovie %} {% render "partials/media/watching/hero.liquid" movie:featuredMovie %}
<p>Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion. You can also take a look at the <a href="/watching/movies-to-watch">movies</a> and <a href="/watching/shows-to-watch">shows</a> I'm planning to watch.</p> <p>Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion. You can also take a look at the <a href="/watching/movies-to-watch">movies</a> and <a href="/watching/shows-to-watch">shows</a> I'm planning to watch.</p>