-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Fix rewriting of components for custom elements #2101
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
Merged
wooorm
merged 19 commits into
mdx-js:main
from
bholmesdev:fix/mdx-custom-elements-serialization
Aug 17, 2022
+46
−11
Merged
Changes from 5 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
11b96d3
feat: add toValidIdentifierName util
bholmesdev 1c86a45
feat: serialize custom element component keys
bholmesdev f1205fe
chore: update custom element test case
bholmesdev 389b5a5
fix: update JSdoc reference
bholmesdev 135aa2d
test: to-valid-identifier-name
bholmesdev 0553e0c
Revert "test: to-valid-identifier-name"
bholmesdev 8f5fbe0
Revert "fix: update JSdoc reference"
bholmesdev a3bd1de
Revert "chore: update custom element test case"
bholmesdev 2ec33fa
Revert "feat: serialize custom element component keys"
bholmesdev 5878dd8
Revert "feat: add toValidIdentifierName util"
bholmesdev 451a76f
feat: inline variables for invalid comp names
bholmesdev e547aa8
test: update custom elements
bholmesdev 7572cdc
fix: avoid duplicating jsx expr
bholmesdev 604e6db
feat: change to "_componentX = _components['X']"
bholmesdev 24fb34d
test: update output
bholmesdev d051f7c
nit: ...[] => Array<...>
bholmesdev f7aea66
nit: clarify inline docs
bholmesdev 55414b4
refactor: [id, componentName]
bholmesdev a9d93b2
fix: only add _componentX to _createMdxContent
bholmesdev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| import {start, cont} from 'estree-util-is-identifier-name' | ||
|
|
||
| /** | ||
| * Replace all invalid identifier characters with underscores "_" | ||
| * @param {string} string_ | ||
| */ | ||
| export function toValidIdentifierName(string_) { | ||
| if (string_.length === 0) return '_' | ||
| let validString = '' | ||
| validString += start(string_[0].charCodeAt(0)) ? string_[0] : '_' | ||
| for (const char of string_.slice(1)) { | ||
| validString += cont(char.charCodeAt(0)) ? char : '_' | ||
| } | ||
|
|
||
| return validString | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| import {test} from 'uvu' | ||
| import * as assert from 'uvu/assert' | ||
| import {toValidIdentifierName} from '../lib/util/to-valid-identifier-name.js' | ||
|
|
||
| /** @param {string} invalidChar */ | ||
| function toTestFailureMessage(invalidChar) { | ||
| return `Invalid characters like "${invalidChar}" should be converted to underscores "_"` | ||
| } | ||
|
|
||
| test('toValidIdentifierName', () => { | ||
| // Valid strings left untouched | ||
| assert.equal(toValidIdentifierName('test'), 'test') | ||
| assert.equal(toValidIdentifierName('camelCase'), 'camelCase') | ||
| // Invalid cont character -> underscore | ||
| assert.equal( | ||
| toValidIdentifierName('custom-element'), | ||
| 'custom_element', | ||
| toTestFailureMessage('-') | ||
| ) | ||
| assert.equal( | ||
| toValidIdentifierName('custom element'), | ||
| 'custom_element', | ||
| toTestFailureMessage(' ') | ||
| ) | ||
| // Invalid starting character -> underscore | ||
| assert.equal( | ||
| toValidIdentifierName('-badStarting'), | ||
| '_badStarting', | ||
| toTestFailureMessage('-') | ||
| ) | ||
| assert.equal( | ||
| toValidIdentifierName('1badStarting'), | ||
| '_badStarting', | ||
| toTestFailureMessage('1') | ||
| ) | ||
| assert.equal( | ||
| toValidIdentifierName(' badStarting'), | ||
| '_badStarting', | ||
| toTestFailureMessage(' ') | ||
| ) | ||
| // Empty string -> underscore | ||
| assert.equal('_', toValidIdentifierName('')) | ||
| }) | ||
|
|
||
| test.run() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.