mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Remove edit button on mobile, and have the edit icon beside the value, and the value as a link * update per review
74 lines
2.1 KiB
JavaScript
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
|
|
};
|