bluzky/nice-select2

[Feature Request] Sync nice-select2 value with source control value, when the source value changed

triawarman opened this issue · 2 comments

There are conditions when changing control value are not based on user interaction, but based on automation code, currently select2 has no methode that can sync the select2 selected value with source value when the source value is changed.

i hope you guys make the synchronization method/function.

NiceSelect.prototype.bindEvent = function() {
  var $this = this;
  
  //INFO: not tested with multiple value, and im sure this one is not the best solution
  this.el.addEventListener("change", function() {
    let sourceVal = this.value;
    if(sourceVal !== $this.selectedOptions[0].data.value) {
      let selectedItem;
      $this.options.forEach(function (item) {
        removeClass(item.element, "selected");
        if(sourceVal == item.data.value) {
          selectedItem = item;
        }
      });
      
      $this.selectedOptions.forEach(function (item) {
        removeClass(item.element, "selected");
      });
      
      selectedItem.element.classList.add("selected");
      $this.selectedOptions = [selectedItem];
      
      $this._renderSelectedItems();
      $this.updateSelectValue();
    }
  });
  
 //nice-select2 codes
 //....

``

I think a feature like this would be very nice. I had to write a bunch of NiceSelect.prototype.update lines in my code to handle cases where the source value would change in the original select box, such as when the user chooses to load from a preexisting configuration file of data choices.