-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Lodash: Refactor components away from _.find()
#46537
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
@@ -1,8 +1,3 @@ | ||||
/** | ||||
* External dependencies | ||||
*/ | ||||
import { find } from 'lodash'; | ||||
|
||||
/** | ||||
* Internal dependencies | ||||
*/ | ||||
|
@@ -23,7 +18,7 @@ export default function BottomSheetPickerCell( props ) { | |||
onChangeValue( newValue ); | ||||
}; | ||||
|
||||
const option = find( options, { value } ); | ||||
const option = options.find( ( opt ) => opt.value === value ); | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||
const label = option ? option.label : value; | ||||
|
||||
return ( | ||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,7 +2,7 @@ | |||||||||||||||||||||
* External dependencies | ||||||||||||||||||||||
*/ | ||||||||||||||||||||||
import { camelCase } from 'change-case'; | ||||||||||||||||||||||
import { find, get } from 'lodash'; | ||||||||||||||||||||||
import { get } from 'lodash'; | ||||||||||||||||||||||
import { Dimensions } from 'react-native'; | ||||||||||||||||||||||
|
||||||||||||||||||||||
/** | ||||||||||||||||||||||
|
@@ -113,9 +113,9 @@ export function getBlockColors( | |||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
if ( ! isCustomColor ) { | ||||||||||||||||||||||
const mappedColor = find( defaultColors, { | ||||||||||||||||||||||
slug: value, | ||||||||||||||||||||||
} ); | ||||||||||||||||||||||
const mappedColor = Object.values( defaultColors ?? {} ).find( | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comes in through an externally exposed API, so we're properly handling objects and nullish values. |
||||||||||||||||||||||
( { slug } ) => slug === value | ||||||||||||||||||||||
); | ||||||||||||||||||||||
|
||||||||||||||||||||||
if ( mappedColor ) { | ||||||||||||||||||||||
blockStyles[ styleKey ] = mappedColor.color; | ||||||||||||||||||||||
|
@@ -143,6 +143,7 @@ export function getBlockTypography( | |||||||||||||||||||||
const typographyStyles = {}; | ||||||||||||||||||||||
const customBlockStyles = blockStyleAttributes?.style?.typography || {}; | ||||||||||||||||||||||
const blockGlobalStyles = baseGlobalStyles?.blocks?.[ blockName ]; | ||||||||||||||||||||||
const parsedFontSizes = Object.values( fontSizes ?? {} ); | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comes in through an externally exposed API, so we're properly handling objects and nullish values. It's used twice below, which is why we've moved it here. |
||||||||||||||||||||||
|
||||||||||||||||||||||
// Global styles. | ||||||||||||||||||||||
if ( blockGlobalStyles?.typography ) { | ||||||||||||||||||||||
|
@@ -153,9 +154,9 @@ export function getBlockTypography( | |||||||||||||||||||||
if ( parseInt( fontSize, 10 ) ) { | ||||||||||||||||||||||
typographyStyles.fontSize = fontSize; | ||||||||||||||||||||||
} else { | ||||||||||||||||||||||
const mappedFontSize = find( fontSizes, { | ||||||||||||||||||||||
slug: fontSize, | ||||||||||||||||||||||
} ); | ||||||||||||||||||||||
const mappedFontSize = parsedFontSizes.find( | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See above comment on L146. |
||||||||||||||||||||||
( { slug } ) => slug === fontSize | ||||||||||||||||||||||
); | ||||||||||||||||||||||
|
||||||||||||||||||||||
if ( mappedFontSize ) { | ||||||||||||||||||||||
typographyStyles.fontSize = mappedFontSize?.size; | ||||||||||||||||||||||
|
@@ -169,9 +170,9 @@ export function getBlockTypography( | |||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
if ( blockStyleAttributes?.fontSize && baseGlobalStyles ) { | ||||||||||||||||||||||
const mappedFontSize = find( fontSizes, { | ||||||||||||||||||||||
slug: blockStyleAttributes?.fontSize, | ||||||||||||||||||||||
} ); | ||||||||||||||||||||||
const mappedFontSize = parsedFontSizes.find( | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See above comment on L146. |
||||||||||||||||||||||
( { slug } ) => slug === blockStyleAttributes?.fontSize | ||||||||||||||||||||||
); | ||||||||||||||||||||||
|
||||||||||||||||||||||
if ( mappedFontSize ) { | ||||||||||||||||||||||
typographyStyles.fontSize = mappedFontSize?.size; | ||||||||||||||||||||||
|
@@ -212,9 +213,9 @@ export function parseStylesVariables( styles, mappedValues, customValues ) { | |||||||||||||||||||||
const path = $2.split( '--' ); | ||||||||||||||||||||||
const mappedPresetValue = mappedValues[ path[ 0 ] ]; | ||||||||||||||||||||||
if ( mappedPresetValue && mappedPresetValue.slug ) { | ||||||||||||||||||||||
const matchedValue = find( mappedPresetValue.values, { | ||||||||||||||||||||||
slug: path[ 1 ], | ||||||||||||||||||||||
} ); | ||||||||||||||||||||||
const matchedValue = Object.values( | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will be an object: gutenberg/packages/components/src/mobile/global-styles-context/utils.native.js Lines 287 to 296 in 47a6e4a
The |
||||||||||||||||||||||
mappedPresetValue.values ?? {} | ||||||||||||||||||||||
).find( ( { slug } ) => slug === path[ 1 ] ); | ||||||||||||||||||||||
return matchedValue?.[ mappedPresetValue.slug ]; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
return UNKNOWN_VALUE; | ||||||||||||||||||||||
|
@@ -244,9 +245,9 @@ export function parseStylesVariables( styles, mappedValues, customValues ) { | |||||||||||||||||||||
if ( variable === 'var' ) { | ||||||||||||||||||||||
stylesBase = stylesBase.replace( varRegex, ( _$1, $2 ) => { | ||||||||||||||||||||||
if ( mappedValues?.color ) { | ||||||||||||||||||||||
const matchedValue = find( mappedValues.color?.values, { | ||||||||||||||||||||||
slug: $2, | ||||||||||||||||||||||
} ); | ||||||||||||||||||||||
const matchedValue = mappedValues.color?.values?.find( | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above. |
||||||||||||||||||||||
( { slug } ) => slug === $2 | ||||||||||||||||||||||
); | ||||||||||||||||||||||
return `"${ matchedValue?.color }"`; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
return UNKNOWN_VALUE; | ||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
* External dependencies | ||
*/ | ||
import classnames from 'classnames'; | ||
import { find } from 'lodash'; | ||
|
||
/** | ||
* WordPress dependencies | ||
|
@@ -102,7 +101,7 @@ export function TabPanel( { | |
) => { | ||
child.click(); | ||
}; | ||
const selectedTab = find( tabs, { name: selected } ); | ||
const selectedTab = tabs.find( ( { name } ) => name === selected ); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
const selectedId = `${ instanceId }-${ selectedTab?.name ?? 'none' }`; | ||
|
||
useEffect( () => { | ||
|
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.
Relies on the
editor.Autocomplete.completers
filter, so although we have completers enabled by default, it could end up being nullish. Adding optional chaining just in case.