-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: url updates when results change * chore: building out constructor standings for season results * refactor: utilize axios for fetch calls and include status checks to see if server is active * chore: consume standings data from server Initialize the use of standings data from the server Refactor the drivers and constructors standings ui Include results type declarations at results.d.ts Update faker data to match standings schema * refactor: add constants file and revert from axios to fetch * chore: test api standings of single race * feat: added cypress tests and ci (#14) * test: cypress setup and dropdown test * test: cypress testing branch * fix: update cypress version remove error: ``` TSError: ⨯ Unable to compile TypeScript: error TS5095: Option 'bundler' can only be used when 'module' is set to 'es2015' or later. ``` * fix: rebuild pnpm.lock * chore: updated dependencies * ci: updated ci to include cypress tests * ci: fix for prettier step in lint job --------- Co-authored-by: Pratik Borole <[email protected]> * chore: migrated husky to v9 * chore: updated dependencies * race results prototype (#17) * refactor: main filter separation of concern * chore: introduce race results data per driver * refactor: proper linting * refactor: migrate lib out of app router * chore: successfully test results endpoint * refactor: timeline and remove results endpoint instead of using the /results endpoint we will use the root, /, as the base * refactor: main filter main filters needs info from url params * fix: minor update of race timeline and season tabs * fix: commitlint subject update to support jira ticket names * FRON-10 Document site url endpoints (#18) * chore: FRON-10 main filter url navigation * chore: FRON-10 adding placeholder pages * chore: FRON-8 restructure the way atoms are populated on page load and reset (#19) * FRON-9 spinners for main filter dropdown (#20) chore: FRON-9 main filter dropdowns have a loader * fix: FRON-10 resolving issue with race and session endpoints (#21) (#24) * docs: FRON-4 jira smart commits (#25) * feat: FRON-11 showcase next upcoming event (#26) * fix: FRON-20 packages and dependencies reinstalled (#27) * fix: folder structure * chore: FRON-6 include server 422 error info on page (#29) * refactor: simplify landing page, missing imagery so improvised (#30) * style: migrate from daisyui to shadcn (#31) * refactor: FRON-40 reformat project structure and organization (#32) * feat: FRON-33 shared secret, bearer token (#33) * feat: FRON-33 shared secret used in fetch calls --------- Co-authored-by: Pratik Borole <[email protected]>
- Loading branch information
1 parent
91dfc91
commit a347bea
Showing
78 changed files
with
3,384 additions
and
1,988 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# DEVELOPMENT TOOLS | ||
# Ideally, don't add them to production deployment envs | ||
# Change to true if we want to log data | ||
NEXT_PUBLIC_SHOW_LOGGER="false" | ||
# NEXT_PUBLIC_SHOW_LOGGER="false" | ||
NEXT_PUBLIC_BEARER_TOKEN="my-secret-token" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx --no-install commitlint --edit $1 | ||
pnpm exec commitlint --edit $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx lint-staged | ||
pnpm typecheck | ||
pnpm exec lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nodejs 21.5.0 | ||
nodejs 21.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.