Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Individual filterer disable/reenable in filters panel. #2163

Draft
wants to merge 60 commits into
base: master
Choose a base branch
from

Commits on Apr 11, 2024

  1. Configuration menu
    Copy the full SHA
    f018c82 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Configuration menu
    Copy the full SHA
    8c88e00 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    02c580f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b3477e0 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Configuration menu
    Copy the full SHA
    d4a1d7b View commit details
    Browse the repository at this point in the history
  2. '#39 refactors FilterNode classes in a way to keep track of its

    correspondent CombinedFilterTreeModel where it is created, so it can
    update the map of Filters with corresponding nodes set when removing or
    adding one of its children.
    patrickdalla committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    945ad13 View commit details
    Browse the repository at this point in the history
  3. '#39 returns cachedBitSet map from CombinedFilterer to its previous

    structure Map<IFilter, FutureBitSetResult>, as the remove of an item in
    this cache now only occurs when no other FilterNode refers to the same
    filter.
    patrickdalla committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    897e291 View commit details
    Browse the repository at this point in the history
  4. '#39 Properly implements clone methods of DecisionNode subclasses, so

    they can be cloned when dragging with CTRL button pressed (COPY
    operation).
    patrickdalla committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    e0ee88a View commit details
    Browse the repository at this point in the history
  5. '#39 Alters field names to be similar with correspondent

    CombinedFilterer class name.
    patrickdalla committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    4da3cdf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    14e403c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7e31973 View commit details
    Browse the repository at this point in the history
  8. '#39 Adds a centered tip message informing about drag and drop filter

    operations to combine them.
    patrickdalla committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    df8043d View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    a7f8461 View commit details
    Browse the repository at this point in the history
  2. '#39 Creates interface IFilter method to return a more detailed textual

    description, used in the tootip of the filter in the tree.
    patrickdalla committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    8e42673 View commit details
    Browse the repository at this point in the history
  3. '#39 adding some comments

    patrickdalla committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    75c0b8c View commit details
    Browse the repository at this point in the history
  4. '#39 Add support for disable Filterer on Filterers tree via its checkbox

    without removing its defined filters, which are restored when checkbox
    is checked again.
    patrickdalla committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    d6cd081 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. '#39 Corrects AppListener to only use text from SearchFilterer (it was

    being added twice). Implement getQuery in SearchFilterer.
    patrickdalla committed Apr 22, 2024
    Configuration menu
    Copy the full SHA
    aca03c1 View commit details
    Browse the repository at this point in the history
  2. '#39 use hasFilters instead of hasFiltersApplied to execute filter

    de/activation through checkbox
    patrickdalla committed Apr 22, 2024
    Configuration menu
    Copy the full SHA
    3fddcb6 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    04f70ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7bf5574 View commit details
    Browse the repository at this point in the history
  3. '#39: code formatting

    lfcnassif committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    93418ad View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. Configuration menu
    Copy the full SHA
    b7e9fe7 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. Configuration menu
    Copy the full SHA
    fe3e815 View commit details
    Browse the repository at this point in the history
  2. '#2163 Adds a menu entry to the table header menu to represent the

    filter defined via FieldValuePopup, so it can be also cleared from
    there.
    patrickdalla committed May 2, 2024
    Configuration menu
    Copy the full SHA
    20c2073 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2024

  1. '#2163 Implements enabling/disabling filterer via filters panel for

    timeline and duplicate filterers.
    patrickdalla committed May 3, 2024
    Configuration menu
    Copy the full SHA
    fa8b377 View commit details
    Browse the repository at this point in the history
  2. '#2163 Implementation of disable/enable filterer through filterer tree

    panel category, metadata, table header, evidence tree and bookmark;
    patrickdalla committed May 3, 2024
    Configuration menu
    Copy the full SHA
    d49950e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a4d498c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    796f257 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. '#2163 Sets initial value for duplicate filter as disable (as it will

    always have a filter defined).
    patrickdalla committed May 7, 2024
    Configuration menu
    Copy the full SHA
    c277b39 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. Configuration menu
    Copy the full SHA
    e49c7e7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cde98c5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0de6aa7 View commit details
    Browse the repository at this point in the history
  4. '#2163 Implements missing implementation of new hasFiltersApplied method

    of MetadataPanel filterer.
    patrickdalla committed May 28, 2024
    Configuration menu
    Copy the full SHA
    95c75bc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    087ea23 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    55429bb View commit details
    Browse the repository at this point in the history
  7. '#2163 Removes unnecessary and complicated wrapping desing of

    FiltersPanel with its internal combinedFilterer. Implements
    hasAppliedFilters of combinedFilterer to reflect on Filters Panel color.
    patrickdalla committed May 28, 2024
    Configuration menu
    Copy the full SHA
    70dd932 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1e535b1 View commit details
    Browse the repository at this point in the history
  9. '#2163 Search Filter getQuery returns null if query text is

    correspondent to empty query, avoiding clearFilterButton to reconize it
    as a filter and remains visible.
    patrickdalla committed May 28, 2024
    Configuration menu
    Copy the full SHA
    f58d09b View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. '#2163 Design method for restoration of defined filters of a filter from

    another source. Implements the restoration for Category filterer
    CategoryTreeListener.
    patrickdalla committed May 29, 2024
    Configuration menu
    Copy the full SHA
    8eef37f View commit details
    Browse the repository at this point in the history
  2. '#2163 Implements restoreDefinedFilters for filterers declared in App

    class and corrects this method name.
    patrickdalla committed May 29, 2024
    Configuration menu
    Copy the full SHA
    fbc1804 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Configuration menu
    Copy the full SHA
    c2eea39 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    10dba2d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    df5d086 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. '#2163 Removes unnecessary field and corrects getQuery method to return

    a value only if a filter is defined.
    patrickdalla committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    77d3e11 View commit details
    Browse the repository at this point in the history
  2. '#2163 updates internal control field 'selection' on

    restoreDefinedFilters.
    patrickdalla committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    2686d8a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b46dff9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    32c22bd View commit details
    Browse the repository at this point in the history
  5. '#2163 Code to avoid enabling filterer from filterpanel without any

    defined filter defined by the filterer before.
    patrickdalla committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    c324e7e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5fa2d11 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c606d3e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e8b19e3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    039a51f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5a6309c View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Configuration menu
    Copy the full SHA
    b77a2f4 View commit details
    Browse the repository at this point in the history
  2. '#2163 Creates a map to store the correspondence between a query escaped

    name of the field and its original name, that needs to be recovered when
    restoring defined filters.
    patrickdalla committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    3434d2d View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2024

  1. Configuration menu
    Copy the full SHA
    c2793dc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fc2c5df View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9af46bb View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. Configuration menu
    Copy the full SHA
    5b72dc6 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. Configuration menu
    Copy the full SHA
    8b2878d View commit details
    Browse the repository at this point in the history