mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
ebcdcc5c62
* make sure selected tracked value is an option if possible Before this case did not work correctly: - Select was rendered with *no* options, but *with* a saved value - Options were fetched by ajax and options prop was updated - Reduce function if passed What happens without this commit is that the selected tracked value simply was the raw reduced value (previously saved). Which means that displaying a label for example does not work if the label comes from the unreduced option. This commit makes sure that the internal tracked value is checked against all options not only once the select is created but additionally when options change. * remove useless keys - first key was always undefined - second key was always the index which is not usefull at all since it changes based on the order * add test for setting value after option changed * correctly react to value property changes if tracking internally fixes sagalbot#855, sagalbot#842 * add getOptionKey prop * yarn upgrade doc * add getOptionKey api doc and fix links * yarn upgrade * do not use key on slot * fix label spec
36 lines
1.2 KiB
JavaScript
Executable File
36 lines
1.2 KiB
JavaScript
Executable File
import { shallowMount } from "@vue/test-utils";
|
|
import VueSelect from "../../src/components/Select";
|
|
|
|
describe("Reset on options change", () => {
|
|
it("should not reset the selected value by default when the options property changes", () => {
|
|
const Select = shallowMount(VueSelect, {
|
|
propsData: { options: ["one"] }
|
|
});
|
|
|
|
Select.vm.$data._value = 'one';
|
|
|
|
Select.setProps({options: ["four", "five", "six"]});
|
|
expect(Select.vm.selectedValue).toEqual(["one"]);
|
|
});
|
|
|
|
it("should reset the selected value when the options property changes", () => {
|
|
const Select = shallowMount(VueSelect, {
|
|
propsData: { resetOnOptionsChange: true, options: ["one"] }
|
|
});
|
|
|
|
Select.vm.$data._value = 'one';
|
|
|
|
Select.setProps({options: ["four", "five", "six"]});
|
|
expect(Select.vm.selectedValue).toEqual([]);
|
|
});
|
|
|
|
it("should return correct selected value when the options property changes and a new option matches", () => {
|
|
const Select = shallowMount(VueSelect, {
|
|
propsData: { value: "one", options: [], reduce(option) { return option.value } }
|
|
});
|
|
|
|
Select.setProps({options: [{ label: "oneLabel", value: "one" }]});
|
|
expect(Select.vm.selectedValue).toEqual([{ label: "oneLabel", value: "one" }]);
|
|
});
|
|
});
|