Coder Social home page Coder Social logo

Show Collapsed about acf-builder HOT 4 CLOSED

stoutlogic avatar stoutlogic commented on June 14, 2024
Show Collapsed

from acf-builder.

Comments (4)

stevep avatar stevep commented on June 14, 2024

I'm open to adding convenience methods like instructions, defaultValue($value), or required though, those convenience methods currently act on the "current" field rather than its parent field. Collapse is an attribute on the repeater configuration.

Currently you can set it like:

$client
   ->addRepeater( 'contacts' , [ 'collapsed' => 'position' ])
      ->addText('first_name')
      ->addText('last_name')
      ->addText('nickname')
      ->addText('position')
      ->endRepeater()
   ->setLocation( 'post_type', '==', 'client' );

or

$client
   ->addRepeater( 'contacts')
      ->setConfig('collapsed', 'position')
      ->addText('first_name')
      ->addText('last_name')
      ->addText('nickname')
      ->addText('position')
      ->endRepeater()
   ->setLocation( 'post_type', '==', 'client' );

If we created a collapsed convenience method on the RepeaterBuilder but it would need to take a field name as an argument.

Since FieldBuilder extends from ParentDelegationBuilder, any method call that doesn't exist on a field builder will propagate up to the ancestor chain until it finds a builder where the method exists. The only problem is that in this case it would expect the field name passed in as an argument, and the only way to do that would be to add the collapsed method to the FieldBuilder and I'm not sure if that is the right solution or not, I'd rather not pollute a classes with a bunch of methods that don't act upon that specific class.

Maybe the solution is to have the ParentDelegationBuilder pass a stack of instances it comes across up the chain and allow the receiving parent's method deal with it. Something like that, not sure.

I will think about this more. Thanks for the idea!

from acf-builder.

christianmagill avatar christianmagill commented on June 14, 2024

Cool, my main concern reading the ACF documentation was that the actual "collapsed" key in the configuration array references the field key. In actuality wouldn't this be the group name and the field name combined in most instances? Or does the library handle this?

from acf-builder.

stevep avatar stevep commented on June 14, 2024

There is code that handles the name -> key conversion:
https://github.com/StoutLogic/acf-builder/blob/master/src/RepeaterBuilder.php#L73

Though looking at it I wonder if there is a bug, I'm not sure why the repeater is prepending its field name in front of it.

In your code does this work?

$client
   ->addRepeater( 'contacts' , [ 'collapsed' => 'position' ])
      ->addText('first_name')
      ->addText('last_name')
      ->addText('nickname')
      ->addText('position')
      ->endRepeater()
   ->setLocation( 'post_type', '==', 'client' );

from acf-builder.

christianmagill avatar christianmagill commented on June 14, 2024

Yes that code works as intended

from acf-builder.

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.