-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
WIP: Initial React rewrite #357
Conversation
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.
I tried to build a bundle. But it didn't finish after a long time.
package.json
Outdated
"dev": "webpack-dashboard -- webpack-dev-server --hot", | ||
"test": "jest", | ||
"bundle": "webpack", | ||
"bundle:prod": "webpack -p -env.prod", |
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.
"bundle:prod": "webpack -p -env.prod" should be "bundle:prod": "webpack -p --env.prod",
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.
Yes, I've noticed the same issue but haven't tried to fix it yet. Just CTRL+C worked just fine for me (bundle actually is built and emitted to dist folder, but webpack process is not terminated by some strange reason).
Would be great if you could investigate this!
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.
It hangs there trying to connect
engine.io-client:polling-xhr xhr open GET: http://127.0.0.1:9838/socket.io/?EIO=3&transport=polling&t=LyeIbN8&b64=1 +1ms
9838 is used by webpack-dashboard. But removing it from webpack.config.js/plugins, build process can complete.
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.
@shenghu thanks!
- refactored usage of store so now <Redoc> is sync - other minor refactors
bcc9bcc
to
08034dc
Compare
e210e50
to
f993e9b
Compare
edbe78a
to
03cc781
Compare
Great work! |
Do not merge
#327
Initial react rewrite.
When I started this I thought it will be just viewlayer rewrite but it appeared to be complete rewrite.
This is not yet in the alpha stage as there are a few things to implement before.
Some architecture decisions:
Known issues before alpha:
Before release:
I could probably have missed something so feel free to clarify here.