Giter VIP home page Giter VIP logo

Comments (4)

cedric-g avatar cedric-g commented on July 17, 2024

Maybe the problem comes from the bundle, maybe I missed something related to the changes made in SF2.1.

But after reading the discussion on your pull request on Symfony, maybe I should swap the Form inheritance and the PHP inheritance. I mean, all filter types should extend a AbstractFilterType class (which extends AbstractType). AbstractFilterType would be used to define the apply_filter option. And the getParent method would return the parent symfony type name instead of 'filter'.

So the ChoiceFilterType would be like this:

<?php
class ChoiceFilterType extends AbstractFilterType implements FilterTypeInterface
{
    /**
     * {@inheritdoc}
     */
    public function getParent()
    {
        return 'choice';
    }

    /**
     * {@inheritdoc}
     */
    public function getName()
    {
        return 'filter_choice';
    }

    /**
     * {@inheritdoc}
     */
    public function getTransformerId()
    {
        return 'lexik_form_filter.transformer.default';
    }

    /**
     * {@inheritdoc}
     */
    public function applyFilter(QueryBuilder $queryBuilder, Expr $expr, $field, array $values)
    {
        if (!empty($values['value'])) {
            $queryBuilder->andWhere($expr->eq($field, ':value'))
                         ->setParameter('value', $values['value']);
        }
    }
}

And methods from FilterTypeInterface could also be define in AbstractFilterType.

from lexikformfilterbundle.

inoryy avatar inoryy commented on July 17, 2024

@cedric-g yes, swapping Form and PHP inheritances seems like most sensible way out of this situation.
If you want, I can do it myself and test out on my 2.1 project, if it works then I'll submit a PR?

from lexikformfilterbundle.

cedric-g avatar cedric-g commented on July 17, 2024

Yes if you have some time you can do a PR. I should have some free time at the end of next week so I will be able to work on the bundle =)

from lexikformfilterbundle.

inoryy avatar inoryy commented on July 17, 2024

Done in above PR, closing

from lexikformfilterbundle.

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.