* feat: readded editable fields to new profile view * feat: made fullname editable and updated design * test: updated test cases * refactor: refactored code based on reviews
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { EditOutline } from '@openedx/paragon/icons';
|
|
import { injectIntl, intlShape } from '@edx/frontend-platform/i18n';
|
|
import { Button, OverlayTrigger, Tooltip } from '@openedx/paragon';
|
|
import messages from './EditButton.messages';
|
|
|
|
const EditButton = ({
|
|
onClick, className, style, intl,
|
|
}) => (
|
|
<OverlayTrigger
|
|
key="top"
|
|
placement="top"
|
|
overlay={(
|
|
<Tooltip variant="light" id="tooltip-top">
|
|
<p className="h5 font-weight-normal m-0 p-0">
|
|
{intl.formatMessage(messages['profile.editbutton.edit'])}
|
|
</p>
|
|
</Tooltip>
|
|
)}
|
|
>
|
|
<Button
|
|
variant="link"
|
|
size="sm"
|
|
className={className}
|
|
onClick={onClick}
|
|
style={style}
|
|
>
|
|
<EditOutline className="text-gray-700" />
|
|
</Button>
|
|
</OverlayTrigger>
|
|
);
|
|
|
|
export default injectIntl(EditButton);
|
|
|
|
EditButton.propTypes = {
|
|
onClick: PropTypes.func.isRequired,
|
|
className: PropTypes.string,
|
|
style: PropTypes.object, // eslint-disable-line
|
|
intl: intlShape.isRequired,
|
|
};
|
|
|
|
EditButton.defaultProps = {
|
|
className: null,
|
|
style: null,
|
|
};
|