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

gwaft-template-collapsible.php: Added Order Summary as an additional last page. #1052

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

saifsultanc
Copy link
Contributor

Context

⛑️ Ticket(s): https://secure.helpscout.net/conversation/2872221797/79232

Summary

When using the all fields collapsible sections snippet, if there is a pricing field on the form, the order summary is included in its own section. However, this also causes the page names to be showing incorrectly on the sections, and the section the order summary is included in does not have a title.

Matt A's loom explaining the issue:
https://www.loom.com/share/48c97b4b77054d36ab5c64973bd8ea84

Handle the "Order Summary" page has been proposed with this PR.

How this update works:
https://www.loom.com/share/728fc541438d4041a8e8e91ceee87e58

Copy link

coderabbitai bot commented Mar 19, 2025

Walkthrough

The changes introduce new conditional logic in the template processor to handle the "Order Summary" as a separate last page in the collapsible template. The update uses the rgar function for safer array access and adds a check to determine if the field is missing while the item label matches the filtered "Order Summary". When both conditions are met, the item is routed to a dedicated page group with an index of -1 and a label of "Order Summary". Additionally, the condition for skipping hidden fields now includes a check for an undefined field.

Changes

File Change Summary
gravity-forms/gwaft-...-collapsible.php - Uses rgar for safer field access
- Adds check for undefined field
- Routes items with "Order Summary" label to a dedicated page group (-1) with updated label
- Enhances logic to bypass hidden fields

Sequence Diagram(s)

sequenceDiagram
    participant T as Template Processor
    participant F as Field Access (rgar)
    participant C as Conditional Checker
    participant PG as Page Group Handler

    T->>F: Retrieve field data using rgar
    alt Field is defined
        T->>T: Process field normally
    else Field is undefined
        T->>C: Check if label equals "Order Summary"
        alt Label matches "Order Summary"
            C->>PG: Add item to page group (-1)
            PG->>T: Set page label as "Order Summary"
        else
            C->>T: Skip field processing
        end
    end
Loading

Suggested Reviewers

  • veryspry

Tip

⚡🧪 Multi-step agentic review comment chat (experimental)
  • We're introducing multi-step agentic chat in review comments. This experimental feature enhances review discussions with the CodeRabbit agentic chat by enabling advanced interactions, including the ability to create pull requests directly from comments.
    - To enable this feature, set early_access to true under in the settings.
✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
gravity-forms/gwaft-template-collapsible.php (2)

30-35: The Order Summary implementation addresses the PR objective well

This code block effectively handles the Order Summary as a separate last page, which aligns perfectly with the PR objective. The use of apply_filters() for the "Order Summary" label provides good flexibility for customization.

For even greater robustness, consider using a case-insensitive comparison:

- if ( ! $field && rgar( $item, 'label' ) == apply_filters( 'gwaft_order_summary_label', 'Order Summary' ) ) {
+ if ( ! $field && strcasecmp(rgar( $item, 'label' ), apply_filters( 'gwaft_order_summary_label', 'Order Summary' )) === 0 ) {

1-106: Consider updating the documentation header

The code changes are well-implemented, but the documentation header at the top of the file doesn't mention the new Order Summary functionality. Consider adding a brief description of this feature to make it clear to users.

 * ![Preview of Collapsible All Fields Template in action](https://gravitywiz.com/app/uploads/2025/02/gwaft-collapsible-preview.png)
 *
 * Instructions:
 *
 * 1. Ensure you have All Fields Template installled.
 *    https://gravitywiz.com/gravity-forms-all-fields-template/
 *
 * 2. Install this snippet. No code configuration required.
 *    https://gravitywiz.com/documentation/managing-snippets/#where-do-i-put-snippets
 *
 * 3. Enable the collapsible template on any `{all_fields}` merge tag.
 *    `{all_fields:template[collapsible]}`
+*
+* Features:
+* - Displays form fields in collapsible sections based on page breaks
+* - Automatically adds Order Summary as a dedicated final section
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 62668ca and fd45ba6.

📒 Files selected for processing (1)
  • gravity-forms/gwaft-template-collapsible.php (1 hunks)
🔇 Additional comments (2)
gravity-forms/gwaft-template-collapsible.php (2)

28-29: Good use of rgar() for safer array access

Replacing direct array access with the rgar() function is a good improvement as it safely gets values from an array without causing "undefined index" errors if the key doesn't exist.


38-38: Good defensive programming practice

Adding the check for ! $field to the hidden fields condition is a good defensive programming practice. This ensures the code doesn't attempt to access properties of undefined fields.

$field = rgar( $item, 'field' );

// Add Order Summary as a separate last page.
if ( ! $field && rgar( $item, 'label' ) == apply_filters( 'gwaft_order_summary_label', 'Order Summary' ) ) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This check on the label value feels potentially flimsy to me

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is how the order summary item is:
Screenshot 2025-03-29 at 4 06 19 PM

For regular fields, it is:
Screenshot 2025-03-29 at 4 06 41 PM

So an alternate logic could possibly be "if ( ! field )". But, that could possibly be a false flag is what I wondered.

Copy link
Contributor

@veryspry veryspry Mar 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The following is a note for myself:

Looking at the code in gw-all-fields-template.php, it looks like $field will always be present unless it's the product summary.

The product summary is added here and the other two instances (where $field is included) are here and here

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's tricky.

A second option, is to modify the gw-all-fields-template snippet so that the order summary item has an additional key / flag that could be checked here. (Maybe is_order_summary => true?).

Given this is a snippet, I'm okay leaving this as is.

@saifsultanc can you add a comment explaining the conditional / how it's expected to work?


// Add Order Summary as a separate last page.
if ( ! $field && rgar( $item, 'label' ) == apply_filters( 'gwaft_order_summary_label', 'Order Summary' ) ) {
$page_groups[-1][] = $item;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you explain how the -1 indexing works here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was storing -1 as an arbitary and additional page containing the detail for 'Order Summary'. Do you want to do it as 99129 (or the like)? A big arbitrary number instead.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it!

Would it work to push the order summary item to the end of $page_groups and then set the $page index accordingly?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was vary of other potential customizations that may be thrown it by customers, adding additional pages and stuff? Thought to keep it 'separate' from the rest of the stuff. Unless if you suggest that pushing it at the end is a safer way to go forth, I will make the update. Thanks!

@saifsultanc saifsultanc requested a review from veryspry April 2, 2025 05:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants