-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Mark #27
Open
markwitt1
wants to merge
35
commits into
malikpiara:main
Choose a base branch
from
markwitt1:mark
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Mark #27
Changes from 4 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
902764a
Setup prettier ✨
markwitt1 b4b6a5c
Ran `npm run format:fix`
markwitt1 1093f7d
Enable formatOnSave
markwitt1 2f4fff6
Remove redundant metadata (check https://nextjs.org/docs/app/building…
markwitt1 69169f0
Redesign content.ts to be single source of truth
markwitt1 dbd5530
Proposal: Refactor App to completely abstract away content from UI co…
markwitt1 34f5adb
Add @typescript-eslint/recommended for better linting such as no-unus…
markwitt1 0c98c4f
Redo Sidebar using ShadCN accordion. Improve Routing. Refactor quiz c…
markwitt1 bf3b68f
randomize question options
markwitt1 55ed4fc
Add ESLint rule to only warn about unused variables instead of errori…
markwitt1 57b1d37
Update NavBar to get chapters from props
markwitt1 aa40a94
Adjust Question component to support quiz mode + implement quiz mode
markwitt1 e936fc9
Adopt StartScreen and EndScreen for quiz
markwitt1 3e8f2dd
Cleanup unused files
markwitt1 10e4628
Implement Retry Feature
markwitt1 d74f975
Install Posthog (https://eu.posthog.com/project/20336/onboarding/prod…
markwitt1 471e718
Add PostHog event tracking to quiz and chapter pages
markwitt1 565e9f2
Add `prettier-plugin-tailwindcss`https://tailwindcss.com/blog/automat…
markwitt1 7892cb0
Ran `npx prettier --write .`
markwitt1 3dcce1e
Fix svg rules
markwitt1 833df1d
Install dependencies for testing
markwitt1 dca4866
Setup first test
markwitt1 434b8ba
Reinstall using pnpm
markwitt1 3b6a91b
Ignore eslint during build
markwitt1 dc0b597
Add more example tests
markwitt1 2352ec3
remove unused script
markwitt1 b6a9d8c
remove test chapter
markwitt1 dc40134
Implement keyboard shortcuts as well as fixing button errors
markwitt1 4d5a77d
Add back showing question index
markwitt1 87f8bb0
add keyboard shortcut to submit answer
markwitt1 dd1f7f2
remove sidebar in quiz page
markwitt1 be4e77f
Authentication
markwitt1 837d80a
Add documentation
markwitt1 5b55a08
Add explanation feature using OpenAI and React-Query
markwitt1 c7f7192
Add documentation for OpenAI feature
markwitt1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
app/*.tsx | ||
app/**/*.tsx | ||
app/**/**/*.tsx | ||
app/**/**/**/*.tsx | ||
app/**/**/**/**/*.tsx |
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,3 +1,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
"extends": ["next/core-web-vitals", "prettier"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"semi": true, | ||
"tabWidth": 2, | ||
"singleQuote": true, | ||
"jsxSingleQuote": true | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"editor.formatOnSave": true | ||
} |
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @markwitt1, can you explain these changes?