mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-06 16:21:23 +05:30
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import styles from './profile.scss';
|
|
|
|
export default class ProfileField extends React.Component {
|
|
static propTypes = {
|
|
label: PropTypes.oneOfType([PropTypes.string, PropTypes.element])
|
|
.isRequired,
|
|
link: PropTypes.string,
|
|
onChange: PropTypes.func,
|
|
value: PropTypes.oneOfType([PropTypes.string, PropTypes.element])
|
|
.isRequired,
|
|
warningMessage: PropTypes.oneOfType([PropTypes.string, PropTypes.element]),
|
|
};
|
|
|
|
render() {
|
|
const { label, value, warningMessage, link, onChange } = this.props;
|
|
|
|
let Action = null;
|
|
|
|
if (link) {
|
|
Action = props => <Link to={link} {...props} />;
|
|
}
|
|
|
|
if (onChange) {
|
|
Action = props => <a onClick={onChange} {...props} href="#" />;
|
|
}
|
|
|
|
return (
|
|
<div className={styles.paramItem}>
|
|
<div className={styles.paramRow}>
|
|
<div className={styles.paramName}>{label}</div>
|
|
<div className={styles.paramValue}>{value}</div>
|
|
|
|
{Action ? (
|
|
<Action to={link} className={styles.paramAction}>
|
|
<span className={styles.paramEditIcon} />
|
|
</Action>
|
|
) : null}
|
|
</div>
|
|
|
|
{warningMessage ? (
|
|
<div className={styles.paramMessage}>{warningMessage}</div>
|
|
) : (
|
|
''
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|