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

docs for agnostic filters #624

Merged
merged 3 commits into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 95 additions & 1 deletion 7.x-dev/crud-filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,100 @@ CRUD::filter('trashed')
<a name="tips-and-tricks"></a>
## Tips and Tricks

<a name="using-filters-on-admin-page"></a>
### Use Filters on custom admin panel pages

Filters can be added to any admin panel page, not just the main CRUD table. Imagine that you want to have a dashboard page, with a few widgets that show some data. You can add filters to that page, and use them to filter the data shown in the widgets.


![](https://backpackforlaravel.com/uploads/docs/filters/filters-in-custom-page.png)

You start by [creating a new page](/docs/{{version}}/base-about#custom-pages-1) to hold your custom content, eg: a reports page.

```bash
php artisan backpack:page Reports
```

To use filters on a custom admin panel page, you should edit the blade file (in this example the `resources/views/admin/reports.blade.php` file) to **add the filters navbar** and **the event listeners**:
```diff
@extends(backpack_view('blank'))

@section('content')
<section class="header-operation container-fluid animated fadeIn d-flex mb-2 align-items-baseline d-print-none" bp-section="page-header">
<h1 class="text-capitalize mb-0" bp-section="page-heading">Reports</h1>
<p class="ms-2 ml-2 mb-0" bp-section="page-subheading">Page for Reports</p>
</section>
<section class="content container-fluid animated fadeIn" bp-section="content">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-body">
+ @include('crud::inc.filters_navbar')
</div>
</div>
</div>
</div>
@endsection

+@push('after_scripts')
+<script>
+ document.addEventListener('backpack:filters:cleared', function (event) {
+ console.log('all filters cleared', event);
+ });
+
+ document.addEventListener('backpack:filter:cleared', function (event) {
+ console.log('one filter cleared', event);
+ });
+
+ document.addEventListener('backpack:filter:changed', function (event) {
+ let filterName = event.detail.filterName;
+ let filterValue = event.detail.filterValue;
+ let shouldUpdateUrl = event.detail.shouldUpdateUrl;
+ console.log('one filter changed', filterName, filterValue, shouldUpdateUrl);
+ });
+</script>
+@endpush
```

After that, time to add your own filters in your controller (in this example, `ReportsController.php`):

```php
class ReportsController extends Controller
{
public function index()
{
$crud = app('crud');

$crud->addFilter([
'type' => 'simple',
'name' => 'checkbox',
'label' => 'Simple',
], false);

$crud->addFilter([ // dropdown filter
'name' => 'select_from_array',
'type' => 'dropdown',
'label'=> 'Dropdown',
], ['one' => 'One', 'two' => 'Two', 'three' => 'Three']);

return view('admin.reports', [
'title' => 'Reports',
'breadcrumbs' => [
trans('backpack::crud.admin') => backpack_url('dashboard'),
'Reports' => false,
],
'crud' => $crud,
]);
}
}
```

That's it, you should now have the filters navbar on your reports page. You can use the event listeners to update the data shown on the page based on the filters selected by the user.
Here are the Javascript events you can listen to:
- `backpack:filter:changed` when a filter is changed;
- `backpack:filter:cleared` when a filter is cleared;
- `backpack:filters:cleared` when all filters are cleared;

<a name="debouncing-filters"></a>
### Add a debounce time to filters

Expand All @@ -639,7 +733,7 @@ CRUD::filter('name')
All filter types accept a `debounce`, like for example the simple filter, range filter etc.

<a name="adding-a-filter-using-array-syntax"></a>
### Adding a filter using array syntax
### Add a filter using array syntax

In Backpack v4-v5 we used an "array syntax" to add and manipulate filters. That syntax is still supported for backwards-compatiblity. But it most cases it's easier to use the fluent syntax.

Expand Down
6 changes: 4 additions & 2 deletions 7.x-dev/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ Previously when working with Operations, developers found themselves needing to

### Re-Usable Filters

// just like your air purifier
// TODO

![](https://backpackforlaravel.com/uploads/docs/filters/filters-in-custom-page.png)

Starting with this Backpack version, you can use the [filters](/docs/{{version}}/crud-filters) in custom pages too. Instead of being tied to DataTables, filters now trigger generic Javascript events like `backpack:filter:changed`. You can catch those events using custom code in Javascript or Livewire... and do stuff. This it possible to use filters on completely custom pages - like custom dashboards, custom reports or custom operations. [Read more](/docs/{{version}}/crud-filters#use-filters-on-custom-admin-panel-pages).

### Filters inside CustomViews

Expand Down