Files
mattermost/webapp/components/setting_item_min.jsx
Carlos Tadeu Panato Junior 59088a1687 [PLT-6452] Remove edit button on mobile, and have the edit icon beside the value, and the value as a link (#6565)
* Remove edit button on mobile, and have the edit icon beside the value, and the value as a link

* update per review
2017-06-19 10:46:15 -07:00

74 lines
2.1 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {FormattedMessage} from 'react-intl';
import * as Utils from 'utils/utils.jsx';
import PropTypes from 'prop-types';
import React from 'react';
export default function SettingItemMin(props) {
let editButton = null;
let describeSection = null;
if (!props.disableOpen && Utils.isMobile()) {
editButton = (
<li className='col-xs-12 col-sm-3 section-edit'>
<a
id={Utils.createSafeId(props.title) + 'Edit'}
className='theme'
href='#'
onClick={props.updateSection}
>
<i className='fa fa-pencil'/>
{props.describe}
</a>
</li>
);
} else if (!props.disableOpen) {
editButton = (
<li className='col-xs-12 col-sm-3 section-edit'>
<a
id={Utils.createSafeId(props.title) + 'Edit'}
className='theme'
href='#'
onClick={props.updateSection}
>
<i className='fa fa-pencil'/>
<FormattedMessage
id='setting_item_min.edit'
defaultMessage='Edit'
/>
</a>
</li>
);
describeSection = (
<li
id={Utils.createSafeId(props.title) + 'Desc'}
className='col-xs-12 section-describe'
>
{props.describe}
</li>
);
}
return (
<ul
className='section-min'
onClick={props.updateSection}
>
<li className='col-xs-12 col-sm-9 section-title'>{props.title}</li>
{editButton}
{describeSection}
</ul>
);
}
SettingItemMin.propTypes = {
title: PropTypes.node,
disableOpen: PropTypes.bool,
updateSection: PropTypes.func,
describe: PropTypes.node
};