mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 03:27:54 +00:00
UI/add select dropdown (#7102)
* add SelectDropdown * use SelectDropdown instead of HttpRequestsDropdown * use html selector instead of class name * ensure SelectDropdown still works when rendered inside a Toolbar * add tests * remove old HttpRequests component * make SelectDropdown example easier to read in Storybook * add isFullwidth prop * add SelectDropbown inside a Toolbar story * fix tests * remove actions block and call this.onChange directly * replace dropdownLabel with label * rename SelectDropdown to SelecT * add test for onChange * remove selectedItem prop since we don't need it * make Select accept options as an array of strings or objects * Revert "remove selectedItem prop since we don't need it" This reverts commit 7278516de87bb1df60482edb005137252819931e. * use Select inside TtlPicker * remove debugger * use a test selector * fix pki test selectors * improve storybook docs * fix selected value in ttl picker * ensure httprequests dropdown updates the selected item * ensure select dropdown correctly matches selectedItem * rename selectedItem to selectedValue * remove debugger lol * update selectedItem test * add valueAttribute and labelAttribute to Storybook knobs * udpate jsdocs * remove old httprequestsdropdown component * add note that onChange will receive value of select * use Select inside AuthForm * use correct test selector
This commit is contained in:
@@ -40,12 +40,12 @@ module('Integration | Component | wrap ttl', function(hooks) {
|
||||
await fillIn('[data-test-wrap-ttl-picker] input', '20');
|
||||
assert.equal(this.lastOnChangeCall, '20m', 'calls onChange correctly on time input');
|
||||
|
||||
await fillIn('#unit', 'h');
|
||||
await blur('#unit');
|
||||
await fillIn('[data-test-select="ttl-unit"]', 'h');
|
||||
await blur('[data-test-select="ttl-unit"]');
|
||||
assert.equal(this.lastOnChangeCall, '20h', 'calls onChange correctly on unit change');
|
||||
|
||||
await fillIn('#unit', 'd');
|
||||
await blur('#unit');
|
||||
await fillIn('[data-test-select="ttl-unit"]', 'd');
|
||||
await blur('[data-test-select="ttl-unit"]');
|
||||
assert.equal(this.lastOnChangeCall, '480h', 'converts days to hours correctly');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user