-
Notifications
You must be signed in to change notification settings - Fork 48.8k
Prevent errors/crashing when multiple installs of DevTools are present #22517
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
7 commits
Select commit
Hold shift + click to select a range
0f6ee80
[DevTools] RFC: Prevent errors/crashing when multiple installations o…
cbd76b2
Make sure to pass the extension ID to all postMessages handled by inj…
17dc893
Prefer internal version + improve handling of local dev builds
91920c4
Address comments
29549d9
Local builds now are always enabled over duplicates, build step gener…
3a10f2c
Fix constants (remove testing ids)
8533ef8
Comments
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
129 changes: 129 additions & 0 deletions
129
packages/react-devtools-extensions/src/checkForDuplicateInstallations.js
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,129 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @flow strict-local | ||
*/ | ||
|
||
declare var chrome: any; | ||
|
||
import {__DEBUG__} from 'react-devtools-shared/src/constants'; | ||
import { | ||
EXTENSION_INSTALL_CHECK_MESSAGE, | ||
EXTENSION_INSTALLATION_TYPE, | ||
INTERNAL_EXTENSION_ID, | ||
LOCAL_EXTENSION_ID, | ||
} from './constants'; | ||
|
||
const UNRECOGNIZED_EXTENSION_WARNING = | ||
'React Developer Tools: You are running an unrecognized installation of the React Developer Tools extension, which might conflict with other versions of the extension installed in your browser. ' + | ||
'Please make sure you only have a single version of the extension installed or enabled. ' + | ||
'If you are developing this extension locally, make sure to build the extension using the `yarn build:<browser>:local` command.'; | ||
|
||
export function checkForDuplicateInstallations(callback: boolean => void) { | ||
switch (EXTENSION_INSTALLATION_TYPE) { | ||
case 'public': { | ||
// If this is the public extension (e.g. from Chrome Web Store), check if an internal | ||
// or local build of the extension is also installed, and if so, disable this extension. | ||
jstejada marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// TODO show warning if other installations are present. | ||
checkForInstalledExtensions([ | ||
INTERNAL_EXTENSION_ID, | ||
LOCAL_EXTENSION_ID, | ||
]).then(areExtensionsInstalled => { | ||
if (areExtensionsInstalled.some(isInstalled => isInstalled)) { | ||
callback(true); | ||
} else { | ||
callback(false); | ||
} | ||
}); | ||
break; | ||
} | ||
case 'internal': { | ||
// If this is the internal extension, check if a local build of the extension | ||
// is also installed, and if so, disable this extension. | ||
// If the public version of the extension is also installed, that extension | ||
// will disable itself. | ||
// TODO show warning if other installations are present. | ||
checkForInstalledExtension(LOCAL_EXTENSION_ID).then(isInstalled => { | ||
if (isInstalled) { | ||
callback(true); | ||
} else { | ||
callback(false); | ||
} | ||
}); | ||
break; | ||
} | ||
case 'local': { | ||
if (__DEV__) { | ||
// If this is the local extension (i.e. built locally during development), | ||
// always keep this one enabled. Other installations disable themselves if | ||
// they detect the local build is installed. | ||
callback(false); | ||
break; | ||
} | ||
|
||
// If this extension wasn't built locally during development, we can't reliably | ||
// detect if there are other installations of DevTools present. | ||
// In this case, assume there are no duplicate exensions and show a warning about | ||
// potential conflicts. | ||
console.error(UNRECOGNIZED_EXTENSION_WARNING); | ||
chrome.devtools.inspectedWindow.eval( | ||
`console.error("${UNRECOGNIZED_EXTENSION_WARNING}")`, | ||
); | ||
callback(false); | ||
break; | ||
} | ||
case 'unknown': { | ||
// If we don't know how this extension was built, we can't reliably detect if there | ||
// are other installations of DevTools present. | ||
// In this case, assume there are no duplicate exensions and show a warning about | ||
// potential conflicts. | ||
console.error(UNRECOGNIZED_EXTENSION_WARNING); | ||
chrome.devtools.inspectedWindow.eval( | ||
`console.error("${UNRECOGNIZED_EXTENSION_WARNING}")`, | ||
); | ||
callback(false); | ||
break; | ||
} | ||
default: { | ||
(EXTENSION_INSTALLATION_TYPE: empty); | ||
jstejada marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
} | ||
} | ||
|
||
function checkForInstalledExtensions( | ||
extensionIds: string[], | ||
): Promise<boolean[]> { | ||
return Promise.all( | ||
extensionIds.map(extensionId => checkForInstalledExtension(extensionId)), | ||
); | ||
} | ||
|
||
function checkForInstalledExtension(extensionId: string): Promise<boolean> { | ||
return new Promise(resolve => { | ||
chrome.runtime.sendMessage( | ||
extensionId, | ||
EXTENSION_INSTALL_CHECK_MESSAGE, | ||
response => { | ||
if (__DEBUG__) { | ||
console.log( | ||
'checkForDuplicateInstallations: Duplicate installation check responded with', | ||
{ | ||
response, | ||
error: chrome.runtime.lastError?.message, | ||
currentExtension: EXTENSION_INSTALLATION_TYPE, | ||
checkingExtension: extensionId, | ||
}, | ||
); | ||
} | ||
if (chrome.runtime.lastError != null) { | ||
resolve(false); | ||
} else { | ||
resolve(true); | ||
} | ||
}, | ||
); | ||
}); | ||
} |
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,31 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @flow strict-local | ||
*/ | ||
|
||
declare var chrome: any; | ||
|
||
export const CURRENT_EXTENSION_ID = chrome.runtime.id; | ||
|
||
export const EXTENSION_INSTALL_CHECK_MESSAGE = 'extension-install-check'; | ||
|
||
export const CHROME_WEBSTORE_EXTENSION_ID = 'fmkadmapgofadopljbjfkapdkoienihi'; | ||
export const INTERNAL_EXTENSION_ID = 'dnjnjgbfilfphmojnmhliehogmojhclc'; | ||
export const LOCAL_EXTENSION_ID = 'ikiahnapldjmdmpkmfhjdjilojjhgcbf'; | ||
|
||
export const EXTENSION_INSTALLATION_TYPE: | ||
| 'public' | ||
| 'internal' | ||
| 'local' | ||
| 'unknown' = | ||
CURRENT_EXTENSION_ID === CHROME_WEBSTORE_EXTENSION_ID | ||
? 'public' | ||
: CURRENT_EXTENSION_ID === INTERNAL_EXTENSION_ID | ||
? 'internal' | ||
: CURRENT_EXTENSION_ID === LOCAL_EXTENSION_ID | ||
? 'local' | ||
: 'unknown'; | ||
jstejada marked this conversation as resolved.
Show resolved
Hide resolved
|
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
Oops, something went wrong.
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.