Skip to content
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

Refactored Edit.jsx. #6206

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/volto/news/6206.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Refactor the `manage/Blocks/LeadImage/Edit.jsx` component from a class component to a functional component. @BhavishyaSahay
99 changes: 30 additions & 69 deletions packages/volto/src/components/manage/Blocks/LeadImage/Edit.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
/**
* Edit image block.
* @module components/manage/Blocks/Image/Edit
*/

import React, { Component } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import { compose } from 'redux';
import { defineMessages, injectIntl } from 'react-intl';
import { defineMessages, useIntl } from 'react-intl';
import cx from 'classnames';
import { Message } from 'semantic-ui-react';
import { isEqual } from 'lodash';
Expand All @@ -23,67 +18,16 @@ const messages = defineMessages({
},
});

/**
* Edit image block class.
* @class Edit
* @extends Component
*/
class Edit extends Component {
/**
* Property types.
* @property {Object} propTypes Property types.
* @static
*/
static propTypes = {
properties: PropTypes.objectOf(PropTypes.any).isRequired,
selected: PropTypes.bool.isRequired,
block: PropTypes.string.isRequired,
index: PropTypes.number.isRequired,
data: PropTypes.objectOf(PropTypes.any).isRequired,
pathname: PropTypes.string.isRequired,
onChangeBlock: PropTypes.func.isRequired,
openObjectBrowser: PropTypes.func.isRequired,
};

/**
* Align block handler
* @method onAlignBlock
* @param {string} align Alignment option
* @returns {undefined}
*/
onAlignBlock(align) {
this.props.onChangeBlock(this.props.block, {
...this.props.data,
align,
});
}

/**
* @param {*} nextProps
* @returns {boolean}
* @memberof Edit
*/
shouldComponentUpdate(nextProps) {
return (
this.props.selected ||
nextProps.selected ||
!isEqual(this.props.data, nextProps.data)
);
}
const Edit = React.memo(
(props) => {
const { properties, selected, data } = props;

node = React.createRef();
const intl = useIntl();

/**
* Render method.
* @method render
* @returns {string} Markup for the component.
*/
render() {
const Image = config.getComponent({ name: 'Image' }).component;
const { data, properties } = this.props;
const placeholder =
this.props.data.placeholder ||
this.props.intl.formatMessage(messages.ImageBlockInputPlaceholder);
data.placeholder ||
intl.formatMessage(messages.ImageBlockInputPlaceholder);

const hasImage = !!properties.image;
const hasImageData = hasImage && !!properties.image.data;
Expand Down Expand Up @@ -135,12 +79,29 @@ class Edit extends Component {
alt={altText}
/>
)}
<SidebarPortal selected={this.props.selected}>
<LeadImageSidebar {...this.props} />
<SidebarPortal selected={selected}>
<LeadImageSidebar {...props} />
</SidebarPortal>
</div>
);
}
}
},
(prevProps, nextProps) => {
return (
prevProps.selected === nextProps.selected &&
isEqual(prevProps.data, nextProps.data)
);
},
);

Edit.propTypes = {
properties: PropTypes.objectOf(PropTypes.any).isRequired,
selected: PropTypes.bool.isRequired,
block: PropTypes.string.isRequired,
index: PropTypes.number.isRequired,
data: PropTypes.objectOf(PropTypes.any).isRequired,
pathname: PropTypes.string.isRequired,
onChangeBlock: PropTypes.func.isRequired,
openObjectBrowser: PropTypes.func.isRequired,
};

export default compose(injectIntl)(Edit);
export default compose()(Edit);
Loading
Loading