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

[fix] preview collapsed repeater titleFrom #1191

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Conversation

AIC-BV
Copy link
Contributor

@AIC-BV AIC-BV commented Aug 26, 2024

Cleaned up version of the preview HTML:

<div class="text-field" data-field-name="name">
    <label>Name</label>
    <span class="form-control">Test</span>
</div>

As you can see, there is no element to select with class text-field if titleFrom is set, because the target itself has the class:

var $disabledTextInput = $('.text-field:first > .form-control', $target)

so I removed the .text-field part of the query selector

Now it succesfuly shows the text value from name in both preview and update context.
If titleFrom is not set, it will take the first .form-control value, which is the same field as in update context
image
Before this change, it showed nothing, because the selector was invalid
image

fields.yaml:

items:
    context: ['preview', 'update', 'relation']
    tab: Content
    label: aic.aftersales::lang.form.items.title
    titleFrom: name
    type: repeater
    style: collapsed
    dependsOn: order
    form:
        fields:
            name:
                label: aic.aftersales::lang.form.items.name
            requires_payment:
                label: aic.aftersales::lang.form.items.requires_payment
                type: balloon-selector
                options:
                    0: Nee
                    1: Ja
                default: 0

@AIC-BV AIC-BV changed the title [fix] preview collapsed titleFrom [fix] preview collapsed repeater titleFrom Aug 26, 2024
@@ -259,7 +259,7 @@
return $textInput.val()
}
} else {
var $disabledTextInput = $('.text-field:first > .form-control', $target)
var $disabledTextInput = $('.form-control:first', $target)
Copy link
Member

Choose a reason for hiding this comment

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

if the text-field class is on $target, could we do &.text-field instead? Also is this currently broken in both update and preview contexts? If so, what is the difference between them that is causing the structure of the fields to be different?

Copy link
Contributor Author

@AIC-BV AIC-BV Aug 27, 2024

Choose a reason for hiding this comment

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

In update context the HTML structure is different.
It has an input field, which is selected in JavaScript.
titleFrom in this context is already working as described in the docs.

In preview mode however, the HTML structure is different.
It does not have an input field, but a <span class='form-control'> instead.
The JavaScript will go in the else part and select the 'disabled text input'.

Here are actually 2 options:

  1. You defined titleFrom: target is the parent of <span class='form-control'>
  2. You didn't define titleFrom: target is the row itself

This is where it goes wrong in preview context.
In case 1, it will try to select .text-field:first but that does not exist because its on the element itself resulting in an empty string.
In case 2, it will find the first ul and display that text. In my case this is not my text field, but a balloon selector. Remember, there are no form fields in preview context. input & select are not present.

So I fixed
Case 1 by removing the .text-field:first because it is an invalid selector. But yes, it could have the &. notation but don't see the advantage of that in this case?
Case 2 will have the same behaviour as before: if there is an <ul> it will get that item first, if not it will get the .form-control:first like in case 1.

--
It is probably not entirely foolproof (working in every form situation) but it must be much better than it currently was because it has the same behaviour and a defined titleFrom now works in preview mode

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Do I still need to do something to finish this PR? 🙂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants