Giter Club home page Giter Club logo

Comments (5)

lcuis avatar lcuis commented on August 22, 2024 1

Hi @projetoswmltda ,

This is great news for searchable_dropdown, we should definitely give your fix a try whenever possible, thanks!

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024

Dear @projetoswmltda ,

Thanks for reporting your issue.

I understand that a second widget is clearing the selected value of a first widget. If so, could it be that the following comment could help you?
#29 (comment)

from searchable_dropdown.

projetoswmltda avatar projetoswmltda commented on August 22, 2024

Thanks for the quick feedback @lcuis , I managed to solve it by merging the code of your search_choices library with a small change.

Follows merged code (searchable_dropdown x search_choices):

updateSelectedItems({dynamic sel = const NotGiven()}) {
    List<int> updatedSelectedItems;
    if (widget.multipleSelection) {
      if (!(sel is NotGiven)) {
        updatedSelectedItems = sel as List<int>;
      } else {
        updatedSelectedItems =
            List<int>.from(widget.selectedItems ?? List<int>());
      }
    } else {
      T val = !(sel is NotGiven) ? sel as T : widget.value;
      if (val != null) {
        int i = indexFromValue(val);
        if (i != null && i != -1) {
          updatedSelectedItems = [i];
        }
      } else {
        updatedSelectedItems = null;
      }
      if (updatedSelectedItems == null) updatedSelectedItems = List<int>();
    }
    if (!widget.multipleSelection) {
      selectedItems.retainWhere((element) =>
          updatedSelectedItems.any((selected) => selected == element));
    }
    updatedSelectedItems.forEach((selected) {
      if (!selectedItems.any((element) => selected == element)) {
        selectedItems.add(selected);
      }
    });
  }

  @override
  void initState() {
    if (widget.multipleSelection) {
      selectedItems = List<int>.from(widget.selectedItems ?? []);
    } else if (widget.value != null) {
      int i = indexFromValue(widget.value);
      if (i != null && i != -1) {
        selectedItems = [i];
      }
    }
    if (selectedItems == null) selectedItems = [];
    updateSelectedItems();
    super.initState();
  }

  @override
  void didUpdateWidget(SearchableDropdown oldWidget) {
    super.didUpdateWidget(oldWidget);
    updateSelectedItems();
  }

After when have time, review a fix I made to resolve a problem in multiple selection of search_choices library in updateSelectedItems method:

if (!widget.multipleSelection) {
      selectedItems.retainWhere((element) =>
          updatedSelectedItems.any((selected) => selected == element));
    }

Thanks again

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024

Hello @projetoswmltda ,

Thanks a lot for your reply and for the fix proposal and for sharing your code!

With this code, you were able to solve your issue while still using searchable_dropdown?

from searchable_dropdown.

projetoswmltda avatar projetoswmltda commented on August 22, 2024

Hi @lcuis, I actually tried it with both widgets, but it only worked on searchable_dropdown

I know that the code may still need some adjustments, but this way it works for me

from searchable_dropdown.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.