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

Allow more htmlClasses #36452

Merged
merged 6 commits into from
Feb 23, 2023

Conversation

barryvdh
Copy link
Contributor

@barryvdh barryvdh commented Nov 10, 2022

Follow-up on #34559
Supports classes like w-screen left-1/2 right-1/2 mx-[-50vw] relative as used in Tailwind 3
See https://regexr.com/72318 vs https://regexr.com/72315

Resolved issues:

  1. resolves [Issue] Allow more htmlClasses #36891: Allow more htmlClasses

@m2-assistant
Copy link

m2-assistant bot commented Nov 10, 2022

Hi @barryvdh. Thank you for your contribution
Here are some useful tips how you can test your changes using Magento test environment.
Add the comment under your pull request to deploy test or vanilla Magento instance:

  • @magento give me test instance - deploy test instance based on PR changes
  • @magento give me 2.4-develop instance - deploy vanilla Magento instance

❗ Automated tests can be triggered manually with an appropriate comment:

  • @magento run all tests - run or re-run all required tests against the PR changes
  • @magento run <test-build(s)> - run or re-run specific test build(s)
    For example: @magento run Unit Tests

<test-build(s)> is a comma-separated list of build names. Allowed build names are:

  1. Database Compare
  2. Functional Tests CE
  3. Functional Tests EE,
  4. Functional Tests B2B
  5. Integration Tests
  6. Magento Health Index
  7. Sample Data Tests CE
  8. Sample Data Tests EE
  9. Sample Data Tests B2B
  10. Static Tests
  11. Unit Tests
  12. WebAPI Tests
  13. Semantic Version Checker

You can find more information about the builds here

ℹ️ Run only required test builds during development. Run all test builds before sending your pull request for review.

For more details, review the Magento Contributor Guide documentation.

⚠️ According to the Magento Contribution requirements, all Pull Requests must go through the Community Contributions Triage process. Community Contributions Triage is a public meeting.

🕙 You can find the schedule on the Magento Community Calendar page.

📞 The triage of Pull Requests happens in the queue order. If you want to speed up the delivery of your contribution, join the Community Contributions Triage session to discuss the appropriate ticket.

✏️ Feel free to post questions/proposals/feedback related to the Community Contributions Triage process to the corresponding Slack Channel

@Vinai
Copy link
Contributor

Vinai commented Nov 10, 2022

Note: -screen left-1/2 right-1/2 mx-[-50vw] relative are all usable in tailwind v2, too (mx-[-50vw] only with the JIT)

@mrtuvn
Copy link
Contributor

mrtuvn commented Nov 10, 2022

nice to see some class tailwind arbitrary values variants

@in-session
Copy link
Contributor

in-session commented Nov 11, 2022

@barryvdh can you make also a new pull for magento/magento2-page-builder#791

@barryvdh
Copy link
Contributor Author

@in-session can you update your PR as it's not merged yet?

@mattgrul
Copy link

mattgrul commented Nov 22, 2022

@barryvdh The following arbitrary values fail with this updated version - grid-rows-[auto 1fr]

Using only one value with no space within the square brackets seems to work however - grid-rows-[auto]

@barryvdh
Copy link
Contributor Author

@mattgrul I'm not sure if that class is valid, but maybe we don't need such strict validation and just allow classes with ([a-zA-Z\d\-_/:.\[\]] *)* ?

https://regexr.com/737mk

@thijsdewitt
Copy link

Since Tailwind v3.1 you have Arbitrary values but for variants like [&:nth-child(3)]:py-0. This fails with this updated version.

@barryvdh
Copy link
Contributor Author

Do we even need validation at that point 😓
https://regexr.com/73fp6 with [a-zA-Z\d\-_/:.\[\]\&() ]* ?

@jissereitsma
Copy link
Contributor

@barryvdh In some CSS frameworks, the @ character is also used for CSS classes. Would it be an idea to include that character as well in your PR?

@barryvdh
Copy link
Contributor Author

barryvdh commented Dec 2, 2022

Sure thing

@Tjitse-E
Copy link
Contributor

Tjitse-E commented Dec 5, 2022

@barryvdh the commit that adds the at (@) sign seems breaks XML parsing:

Element '{http://www.w3.org/2001/XMLSchema}redefine': Failed to parse the XML resource 'urn:magento:framework:View/Layout/etc/elements.xsd'.
Line: 10

Error: Unescaped & or non terminated character/entity reference.

