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)
},
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) => {
const addLeadingZero = (num) => {
num = num.toString();
while (num.length < 2) num = "0" + num;
return num;
num = num.toString()
while (num.length < 2) num = '0' + num
return num
}
const dayStrings = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
const monthStrings = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
const timeStamp = Date.parse(dateString);
const date = new Date(timeStamp);
const day = dayStrings[date.getDay()];
const dayNumber = addLeadingZero(date.getDate());
const month = monthStrings[date.getMonth()];
const year = date.getFullYear();
const time = `${addLeadingZero(date.getHours())}:${addLeadingZero(date.getMinutes())}:00`;
const timezone = date.getTimezoneOffset() === 0 ? "GMT" : "PT";
const dayStrings = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
const monthStrings = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
const timeStamp = Date.parse(dateString)
const date = new Date(timeStamp)
const day = dayStrings[date.getDay()]
const dayNumber = addLeadingZero(date.getDate())
const month = monthStrings[date.getMonth()]
const year = date.getFullYear()
const time = `${addLeadingZero(date.getHours())}:${addLeadingZero(date.getMinutes())}:00`
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),
bookFavorites: (books) => books.filter(book => book.favorite === true),
bookYearLinks: (years) => years.sort((a, b) => b.value - a.value).map((year, index) => {
const separator = index < years.length - 1 ? ' / ' : '';
return `<a href="/books/years/${year.value}">${year.value}</a>${separator}`;
const separator = index < years.length - 1 ? ' / ' : ''
return `<a href="/books/years/${year.value}">${year.value}</a>${separator}`
}).join(''),
bookSortDescending: (books) => books.filter(book => !isNaN(DateTime.fromISO(book.date).toMillis())).sort((a, b) => {
const dateA = DateTime.fromISO(a.date)

10
package-lock.json generated
View file

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

View file

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

View file

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