Files
mattermost/webapp/components/setting_item_min.jsx
Christopher Speller 2bbedd9def Updating client dependencies. Switching to yarn. (#6433)
* Updating client dependancies. Switching to using yarn.

* Updating React

* Moving pure components to using function syntax (performance gains with newer react version)

* Updating client dependancies.

* Ignore .yarninstall

* Enabling pre-lockfile because it's the entire point of using yarn.

* Removing old webpack config

* Moving to new prop-types

* Fixing ESLint Errors

* Updating jest snapshots.

* Cleaning up package.json
2017-05-18 09:28:18 -04:00

55 lines
1.5 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;
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>
);
}
return (
<ul
className='section-min'
onClick={props.updateSection}
>
<li className='col-xs-12 col-sm-9 section-title'>{props.title}</li>
{editButton}
<li
id={Utils.createSafeId(props.title) + 'Desc'}
className='col-xs-12 section-describe'
>
{props.describe}
</li>
</ul>
);
}
SettingItemMin.propTypes = {
title: PropTypes.node,
disableOpen: PropTypes.bool,
updateSection: PropTypes.func,
describe: PropTypes.node
};