-
-
Notifications
You must be signed in to change notification settings - Fork 9.9k
Telemetry: Add platform info to telemetry event #24081
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 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c3997d4
add platform info to telemetry event
yannbf f1ba7fe
fix error processing and add browser info
yannbf e0d4456
add browser info to preview runtime error
yannbf e894dfd
cleanup
yannbf 363c268
optmize getting browserinfo
yannbf 3de1219
refactor preprocessError function
yannbf a1fd317
Merge branch 'next' into yann/improve-telemetry-metadata
yannbf 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| import { global } from '@storybook/global'; | ||
| import type { BrowserInfo } from 'browser-dtector'; | ||
| import BrowserDetector from 'browser-dtector'; | ||
|
|
||
| let browserInfo: BrowserInfo | undefined; | ||
|
|
||
| function getBrowserInfo() { | ||
| if (!browserInfo) { | ||
| browserInfo = new BrowserDetector(global.navigator?.userAgent).getBrowserInfo(); | ||
| } | ||
|
|
||
| return browserInfo; | ||
| } | ||
|
|
||
| export function preprocessError( | ||
yannbf marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| error: Error & { | ||
| fromStorybook?: boolean; | ||
| category?: string; | ||
| target?: any; | ||
| currentTarget?: any; | ||
| srcElement?: any; | ||
| browserInfo?: BrowserInfo; | ||
| } | ||
| ) { | ||
| // eslint-disable-next-line no-param-reassign | ||
| error.browserInfo = getBrowserInfo(); | ||
|
|
||
| return error; | ||
| } | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| /* eslint-disable local-rules/no-uncategorized-errors */ | ||
| import { UncaughtManagerError } from '@storybook/core-events/manager-errors'; | ||
| import { global } from '@storybook/global'; | ||
| import type { BrowserInfo } from 'browser-dtector'; | ||
| import BrowserDetector from 'browser-dtector'; | ||
|
|
||
| let browserInfo: BrowserInfo | undefined; | ||
|
|
||
| function getBrowserInfo() { | ||
| if (!browserInfo) { | ||
| browserInfo = new BrowserDetector(global.navigator?.userAgent).getBrowserInfo(); | ||
| } | ||
|
|
||
| return browserInfo; | ||
| } | ||
|
|
||
| export function preprocessError( | ||
| originalError: Error & { | ||
| fromStorybook?: boolean; | ||
| category?: string; | ||
| target?: any; | ||
| currentTarget?: any; | ||
| srcElement?: any; | ||
| browserInfo?: BrowserInfo; | ||
| } | ||
| ) { | ||
| let error = originalError; | ||
|
|
||
| // DOM manipulation errors and other similar errors are not serializable as they contain | ||
| // circular references to the window object. If that's the case, we make a simplified copy | ||
| if ( | ||
| originalError.target === global || | ||
| originalError.currentTarget === global || | ||
| originalError.srcElement === global | ||
| ) { | ||
| error = new Error(originalError.message); | ||
| error.name = originalError.name || error.name; | ||
| } | ||
|
|
||
| if (!originalError.fromStorybook) { | ||
| error = new UncaughtManagerError({ error }); | ||
| } | ||
|
|
||
| error.browserInfo = getBrowserInfo(); | ||
|
|
||
| return error; | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.