chore: formatting

This commit is contained in:
Cory Dransfeldt 2024-09-08 09:47:39 -07:00
parent b5dd77918e
commit faefcbf604
No known key found for this signature in database
5 changed files with 24 additions and 24 deletions

View file

@ -13,25 +13,25 @@ export default {
return [year, month, day].join(separator) return [year, month, day].join(separator)
}, },
oldPost: (date) => { oldPost: (date) => {
return DateTime.now().diff(DateTime.fromJSDate(new Date(date)), 'years').years > 3; return DateTime.now().diff(DateTime.fromJSDate(new Date(date)), 'years').years > 3
}, },
stringToRFC822Date: (dateString) => { stringToRFC822Date: (dateString) => {
const addLeadingZero = (num) => { const addLeadingZero = (num) => {
num = num.toString(); num = num.toString()
while (num.length < 2) num = "0" + num; while (num.length < 2) num = '0' + num
return num; return num
} }
const dayStrings = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]; const dayStrings = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
const monthStrings = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; const monthStrings = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
const timeStamp = Date.parse(dateString); const timeStamp = Date.parse(dateString)
const date = new Date(timeStamp); const date = new Date(timeStamp)
const day = dayStrings[date.getDay()]; const day = dayStrings[date.getDay()]
const dayNumber = addLeadingZero(date.getDate()); const dayNumber = addLeadingZero(date.getDate())
const month = monthStrings[date.getMonth()]; const month = monthStrings[date.getMonth()]
const year = date.getFullYear(); const year = date.getFullYear()
const time = `${addLeadingZero(date.getHours())}:${addLeadingZero(date.getMinutes())}:00`; const time = `${addLeadingZero(date.getHours())}:${addLeadingZero(date.getMinutes())}:00`
const timezone = date.getTimezoneOffset() === 0 ? "GMT" : "PT"; const timezone = date.getTimezoneOffset() === 0 ? 'GMT' : 'PT'
return `${day}, ${dayNumber} ${month} ${year} ${time} ${timezone}`; return `${day}, ${dayNumber} ${month} ${year} ${time} ${timezone}`
} }
} }

View file

@ -60,8 +60,8 @@ export default {
bookStatus: (books, status) => books.filter(book => book.status === status), bookStatus: (books, status) => books.filter(book => book.status === status),
bookFavorites: (books) => books.filter(book => book.favorite === true), bookFavorites: (books) => books.filter(book => book.favorite === true),
bookYearLinks: (years) => years.sort((a, b) => b.value - a.value).map((year, index) => { bookYearLinks: (years) => years.sort((a, b) => b.value - a.value).map((year, index) => {
const separator = index < years.length - 1 ? ' / ' : ''; const separator = index < years.length - 1 ? ' / ' : ''
return `<a href="/books/years/${year.value}">${year.value}</a>${separator}`; return `<a href="/books/years/${year.value}">${year.value}</a>${separator}`
}).join(''), }).join(''),
bookSortDescending: (books) => books.filter(book => !isNaN(DateTime.fromISO(book.date).toMillis())).sort((a, b) => { bookSortDescending: (books) => books.filter(book => !isNaN(DateTime.fromISO(book.date).toMillis())).sort((a, b) => {
const dateA = DateTime.fromISO(a.date) const dateA = DateTime.fromISO(a.date)

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.8", "version": "24.7.9",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.8", "version": "24.7.9",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",
@ -4457,9 +4457,9 @@
} }
}, },
"node_modules/source-map-js": { "node_modules/source-map-js": {
"version": "1.2.0", "version": "1.2.1",
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
"integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
"dev": true, "dev": true,
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"engines": { "engines": {

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.8", "version": "24.7.9",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -10,7 +10,7 @@ window.addEventListener('load', () => {
e.preventDefault() e.preventDefault()
menuInput.checked = !menuInput.checked menuInput.checked = !menuInput.checked
} }
}); })
menuItems.forEach((item) => { menuItems.forEach((item) => {
item.addEventListener('keydown', (e) => { item.addEventListener('keydown', (e) => {