mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 23:58:35 +08:00
39f3dbd945
* renames `select-box-kit` into `select-kit` * introduces `single-select` and `multi-select` as base components * introduces {{search-advanced-category-chooser}} as a better component for selecting category in advanced search * improves events handling in select-kit * recreates color selection inputs using {{multi-select}} and a custom {{selected-color}} component * replaces category-selector by a component using select-kit and based on multi-select * improves positioning of wrapper * removes the need for offscreen, and instead use `select-kit-header` as a base focus point for all select-kit based components * introduces a formal plugin api for select-kit based components * introduces a formal pattern for loading and updating select-kit based components: ``` computeValue() computeContent() mutateValue() ```
91 lines
2.0 KiB
JavaScript
91 lines
2.0 KiB
JavaScript
import componentTest from 'helpers/component-test';
|
|
|
|
moduleForComponent('list-setting', {integration: true});
|
|
|
|
componentTest('default', {
|
|
template: '{{list-setting settingValue=settingValue choices=choices}}',
|
|
|
|
beforeEach() {
|
|
this.set('settingValue', 'bold|italic');
|
|
this.set('choices', ['bold', 'italic', 'underline']);
|
|
},
|
|
|
|
test(assert) {
|
|
expandSelectKit();
|
|
|
|
andThen(() => {
|
|
assert.propEqual(selectKit().header.name(), 'bold,italic');
|
|
});
|
|
}
|
|
});
|
|
|
|
componentTest('with emptry string as value', {
|
|
template: '{{list-setting settingValue=settingValue}}',
|
|
|
|
beforeEach() {
|
|
this.set('settingValue', '');
|
|
},
|
|
|
|
test(assert) {
|
|
expandSelectKit();
|
|
|
|
andThen(() => {
|
|
assert.equal(selectKit().header.el.find(".selected-name").length, 0);
|
|
});
|
|
}
|
|
});
|
|
|
|
componentTest('with only setting value', {
|
|
template: '{{list-setting settingValue=settingValue}}',
|
|
|
|
beforeEach() {
|
|
this.set('settingValue', 'bold|italic');
|
|
},
|
|
|
|
test(assert) {
|
|
expandSelectKit();
|
|
|
|
andThen(() => {
|
|
assert.propEqual(selectKit().header.name(), 'bold,italic');
|
|
});
|
|
}
|
|
});
|
|
|
|
componentTest('interactions', {
|
|
template: '{{list-setting settingValue=settingValue choices=choices}}',
|
|
|
|
beforeEach() {
|
|
this.set('settingValue', 'bold|italic');
|
|
this.set('choices', ['bold', 'italic', 'underline']);
|
|
},
|
|
|
|
test(assert) {
|
|
expandSelectKit();
|
|
|
|
selectKitSelectRow('underline');
|
|
|
|
andThen(() => {
|
|
assert.propEqual(selectKit().header.name(), 'bold,italic,underline');
|
|
});
|
|
|
|
selectKitFillInFilter('strike');
|
|
|
|
andThen(() => {
|
|
assert.equal(selectKit().highlightedRow.name(), 'strike');
|
|
});
|
|
|
|
selectKit().keyboard.enter();
|
|
|
|
andThen(() => {
|
|
assert.propEqual(selectKit().header.name(), 'bold,italic,underline,strike');
|
|
});
|
|
|
|
selectKit().keyboard.backspace();
|
|
selectKit().keyboard.backspace();
|
|
|
|
andThen(() => {
|
|
assert.equal(this.get('choices').length, 3, 'it removes the created content from original list');
|
|
});
|
|
}
|
|
});
|