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

[DRAFT - experimental] Migrate from next12 pages to next13 app dir #145

Open
wants to merge 28 commits into
base: stable
Choose a base branch
from

Commits on Feb 7, 2023

  1. app dir migration

    Anna Harrington authored and Anna Harrington committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    57a90c9 View commit details
    Browse the repository at this point in the history
  2. feat: working on adding a disclaimer to the data page

    Amir Kaudinov authored and Amir Kaudinov committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    76a81bc View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2023

  1. create data provider

    Anna Harrington authored and Anna Harrington committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    c0a9623 View commit details
    Browse the repository at this point in the history
  2. root page uses data context

    Anna Harrington authored and Anna Harrington committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    837c155 View commit details
    Browse the repository at this point in the history
  3. migrate to app folder structure

    Anna Harrington authored and Anna Harrington committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    04d7113 View commit details
    Browse the repository at this point in the history
  4. feat: Disclaimer

    - Added a Disclaimer to the Data top bar
    - Updated the Data top bar styles to account for the disclaimer
    - Created disclaimer styles to be responsive
    Amir Kaudinov authored and Amir Kaudinov committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    40c3065 View commit details
    Browse the repository at this point in the history
  5. add container for css

    Anna Harrington authored and Anna Harrington committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    b9d1b4d View commit details
    Browse the repository at this point in the history
  6. nivo version change

    Anna Harrington authored and Anna Harrington committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    50401b8 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2023

  1. data polling from provider

    Anna Harrington authored and Anna Harrington committed Feb 9, 2023
    Configuration menu
    Copy the full SHA
    017d658 View commit details
    Browse the repository at this point in the history
  2. clean up and add useCallback

    Anna Harrington authored and Anna Harrington committed Feb 9, 2023
    Configuration menu
    Copy the full SHA
    5990753 View commit details
    Browse the repository at this point in the history
  3. Move Navbar to components

    Anna Harrington authored and Anna Harrington committed Feb 9, 2023
    Configuration menu
    Copy the full SHA
    9a4757f View commit details
    Browse the repository at this point in the history
  4. removed defaultProps

    Anna Harrington authored and Anna Harrington committed Feb 9, 2023
    Configuration menu
    Copy the full SHA
    753c684 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'disclaimer/link' into next-13-app-dir

    Anna Harrington authored and Anna Harrington committed Feb 9, 2023
    Configuration menu
    Copy the full SHA
    d60f217 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2023

  1. update endpoint to use constants

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    f5ab271 View commit details
    Browse the repository at this point in the history
  2. hydration error fix

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    ed04899 View commit details
    Browse the repository at this point in the history
  3. hydration fix

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    df119b5 View commit details
    Browse the repository at this point in the history
  4. App dir restructuring

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    aefaeaa View commit details
    Browse the repository at this point in the history
  5. navbar link update

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    da55070 View commit details
    Browse the repository at this point in the history
  6. update data template and container classnames

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    645ad0a View commit details
    Browse the repository at this point in the history
  7. update content nav dashboard link

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    041dc08 View commit details
    Browse the repository at this point in the history
  8. add navbar to loader

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    7a4ed6d View commit details
    Browse the repository at this point in the history
  9. updated to usePathName with new next13 app directory

    Amir Kaudinov authored and Amir Kaudinov committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    5c90de9 View commit details
    Browse the repository at this point in the history
  10. refactor: deleted useRouter from navbar

    Amir Kaudinov authored and Amir Kaudinov committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    4399406 View commit details
    Browse the repository at this point in the history
  11. css cleanup

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    98dcfed View commit details
    Browse the repository at this point in the history
  12. page state to boolean showBanner

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    495839d View commit details
    Browse the repository at this point in the history
  13. regenerate package.lock

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    3e86eae View commit details
    Browse the repository at this point in the history
  14. fetch data interval changed to 10 min

    Anna Harrington authored and Anna Harrington committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    e6275d6 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2023

  1. refactor: DateRangePicker window size hydration issue fix (#147)

    - Created a new hook: useIsMobile
       - which executes on the client side
    - Refactored DateRangePicker to a functional component so
      it can use the new `useIsMobile` hook when mounting
    - Removed the usage of isMobile layout helper that was trying
      to access the window width directly on React hydration after
      server render, which caused different rendered content issues.
       - the new isMobile hook uses `useEffect` which fires after
         mount, preventing hydration mismatches
    
    Co-authored-by: Amir Kaudinov <[email protected]>
    AKaudinov and Amir Kaudinov authored Feb 21, 2023
    Configuration menu
    Copy the full SHA
    5fe1de3 View commit details
    Browse the repository at this point in the history