-
Notifications
You must be signed in to change notification settings - Fork 4
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
React refactor #26
Open
zimengzhou1
wants to merge
30
commits into
KNowledgeOnWebScale:main
Choose a base branch
from
OxfordHCC:main
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
React refactor #26
Changes from 4 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
580357d
React refactor
zimengzhou1 ae28844
Add text login option
zimengzhou1 b41f31f
Error handling
zimengzhou1 d96ca22
update readme
zimengzhou1 206dfeb
Start config page frontend
zimengzhou1 3b0a8d4
Can change contact URL
zimengzhou1 f99583a
store token in postgres database
zimengzhou1 5f0a981
Can upload ics url
zimengzhou1 0812782
Orchestrator can convert to rdf, save dummy data to playground
zimengzhou1 af81f6f
knoodle reads calendar data from pod
zimengzhou1 0dad081
Cleanup
zimengzhou1 b6201dd
Availability transform implemented
zimengzhou1 0e9a639
Update preference UI
zimengzhou1 1c3c62c
Add user action status notifications
zimengzhou1 2fb8a61
Search by user webid
zimengzhou1 0bfbb39
show config status and pod storage patch
zimengzhou1 f38f149
availability acl to public
zimengzhou1 acebcde
Login with webid
zimengzhou1 7e79319
Fix acl bug
zimengzhou1 7e180b9
Fix acl, add revoke
zimengzhou1 d3cacbe
Can add friends
zimengzhou1 a2cf11a
docs: Update README with more initialisation instructions
renyuneyun 068e368
fix: Fix unable to log-in if app is under path
renyuneyun d6339b8
Merge branch 'fix/login-under-path' into orchestrator
renyuneyun f42663a
fix: Fix retrieve friends not working due to incorrect parsing
renyuneyun dc2eab0
fix: Add myself into consideration when checking availability for sch…
renyuneyun c90b5f9
Renamed KNoodle to Solid Calendar
renyuneyun efb1586
Merge pull request #1 from renyuneyun/docs/instruction
renyuneyun d557e36
refactor: Use orchestrator configurer from orchestrator app
renyuneyun ad86f1d
Update version && README
renyuneyun 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,4 @@ | ||
{ | ||
"presets": ["next/babel"], | ||
"plugins": [] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["next/babel","next/core-web-vitals"] | ||
} |
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,6 +1,32 @@ | ||
.idea | ||
node_modules | ||
/index.js | ||
/index.js.LICENSE.txt | ||
/index.js.map | ||
/faq.js | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel |
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 was deleted.
Oops, something went wrong.
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.
No instructions are present on how the install the Node.js dependencies. I know it's only doing
npm i
, but it still should be mentioned.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.
Oops, I'll update the readme