-
Notifications
You must be signed in to change notification settings - Fork 46.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat[devtools]: display Forget badge for the required components
- Loading branch information
Showing
29 changed files
with
428 additions
and
225 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 |
---|---|---|
|
@@ -65,7 +65,7 @@ | |
color: var(--color-expand-collapse-toggle); | ||
} | ||
|
||
.Badge { | ||
.BadgesBlock { | ||
margin-left: 0.25rem; | ||
} | ||
|
||
|
This file contains 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
14 changes: 14 additions & 0 deletions
14
packages/react-devtools-shared/src/devtools/views/Components/ElementBadges.css
This file contains 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,14 @@ | ||
.Root { | ||
display: inline-flex; | ||
align-items: center; | ||
} | ||
|
||
.Root *:not(:first-child) { | ||
margin-left: 0.25rem; | ||
} | ||
|
||
.ExtraLabel { | ||
font-family: var(--font-family-monospace); | ||
font-size: var(--font-size-monospace-small); | ||
color: var(--color-component-badge-count); | ||
} |
48 changes: 48 additions & 0 deletions
48
packages/react-devtools-shared/src/devtools/views/Components/ElementBadges.js
This file contains 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,48 @@ | ||
/** | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @flow | ||
*/ | ||
|
||
import * as React from 'react'; | ||
|
||
import Badge from './Badge'; | ||
import ForgetBadge from './ForgetBadge'; | ||
|
||
import styles from './ElementBadges.css'; | ||
|
||
type Props = { | ||
hocDisplayNames: Array<string> | null, | ||
compiledWithForget: boolean, | ||
className?: string, | ||
}; | ||
|
||
export default function ElementBadges({ | ||
compiledWithForget, | ||
hocDisplayNames, | ||
className = '', | ||
}: Props): React.Node { | ||
if ( | ||
!compiledWithForget && | ||
(hocDisplayNames == null || hocDisplayNames.length === 0) | ||
) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<div className={`${styles.Root} ${className}`}> | ||
{compiledWithForget && <ForgetBadge indexable={false} />} | ||
|
||
{hocDisplayNames != null && hocDisplayNames.length > 0 && ( | ||
<Badge>{hocDisplayNames[0]}</Badge> | ||
)} | ||
|
||
{hocDisplayNames != null && hocDisplayNames.length > 1 && ( | ||
<div className={styles.ExtraLabel}>+{hocDisplayNames.length - 1}</div> | ||
)} | ||
</div> | ||
); | ||
} |
3 changes: 3 additions & 0 deletions
3
packages/react-devtools-shared/src/devtools/views/Components/ForgetBadge.css
This file contains 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,3 @@ | ||
.Root { | ||
background-color: var(--color-forget-badge); | ||
} |
Oops, something went wrong.