-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
ref(nextjs): Use generic loader to inject global values #6484
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
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
56a1391
ref(nextjs): Use generic loader to inject global values
b499fef
Simplify isomorphic loader logic
4e8f3aa
Improve comment wording
be36164
Use quotes around key
9b548da
Remove redundant test
a75807c
Add comment explaining objectContaining({})
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export { default as valueInjectionLoader } from './valueInjectionLoader'; | ||
export { default as prefixLoader } from './prefixLoader'; | ||
export { default as proxyLoader } from './proxyLoader'; |
26 changes: 26 additions & 0 deletions
26
packages/nextjs/src/config/loaders/valueInjectionLoader.ts
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,26 @@ | ||
import { LoaderThis } from './types'; | ||
|
||
type LoaderOptions = { | ||
values: Record<string, unknown>; | ||
}; | ||
|
||
/** | ||
* Set values on the global/window object at the start of a module. | ||
* | ||
* Options: | ||
* - `values`: An object where the keys correspond to the keys of the global values to set and the values | ||
* correspond to the values of the values on the global object. Values must be JSON serializable. | ||
*/ | ||
export default function valueInjectionLoader(this: LoaderThis<LoaderOptions>, userCode: string): string { | ||
// We know one or the other will be defined, depending on the version of webpack being used | ||
const { values } = 'getOptions' in this ? this.getOptions() : this.query; | ||
|
||
// Define some global proxy that works on server and on the browser. | ||
let injectedCode = 'var _sentryCollisionFreeGlobalObject = typeof window === "undefined" ? global : window;\n'; | ||
|
||
Object.entries(values).forEach(([key, value]) => { | ||
injectedCode += `_sentryCollisionFreeGlobalObject["${key}"] = ${JSON.stringify(value)};\n`; | ||
}); | ||
|
||
return `${injectedCode}\n${userCode}`; | ||
} |
9 changes: 0 additions & 9 deletions
9
packages/nextjs/src/config/templates/clientRewriteFramesPrefixLoaderTemplate.ts
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
packages/nextjs/src/config/templates/releasePrefixLoaderTemplate.ts
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
packages/nextjs/src/config/templates/serverRewriteFramesPrefixLoaderTemplate.ts
This file was deleted.
Oops, something went wrong.
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
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.
M: Do we need to worry about web workers/
self
here, do you think? Is there a reason not to just useGLOBAL_OBJ
from@sentry/utils
?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 think we don't need to worry about web workers here. The loader is only applied to
sentry.server.config.js
andsentry.client.config.js
and I think we are safe to assume thatsentry.client.config.js
will not be injected into any web worker contexts. Unless I am missing something.Considering the above I would just keep it as-is to keep the logic simple.