From faefcbf6041e4f2cbf5fce2274c52273efe955c4 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 8 Sep 2024 09:47:39 -0700 Subject: [PATCH] chore: formatting --- config/filters/dates.js | 30 +++++++++++++++--------------- config/filters/media.js | 4 ++-- package-lock.json | 10 +++++----- package.json | 2 +- src/assets/scripts/index.js | 2 +- 5 files changed, 24 insertions(+), 24 deletions(-) diff --git a/config/filters/dates.js b/config/filters/dates.js index ca407e38..446d0e85 100644 --- a/config/filters/dates.js +++ b/config/filters/dates.js @@ -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}` } } \ No newline at end of file diff --git a/config/filters/media.js b/config/filters/media.js index d077eb5b..7c603e62 100644 --- a/config/filters/media.js +++ b/config/filters/media.js @@ -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 `${year.value}${separator}`; + const separator = index < years.length - 1 ? ' / ' : '' + return `${year.value}${separator}` }).join(''), bookSortDescending: (books) => books.filter(book => !isNaN(DateTime.fromISO(book.date).toMillis())).sort((a, b) => { const dateA = DateTime.fromISO(a.date) diff --git a/package-lock.json b/package-lock.json index 40dfd575..422aa04f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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": { diff --git a/package.json b/package.json index 5ac685e8..c45245f0 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/assets/scripts/index.js b/src/assets/scripts/index.js index e9512991..89e5b2b1 100644 --- a/src/assets/scripts/index.js +++ b/src/assets/scripts/index.js @@ -10,7 +10,7 @@ window.addEventListener('load', () => { e.preventDefault() menuInput.checked = !menuInput.checked } - }); + }) menuItems.forEach((item) => { item.addEventListener('keydown', (e) => {