mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
c341abaea6
* Fix storybook * Update policies * Bump all Storybook dependencies to the latest version * Add Storybook dependencies to depcheck ignore list * Update policy-override.json * Fix SectionShape circular dependency * Change policy override for eslint-scope * Fix some Webpack build issues * Add missing dependency Co-authored-by: Frederik Bolding <frederik.bolding@gmail.com>
90 lines
2.8 KiB
JavaScript
90 lines
2.8 KiB
JavaScript
import React, { memo } from 'react';
|
|
import { isEqual } from 'lodash';
|
|
import { safeComponentList } from './safe-component-list';
|
|
import { ValidChildren } from './section-shape';
|
|
|
|
function getElement(section) {
|
|
const { element } = section;
|
|
const Element = safeComponentList[element];
|
|
if (!Element) {
|
|
throw new Error(
|
|
`${element} is not in the safe component list for MetaMask template renderer`,
|
|
);
|
|
}
|
|
return Element;
|
|
}
|
|
|
|
const MetaMaskTemplateRenderer = ({ sections }) => {
|
|
if (!sections) {
|
|
// If sections is null eject early by returning null
|
|
return null;
|
|
} else if (typeof sections === 'string') {
|
|
// React can render strings directly, so return the string
|
|
return sections;
|
|
} else if (
|
|
sections &&
|
|
typeof sections === 'object' &&
|
|
!Array.isArray(sections)
|
|
) {
|
|
// If dealing with a single entry, then render a single object without key
|
|
const Element = getElement(sections);
|
|
return (
|
|
<Element {...sections.props}>
|
|
{typeof sections.children === 'object' ? (
|
|
<MetaMaskTemplateRenderer sections={sections.children} />
|
|
) : (
|
|
sections?.children
|
|
)}
|
|
</Element>
|
|
);
|
|
}
|
|
|
|
// The last case is dealing with an array of objects
|
|
return (
|
|
<>
|
|
{sections.reduce((allChildren, child) => {
|
|
if (child?.hide === true) {
|
|
return allChildren;
|
|
}
|
|
if (typeof child === 'string') {
|
|
// React can render strings directly, so push them into the accumulator
|
|
allChildren.push(child);
|
|
} else {
|
|
// If the entry in array is not a string, then it must be a Section.
|
|
// Sections are handled by the main function, but must
|
|
// be provided a key when a part of an array.
|
|
if (!child.key) {
|
|
throw new Error(
|
|
'When using array syntax in MetaMask Template Language, you must specify a key for each child of the array',
|
|
);
|
|
}
|
|
if (typeof child?.children === 'object') {
|
|
// If this child has its own children, check if children is an
|
|
// object, and in that case use recursion to render.
|
|
allChildren.push(
|
|
<MetaMaskTemplateRenderer sections={child} key={child.key} />,
|
|
);
|
|
} else {
|
|
// Otherwise render the element.
|
|
const Element = getElement(child);
|
|
allChildren.push(
|
|
<Element key={child.key} {...child.props}>
|
|
{child?.children}
|
|
</Element>,
|
|
);
|
|
}
|
|
}
|
|
return allChildren;
|
|
}, [])}
|
|
</>
|
|
);
|
|
};
|
|
|
|
MetaMaskTemplateRenderer.propTypes = {
|
|
sections: ValidChildren,
|
|
};
|
|
|
|
export default memo(MetaMaskTemplateRenderer, (prevProps, nextProps) => {
|
|
return isEqual(prevProps.sections, nextProps.sections);
|
|
});
|