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

feat(web-client): Recurring payments feature. #598

Merged
merged 4 commits into from
Jul 4, 2023

Conversation

IscoRuta98
Copy link
Contributor

Implementation of Frontend Recurring Payment feature.

@netlify
Copy link

netlify bot commented Jul 2, 2023

Deploy Preview for nautilus-wallet-staging ready!

Name Link
🔨 Latest commit 47c7c50
🔍 Latest deploy log https://app.netlify.com/sites/nautilus-wallet-staging/deploys/64a402fee978ea00089737ec
😎 Deploy Preview https://deploy-preview-598--nautilus-wallet-staging.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.

@IscoRuta98 IscoRuta98 self-assigned this Jul 2, 2023
@IscoRuta98 IscoRuta98 force-pushed the frontend-feat-recurring-payments branch from 88df962 to a4a7adf Compare July 3, 2023 11:27
@IscoRuta98 IscoRuta98 force-pushed the frontend-feat-recurring-payments branch from a4a7adf to dda6b01 Compare July 3, 2023 11:27
@IscoRuta98 IscoRuta98 requested a review from billguo99 July 3, 2023 11:28
@IscoRuta98 IscoRuta98 marked this pull request as ready for review July 3, 2023 11:29
@billguo99
Copy link
Contributor

Nice, just a few minor feedback:

  • Can you remove the console.log that's not in error blocks?
  • When inputting the days for frequency, can you indicate somewhere that the value for the frequency is in days?

One more fix:

  • I saw the date values that you're saving to mongodb is basically Unix timestamp int values.

You'll need to use the following typescript function to convert a Date object to their ordinal value:

const _DAYS_IN_MONTH: number[] = [-1, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];

function isLeapYear(year: number): boolean {
    // year -> 1 if leap year, else 0.
    return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
}

function getDateToOrdinal(date: Date): number {
    const year = date.getFullYear();
    const month = date.getMonth() + 1;
    const day = date.getDate();

    return (
        (year - 1) * 365 +
        Math.floor((year - 1) / 4) -
        Math.floor((year - 1) / 100) +
        Math.floor((year - 1) / 400) +
        _DAYS_IN_MONTH.slice(1, month).reduce((acc, curr) => acc + curr, 0) +
        (month > 2 && isLeapYear(year) ? 1 : 0) +
        day
    );
}

Copy link
Contributor

@billguo99 billguo99 left a comment

Choose a reason for hiding this comment

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

NICE!

@IscoRuta98 IscoRuta98 merged commit eac2103 into main Jul 4, 2023
@IscoRuta98 IscoRuta98 deleted the frontend-feat-recurring-payments branch July 4, 2023 12:31
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