-
-
Notifications
You must be signed in to change notification settings - Fork 717
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
Client: Spider tasks GUI #6030
Client: Spider tasks GUI #6030
Conversation
No New Or Fixed Issues Found |
8396c91
to
417d327
Compare
Signed-off-by: Simon Bennetts <psiinon@gmail.com>
417d327
to
b447581
Compare
Thank you! |
String tag = parameters.get("tagName"); | ||
if (tag != null) { | ||
switch (tag) { | ||
case "A": | ||
return Constant.messages.getString( | ||
"client.spider.panel.table.details.link", | ||
parameters.get("href"), | ||
parameters.get("text")); | ||
case "BUTTON": | ||
return Constant.messages.getString( | ||
"client.spider.panel.table.details.button", parameters.get("text")); |
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 need for it to block this, but it seems we should have constants for a bunch of field/item names.
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.
This code will be changed once the spider starts using its own proxies/client map.
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.
LGTM.
Overview
Add a GUI for the client spider tasks. I'll update this PR once that has been merged.
Related Issues
Depends on #6017
Checklist
./gradlew spotlessApply
for code formattingFor more details, please refer to the developer rules and guidelines.