LaravelPackages.net
Acme Inc.
Toggle sidebar
degecko/nova-filters-summary

A Laravel Nova card which displays a summary of the active filters of a resource or lens.

140.530
20
2.1.0
About degecko/nova-filters-summary

degecko/nova-filters-summary is a Laravel package for a laravel nova card which displays a summary of the active filters of a resource or lens.. It currently has 20 GitHub stars and 140.530 downloads on Packagist (latest version 2.1.0). Install it with composer require degecko/nova-filters-summary. Discover more Laravel packages by degecko or browse all Laravel packages to compare alternatives.

Last updated

Laravel Nova Filters Summary

A custom Card component for Laravel Nova which displays a summary of the active filters for a specific resource or lens.

Default Preview:

Stacked Preview:


Installation

Using Composer:

For Nova 4, use the current version. For older ones, use v1 of this package.

Nova v4:

composer require degecko/nova-filters-summary

Nova v1-3:

composer require degecko/nova-filters-summary:^1.1.0

Usage

Add it to the array returned by the cards method inside a Nova Resource or Lens.

<?php

namespace App\Nova;

use Degecko\NovaFiltersSummary\FiltersSummary;
use Illuminate\Http\Request;

class Product extends Resource
{
    // Your setup.
    
    public function cards(Request $request)
    {
        return [
            FiltersSummary::make(),
        ];
    }
}

Stacked

To use the stacked template, use FiltersSummary::make()->stacked().


Translation

To translate the three used words: active, filter, and filters, simply translate them using Laravel $lang.json file.


Custom Filter Summary Resolvers

The plugin knows how to display the information of the default Nova filters, but you might need to use custom filters. In that case, you'll probably need to create a custom template for the filter summary.

E.g.: I had a custom filter that allows a user to pick a numeric range of a specific column. You could use it to select products that have prices between 5 and 20 USD.

Now, because the filter maps to an object like this:

{ from: 5, to: 20 }

The summary would simply list that as its value, which isn't very pretty.

Therefore, if you want to customize that, you need to create a custom summary resolver for that filter.

The setup is pretty straight forward:

  • Define a function inside Nova.filtersSummaryResolvers using the same name as your filter component
  • The function will be fed the filter itself as a parameter
  • Return the filter summary

I usually create the definition inside the filter's index.js file and it looks like this:

Nova.booting((Vue, router, store) => {
    Vue.component('numeric-range-filter', require('./NumericFilter').default)

    Nova.filtersSummaryResolvers['numeric-range-filter'] = filter => {
        return [filter.currentValue.from || '<em>•</em>', filter.currentValue.to || '<em>•</em>'].join(' — ')
    }
})

Author

Buy Me A Coffee

Comments