Autocomplete filter ignores full dataset when contextual filters are present

Created on 4 April 2025, 3 days ago

Problem/Motivation

The Views Autocomplete Filters module currently forces contextual filters to be applied during autocomplete searches, preventing users from searching across the entire dataset. This limitation occurs because the module doesn't properly handle cases where we want to temporarily ignore contextual filters during autocomplete operations.

<!--break-->

The current implementation modifies the argument configuration:

    $enable_arguments = $expose_options['autocomplete_contextual'] ?? FALSE;
    // Force "Display all values" for arguments set and ignore "No Contextual
    // filter present" settings unless indicated by 'autocomplete_contextual'.
    $arguments = $display_handler->getOption('arguments');
    if (!empty($arguments) && !$enable_arguments) {
      foreach ($arguments as $k => $argument) {
        $arguments[$k]['default_action'] = 'ignore';
      }
      $display_handler->setOption('arguments', $arguments);
    }

This approach is problematic because it alters the wrong display handler's configuration. Like it says: When the filter value is NOT in the URL If I don't misunderstand something, this logic should operate when the filter value IS in the url.

Steps to reproduce

  1. Enable the default Glossary view
  2. Try using autocomplete on a filter
  3. Observe that the autocomplete results are restricted to entries matching the current letter's filter
  4. Expected: Autocomplete should search across all entries regardless of the current contextual filter

Current Behavior: Autocomplete searches are restricted to the current contextual filter's subset of results, limiting the user's ability to find matching entries across the entire dataset.

Expected Behavior: Autocomplete should be able to search across the entire dataset when needed, regardless of active contextual filters.

Proposed resolution

Instead of modifying the display handler's configuration, we should set the contextual filter value directly the the Exception's wildcard value.

🐛 Bug report
Status

Active

Version

2.0

Component

Code

Created by

🇭🇺Hungary szantog

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024