-
Notifications
You must be signed in to change notification settings - Fork 328
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
fix: Let wave app programmatically change value and choices for combobox #1538
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.
Thanks @aalencar, choices seem to be working fine, but the value needs more work:
Screen.Recording.2022-07-13.at.3.56.27.PM.mov
Repro code
# Form / Combobox
# Use comboboxes to allow users to either choose between available choices or indicate a choice by free-form editing.
# #form #combobox
# ---
from h2o_wave import main, app, Q, ui
combobox_choices = ['Cyan', 'Magenta', 'Yellow', 'Black']
@app('/demo')
async def serve(q: Q):
if not q.client.initialized:
q.page['example'] = ui.form_card(box='1 1 4 10', items=[
ui.combobox(name='combobox', label='Enter or choose a color', placeholder='Color...', value='Blue', choices=combobox_choices),
ui.button(name='btn', label='Change value'),
])
q.client.initialized = True
if q.args.btn:
q.page['example'].items[0].combobox.value = 'New value'
await q.page.save()
* also simplify "selected" to contain an array of strings instead of object
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.
Please make sure unit tests are passing.
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.
Regression - clicking away should not clear the selection:
Screen.Recording.2022-07-20.at.12.29.55.PM.mov
@aalencar It would be great if you could do some QA yourself before submitting a PR. The recommended steps are:
- Implement the fix.
- Think of possible edge cases.
- Check if unit tests are passing.
- If working on something that can affect more components globally, check visual regression tests.
- Do some manual QA to check there are no regressions.
- If there are regressions, fix them and include them in the unit tests if possible (for quicker identification in the future).
- If you encounter some other present bugs (not caused by the newest fix) you can either fix them as part of the current task if they are fairly small or file an issue to raise awareness.
I believe following this list can save us all a lot of time. You can consider these as a bare minimum, feel free to expand the list with your own ideas and workflows as you see fit.
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 @aalencar, looking good except a few small things.
* add more test edge cases and reorganize tests * revert combobox example initial values 'Black' -> 'Blue'
Current behavior:
Terminology
Only remaining issue happens when you:
The displayed value will be the first option in the list instead of the previously selected values + the last typed one until you click away. Screen.Recording.2022-08-02.at.15.38.55.movThis looks like a Fluent bug though. Screen.Recording.2022-08-02.at.15.40.11.movI tried to cover all the edge cases with tests. Let me know if I missed any. What I have been using for testing:from h2o_wave import main, app, Q, ui
combobox_choices = ['A', 'B', 'C']
@app('/demo')
async def serve(q: Q):
if not q.client.initialized:
q.page['example'] = ui.form_card(box='1 1 4 10', items=[
ui.combobox(name='combobox', label='Enter or choose a color', placeholder='Color...', value='A', choices=combobox_choices),
ui.combobox(name='combobox2', label='Enter or choose a color', placeholder='Color...', values=['A'], choices=combobox_choices),
ui.button(name='btn1', label='value -> A'),
ui.button(name='btn2', label='value -> B'),
ui.button(name='btn3', label='value -> C'),
ui.button(name='btn4', label='choices -> [A, B]'),
ui.button(name='btn5', label='value -> "A" -> [A, B, D]'),
ui.button(name='btn6', label='value -> "B" -> [A, B, D]'),
ui.button(name='btn7', label='value -> "C" -> [A, B]'),
])
q.client.initialized = True
if q.args.btn1:
q.page['example'].items[0].combobox.value = 'A'
q.page['example'].items[1].combobox.values = ['A']
if q.args.btn2:
q.page['example'].items[0].combobox.value = 'B'
q.page['example'].items[1].combobox.values = ['B']
if q.args.btn3:
q.page['example'].items[0].combobox.value = 'C'
q.page['example'].items[1].combobox.values = ['C']
if q.args.btn4:
q.page['example'].items[0].combobox.choices = ['A', 'B']
q.page['example'].items[1].combobox.choices = ['A', 'B']
if q.args.btn5:
q.page['example'].items[0].combobox.value = 'A'
q.page['example'].items[0].combobox.choices = ['A', 'B', 'D']
q.page['example'].items[1].combobox.values = ['A']
q.page['example'].items[1].combobox.choices = ['A', 'B', 'D']
if q.args.btn6:
q.page['example'].items[0].combobox.value = 'B'
q.page['example'].items[0].combobox.choices = ['A', 'B', 'D']
q.page['example'].items[1].combobox.values = ['B']
q.page['example'].items[1].combobox.choices = ['A', 'B', 'D']
if q.args.btn7:
q.page['example'].items[0].combobox.value = 'C'
q.page['example'].items[0].combobox.choices = ['A', 'B']
q.page['example'].items[1].combobox.values = ['C']
q.page['example'].items[1].combobox.choices = ['A', 'B']
await q.page.save() |
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 @aalencar, just a few last small comments.
The displayed value will be the first option in the list instead of the previously selected values + the last typed one until you click away.
Good catch! Please file a bug report to Fluent repo so that we are aware when the fix is available.
closes #1501