Closed
Bug 2035950
Opened 18 days ago
Closed 11 days ago
devtools-reps is using React.createFactory, causes spammy warnings when running profiler tests
Categories
(DevTools :: General, task, P3)
DevTools
General
Tracking
(firefox152 fixed)
RESOLVED
FIXED
152 Branch
| Tracking | Status | |
|---|---|---|
| firefox152 | --- | fixed |
People
(Reporter: mstange, Assigned: nchevobbe)
Details
Attachments
(1 file)
|
48 bytes,
text/x-phabricator-request
|
Details |
In the profiler repo https://github.com/firefox-devtools/profiler , running yarn test gives some warnings of the following type:
PASS src/test/components/Root-history.test.tsx
● Console
console.warn
Warning: React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead.
20 | getBackgroundColor,
21 | } from '../../utils/colors';
> 22 | import { ValueSummaryReader } from 'devtools-reps';
| ^
23 | import { TooltipCallNode } from '../tooltip/CallNode';
24 | import { TooltipMarker } from '../tooltip/Marker';
25 |
at printWarning (node_modules/devtools-reps/node_modules/react/cjs/react.development.js:315:30)
at warn (node_modules/devtools-reps/node_modules/react/cjs/react.development.js:278:5)
at createFactoryWithValidation (node_modules/devtools-reps/node_modules/react/cjs/react.development.js:1827:7)
at Object.<anonymous> (node_modules/devtools-reps/reps/custom-formatter.mjs:258:26)
at Object.require (node_modules/devtools-reps/reps/rep.mjs:38:1)
at Object.require (node_modules/devtools-reps/packageIndex.mjs:6:1)
at Object.require (src/components/stack-chart/Canvas.tsx:22:1)
at Object.require (src/components/stack-chart/index.tsx:11:1)
at Object.require (src/components/app/Details.tsx:14:1)
at Object.require (src/components/app/DetailsContainer.tsx:5:1)
at Object.require (src/components/app/ProfileViewer.tsx:9:1)
at Object.require (src/components/app/AppViewRouter.tsx:8:1)
at Object.require (src/components/app/Root.tsx:14:1)
at Object.require (src/test/components/Root-history.test.tsx:11:1)
Comment 1•12 days ago
|
||
Thanks for filing, no plan on our side to move to a newer react version, but we can take a patch to migrate reps out of using createFactory.
Type: defect → task
Priority: -- → P3
| Assignee | ||
Comment 2•12 days ago
|
||
looks like it's only used in one place https://searchfox.org/firefox-main/rev/6087999d87e808ec39f260293afd6cc27b6c5944/devtools/client/shared/components/reps/reps/custom-formatter.mjs#258
const rep = createFactory(CustomFormatter);
would probably be easy to migrate
| Assignee | ||
Comment 3•12 days ago
|
||
Updated•12 days ago
|
Assignee: nobody → nchevobbe
Status: NEW → ASSIGNED
Pushed by nchevobbe@mozilla.com:
https://github.com/mozilla-firefox/firefox/commit/4ce0eeb3c7f9
https://hg.mozilla.org/integration/autoland/rev/4facf24be5cc
[devtools] Remove usage of React.createFactory in Reps. r=devtools-reviewers,jdescottes
Status: ASSIGNED → RESOLVED
Closed: 11 days ago
status-firefox152:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 152 Branch
| Reporter | ||
Comment 6•11 days ago
|
||
Thanks!
You need to log in
before you can comment on or make changes to this bug.
Description
•