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

web/common: utils: fix infinite value handling in getRelativeTime function #13564

Merged

Conversation

dominic-r
Copy link
Contributor

Closes #13562

Details

REPLACE ME


Checklist

  • Local tests pass (ak test authentik/)
  • The code has been formatted (make lint-fix)

If an API change has been made

  • The API schema has been updated (make gen-build)

If changes to the frontend have been made

  • The code has been formatted (make web)

If applicable

  • The documentation has been updated
  • The documentation has been formatted (make website)

@dominic-r dominic-r requested a review from a team as a code owner March 18, 2025 13:37
@dominic-r dominic-r changed the title utils: round relative time utils: fix infinite value handling in getRelativeTime function Mar 18, 2025
Copy link

netlify bot commented Mar 18, 2025

Deploy Preview for authentik-storybook ready!

Name Link
🔨 Latest commit 50bfc03
🔍 Latest deploy log https://app.netlify.com/sites/authentik-storybook/deploys/67daf2a82bad560008b6dcd2
😎 Deploy Preview https://deploy-preview-13564--authentik-storybook.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Mar 18, 2025

Deploy Preview for authentik-docs ready!

Name Link
🔨 Latest commit 50bfc03
🔍 Latest deploy log https://app.netlify.com/sites/authentik-docs/deploys/67daf2a82bad560008b6dcd6
😎 Deploy Preview https://deploy-preview-13564--authentik-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@rissson rissson changed the title utils: fix infinite value handling in getRelativeTime function web/common: utils: fix infinite value handling in getRelativeTime function Mar 18, 2025
Copy link

codecov bot commented Mar 18, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 92.68%. Comparing base (868261c) to head (50bfc03).
Report is 101 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main   #13564   +/-   ##
=======================================
  Coverage   92.68%   92.68%           
=======================================
  Files         794      794           
  Lines       40479    40479           
=======================================
+ Hits        37518    37519    +1     
+ Misses       2961     2960    -1     
Flag Coverage Δ
e2e 47.87% <ø> (ø)
integration 24.28% <ø> (ø)
unit 90.51% <ø> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Contributor

@kensternberg-authentik kensternberg-authentik left a comment

Choose a reason for hiding this comment

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

Approved, but I made a suggestion.

return rtf.format(Math.round(elapsed / value), key);
if (Math.abs(elapsed) > value || key === "second") {
let rounded = Math.round(elapsed / value);
if (!isFinite(rounded)) {
Copy link
Contributor

Choose a reason for hiding this comment

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

"Because coercion inside the isNaN() function can be surprising, you may prefer to use Number.isNaN()."

Copy link
Contributor Author

Choose a reason for hiding this comment

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

My code doesn't seem to use isNaN at the moment. Sorry if I'd not get what you mean, but do you want me to add a check for NaN or replace part of my patch with a NaN check?

Copy link
Contributor

Choose a reason for hiding this comment

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

isFinite() uses isNan() under the covers, as the link documents. Although the isFinite() page has the same quote:

"Because coercion inside the isFinite() function can be surprising, you may prefer to use Number.isFinite()."

@kensternberg-authentik kensternberg-authentik merged commit bfa6328 into goauthentik:main Apr 1, 2025
87 checks passed
@dominic-r dominic-r deleted the sdko/closes-13562 branch April 1, 2025 13:47
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.

User view page does not render
3 participants