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 issue with sub-expressions in class strings #102

Merged
merged 6 commits into from
Oct 2, 2023

Conversation

NullVoxPopuli
Copy link
Collaborator

No description provided.

@changeset-bot
Copy link

changeset-bot bot commented Sep 26, 2023

🦋 Changeset detected

Latest commit: 936cda4

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
ember-scoped-css Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@@ -3,7 +3,16 @@ export default function renameClass(className, postfix, classesInCss) {
const renamedClasses = classes
.filter((c) => c)
.map((c) => c.trim())
.map((c) => (!classesInCss || classesInCss.has(c) ? c + '_' + postfix : c))
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

2terse4me

@@ -19,6 +19,14 @@ export default function rewriteHbs(hbs, classes, tags, postfix) {
const renamedClass = renameClass(part.chars, postfix, classes);

part.chars = renamedClass;
} else if (part.type === 'MustacheStatement') {
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

this is the fix

@NullVoxPopuli NullVoxPopuli marked this pull request as ready for review September 29, 2023 23:34
@NullVoxPopuli NullVoxPopuli merged commit 9007d4c into main Oct 2, 2023
8 checks passed
@NullVoxPopuli NullVoxPopuli deleted the fix-sub-expression-strings branch October 2, 2023 14:02
@github-actions github-actions bot mentioned this pull request Oct 2, 2023
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.

None yet

2 participants