-
Notifications
You must be signed in to change notification settings - Fork 1.4k
fix(visitor-plugin-common): Escape special characters when emitting template literals #10482
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
Open
gibson042
wants to merge
1
commit into
dotansimha:master
Choose a base branch
from
gibson042:gh-10480-documentmode-string-template-escaping
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
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
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -19,7 +19,7 @@ import { | |||||||||||
| import gqlTag from 'graphql-tag'; | ||||||||||||
| import { BaseVisitor, ParsedConfig, RawConfig } from './base-visitor.js'; | ||||||||||||
| import { LoadedFragment, ParsedImport } from './types.js'; | ||||||||||||
| import { buildScalarsFromConfig, unique, flatten, getConfigValue, groupBy } from './utils.js'; | ||||||||||||
| import { asTemplateLiteral, buildScalarsFromConfig, unique, flatten, getConfigValue, groupBy } from './utils.js'; | ||||||||||||
| import { FragmentImport, ImportDeclaration, generateFragmentImportStatement } from './imports.js'; | ||||||||||||
|
|
||||||||||||
| gqlTag.enableExperimentalFragmentVariables(); | ||||||||||||
|
|
@@ -350,10 +350,13 @@ export class ClientSideBaseVisitor< | |||||||||||
| const fragmentNames = this._extractFragments(node, includeNestedFragments); | ||||||||||||
| const fragments = this._transformFragments(fragmentNames); | ||||||||||||
|
|
||||||||||||
| const doc = this._prepareDocument(` | ||||||||||||
| ${print(node).split('\\').join('\\\\') /* Re-escape escaped values in GraphQL syntax */} | ||||||||||||
| ${this._includeFragments(fragments)}`); | ||||||||||||
| // Re-escape escaped values in GraphQL syntax. | ||||||||||||
| const docLiteralContents = print(node).split('\\').join('\\\\'); | ||||||||||||
| const fragmentLiteralContents = this._includeFragments(fragments); | ||||||||||||
|
|
||||||||||||
| const doc = this._prepareDocument(` | ||||||||||||
| ${docLiteralContents} | ||||||||||||
| ${fragmentLiteralContents}`); | ||||||||||||
| if (this.config.documentMode === DocumentMode.documentNode) { | ||||||||||||
| let gqlObj = gqlTag([doc]); | ||||||||||||
|
|
||||||||||||
|
|
@@ -414,8 +417,9 @@ export class ClientSideBaseVisitor< | |||||||||||
| } | ||||||||||||
|
|
||||||||||||
| if (this.config.documentMode === DocumentMode.string) { | ||||||||||||
| const escapedLiteralContents = asTemplateLiteral(doc).slice(1, -1); | ||||||||||||
| if (node.kind === Kind.FRAGMENT_DEFINITION) { | ||||||||||||
| return `new TypedDocumentString(\`${doc}\`, ${JSON.stringify({ fragmentName: node.name.value })})`; | ||||||||||||
| return `new TypedDocumentString(\`${escapedLiteralContents}\`, ${JSON.stringify({ fragmentName: node.name.value })})`; | ||||||||||||
| } | ||||||||||||
|
|
||||||||||||
| if (this._onExecutableDocumentNode && node.kind === Kind.OPERATION_DEFINITION) { | ||||||||||||
|
|
@@ -425,16 +429,21 @@ export class ClientSideBaseVisitor< | |||||||||||
| if (this._omitDefinitions === true) { | ||||||||||||
| return `{${`"__meta__":${JSON.stringify(meta)},`.slice(0, -1)}}`; | ||||||||||||
| } | ||||||||||||
| return `new TypedDocumentString(\`${doc}\`, ${JSON.stringify(meta)})`; | ||||||||||||
| return `new TypedDocumentString(\`${escapedLiteralContents}\`, ${JSON.stringify(meta)})`; | ||||||||||||
| } | ||||||||||||
| } | ||||||||||||
|
|
||||||||||||
| return `new TypedDocumentString(\`${doc}\`)`; | ||||||||||||
| return `new TypedDocumentString(\`${escapedLiteralContents}\`)`; | ||||||||||||
| } | ||||||||||||
|
|
||||||||||||
| const escapedLiteralContentsPrefix = asTemplateLiteral(docLiteralContents).slice(1, -1); | ||||||||||||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd love to further extend this for honoring
Suggested change
|
||||||||||||
| const escapedDoc = this._prepareDocument(` | ||||||||||||
| ${escapedLiteralContentsPrefix} | ||||||||||||
| ${fragmentLiteralContents}`); | ||||||||||||
|
|
||||||||||||
| const gqlImport = this._parseImport(this.config.gqlImport || 'graphql-tag'); | ||||||||||||
|
|
||||||||||||
| return (gqlImport.propName || 'gql') + '`' + doc + '`'; | ||||||||||||
| return (gqlImport.propName || 'gql') + '`' + escapedDoc + '`'; | ||||||||||||
| } | ||||||||||||
|
|
||||||||||||
| protected _getGraphQLCodegenMetadata( | ||||||||||||
|
|
||||||||||||
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd love to further extend this for honoring
optimizeDocumentNode(but doing so introduces whitespace changes that break tests):