Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Remove Temporal and only use date-fns #317

Merged
merged 2 commits into from
Mar 27, 2025
Merged

Conversation

moonmeister
Copy link
Member

We were using both. Switched to date-fns only

@moonmeister moonmeister requested a review from Copilot March 26, 2025 20:47

Check out the recent updates to your Headless Platform preview environment:

App Environment URL Build
faustjs.org preview-env-refactor-temporal N/A ❌ (logs)

Learn more about preview environments in our documentation.

Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR refactors the code to remove the dependency on Temporal in favor of date-fns and date-fns-tz.

  • Removed Temporal imports and related calls in favor of date-fns/date-fns-tz functions
  • Updated date handling in both feed generation and API response headers to use standard Date objects and date-fns functions

Reviewed Changes

Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.

File Description
src/lib/feed.js Replaced Temporal with date-fns-tz for generating formatted dates in the feed
src/pages/api/feeds/[feed-type].js Removed Temporal usage and updated date parsing and header formatting with date-fns functions
Files not reviewed (1)
  • package.json: Language not supported
Comments suppressed due to low confidence (2)

src/lib/feed.js:59

  • Ensure that using new Date() together with the provided timeZone option in date-fns-tz produces the exact behavior previously achieved by Temporal.Now.plainDateISO; verify that the current date used here aligns correctly with the intended timezone.
copyright: format(new Date(), "yyyy", {

src/pages/api/feeds/[feed-type].js:82

  • Verify that new Date(if_modified_since) reliably creates a valid Date object from the header value; consider adding error handling or validation if there's a risk of an invalid date causing unexpected comparisons.
compareAsc(last_modified, new Date(if_modified_since)) < 0) // Replaced Temporal.PlainDateTime.compare

@moonmeister moonmeister requested a review from colinmurphy March 26, 2025 20:51
@moonmeister moonmeister enabled auto-merge March 26, 2025 20:51

Check out the recent updates to your Headless Platform preview environment:

App Environment URL Build
faustjs.org preview-env-refactor-temporal https://hc…wered.com ✅ (logs)

Learn more about preview environments in our documentation.

Copy link
Member

@colinmurphy colinmurphy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🚀 🚀 🚀

That looks like a really good library too for dates.

I also manually reviewed and validated the sitemap using - https://www.xml-sitemaps.com/validate-xml-sitemap.html

Screenshot 2025-03-27 at 10 27 32 Screenshot 2025-03-27 at 10 26 55

@moonmeister moonmeister merged commit b9da0a3 into main Mar 27, 2025
4 checks passed
@moonmeister moonmeister deleted the refactor-temporal branch March 27, 2025 10:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants