-
Notifications
You must be signed in to change notification settings - Fork 20
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
New frontend web client #557
Conversation
Adds a new web client runner built from the ground up using rust and yew.rs. Part of #261 Right now web client must be manually built and launched separate to launching the backend. A followup PR will add a new flag to tell runner to use the new web client. Both the old and new client will be supported until the new front end has been thoroughly tested and has feature parity. --------- Co-authored-by: Julien Cretin <github@ia0.eu>
Co-authored-by: Julien Cretin <cretin@google.com>
…549) - Added CSS to match existing web client look. - Changed timeout on websockets to 1 second (1000 ms) - Also made the client reset and disable input when the websocket connection goes down. Should be the final bit that needs to be done to replace the old web client. --------- Co-authored-by: Julien Cretin <github@ia0.eu>
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.
Thanks! I'll add @invernizzi to review the *.scss
and *.html
files and possibly do an end-to-end test too.
Hey @invernizzi , could you take a look at the cargo xtask applet rust hello runner host --no-default-features --web --log=info
cargo xtask applet rust button_abort runner host --no-default-features --web --log=info
cargo xtask applet rust panic runner host --no-default-features --web --log=info |
Actually, let me merge this because I'm going to do some changes that conflict, and the PR is good enough to merge, we can always address comments in follow-up PRs (like for the verbose logging). |
fixes Write the web client of the host runner in Rust #261