Giter Site home page Giter Site logo

Comments (4)

Tucker-Eric avatar Tucker-Eric commented on June 10, 2024

Hmm, I think I follow what you're saying but not quite sure. Is there a code sample you're able to reference?

from eloquentfilter.

lukevmk avatar lukevmk commented on June 10, 2024

Ofcourse! I hope this example clarifies my case enough.

So, one ModelFilter looks like this currently:

public function query($term)  
{
    return $this->whereLike('name', $term). 
        ->orWhereHas('project', function($query) use ($term) {
            $query->where('name', 'LIKE', '%' . $term . '%')
                ->orWhere('alias', 'LIKE', '%' . $term . '%');  
        });  
}

But the duplicate code is happening in the project ModelFilter:

public function query($term)
{
   return $this->whereLike('name', $term)
          ->whereLike('alias', $term, 'or');
}

In this case I cannot use the $relations array from the ModelFilter because that wil build an whereHas. I am looking for an orWhereHas.

from eloquentfilter.

Tucker-Eric avatar Tucker-Eric commented on June 10, 2024

That's an interesting issue. You are able to call other model filters from the parent. Does something like the following work to DRY it up a bit?

public function query($term)  
{
    return $this->whereLike('name', $term). 
        ->orWhereHas('project', function($query) use ($term) {
            $query->filter(['query' => $term]);
        });  
}

Or you could even pass all input to the related filter:

public function query($term)  
{
    return $this->whereLike('name', $term). 
        ->orWhereHas('project', function($query) {
            $query->filter($this->input());
        });  
}

Then to DRY it up a bit more with more than just one relation, something like the following could help?

public function query($term)  
{    
    $queryRelations = ['project', /* other relations*/]; 
    $query = $this->whereLike('name', $term);
    
    foreach ($queryRelations as $relation) {
        $query->orWhereHas($relation, function($query) {
            $query->filter($this->input());
        });
    }        
}

from eloquentfilter.

lukevmk avatar lukevmk commented on June 10, 2024

wauw, that's pretty smart! Thank you so much for your help!

from eloquentfilter.

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.