I've just tested with: [a-zA-Z\d\-_/:.\[\]&amp;@() ]*, and that does work locally. Could you verify that?

@barryvdh
Copy link
Contributor Author

barryvdh commented Dec 5, 2022

Nevermind, [a-zA-Z\d\-_/:.\[\]&amp;@() ]* seems correct indeed. Will adjust.

@barryvdh
Copy link
Contributor Author

barryvdh commented Dec 5, 2022

This will also need a change in module-page-builder/view/adminhtml/web/js/form/element/validator-rules-mixin.js though.

@sinhaparul sinhaparul added the Project: Community Picked PRs upvoted by the community label Dec 12, 2022
@engcom-Hotel engcom-Hotel added the Priority: P2 A defect with this priority could have functionality issues which are not to expectations. label Dec 13, 2022
@engcom-Charlie
Copy link
Contributor

Hi @barryvdh,

Thank you for your contribution!

I have tried to reproduce this issue in latest magento 2.4-develop, followed below steps, but the issue is not reproducible for us.

  1. Adding htmlClass="product-info-main w-screen left-1/2 right-1/2 mx-[-50vw] relative md:max-w-2xl" in app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml file
  2. Deploy static content and flush cache
    We are not getting any error on content deploy as well as on Product page.

Can you please let us know if we are missing anything in order to reproduce. We are waiting for your feedback on above comment too, till then moving it to On hold.

Thank you!

@hostep
Copy link
Contributor

hostep commented Feb 16, 2023

@engcom-Charlie: make sure you are running in developer mode, if you are running in production mode the error doesn't show up. Also make sure your caches are flushed just before visiting the product page.

I just tested it on a clean Magento from 2.4-develop, steps to reproduce:

  • setup clean magento
  • run bin/magento deploy:mode:set developer
  • setup a category and product in the backoffice so you have something to go to on the frontend
  • make a change like this:
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml
index 6e24f84f004..136bc5081f7 100644
--- a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml
+++ b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml
@@ -36,7 +36,7 @@
         </referenceBlock>

         <referenceContainer name="content">
-            <container name="product.info.main" htmlTag="div" htmlClass="product-info-main" before="-">
+            <container name="product.info.main" htmlTag="div" htmlClass="product-info-main w-screen left-1/2 right-1/2 mx-[-50vw] relative md:max-w-2xl" before="-">
                 <container name="product.info.price" label="Product info auxiliary container" htmlTag="div" htmlClass="product-info-price">
                     <container name="product.info.stock.sku" label="Product auxiliary info" htmlTag="div" htmlClass="product-info-stock-sku">
                         <container name="product.info.type" before="-"/>
  • reindex + flush caches
  • visit the product on the frontend
  • you'll get an error like this:
1 exception(s):
Exception #0 (Magento\Framework\Config\Dom\ValidationException): Element 'container', attribute 'htmlClass': [facet 'pattern'] The value 'product-info-main w-screen left-1/2 right-1/2 mx-[-50vw] relative md:max-w-2xl' is not accepted by the pattern '[a-zA-Z][a-zA-Z\d\-_:]*(\s[a-zA-Z][a-zA-Z\d\-_:]*)*'.
Line: 800

With the changes proposed here in this PR and another cache flush, the error no longer happens.

@engcom-Charlie
Copy link
Contributor

Hi @hostep,

Thank you for your guidance and contribution!

I have tested this PR as mentioned in above comment, the issue is reproducible and the solution given in this PR is working fine. Followed below steps.

✔️ QA Passed

Manual Scenario Steps

  • setup magento

  • run bin/magento deploy:mode:set developer

  • created product in admin

  • make a below changes:
    Adding htmlClass="product-info-main w-screen left-1/2 right-1/2 mx-[-50vw] relative md:max-w-2xl" in app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml file

  • Reindex and flush cache

  • Visit the created product on storefront

Before: ✖️
image

After: ✔️
image

Thank you!

@engcom-Charlie
Copy link
Contributor

The functional test failure is not related to PR or not failing because of PR changes hence moving this to Merge in Progress.

Functional test B2B
image

@engcom-Lima
Copy link
Contributor

@magento create issue

@thomas-kl1
Copy link
Member

Fix #32004

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Issue: needs update Additional information is require, waiting for response Priority: P2 A defect with this priority could have functionality issues which are not to expectations. Progress: accept Project: Community Picked PRs upvoted by the community Triage: Dev.Experience Issue related to Developer Experience and needs help with Triage to Confirm or Reject it
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Issue] Allow more htmlClasses