mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import * as Utils from '../../utils/utils.jsx';
|
|
import Constants from '../../utils/constants.jsx';
|
|
|
|
export default class PremadeThemeChooser extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {};
|
|
}
|
|
render() {
|
|
const theme = this.props.theme;
|
|
|
|
const premadeThemes = [];
|
|
for (const k in Constants.THEMES) {
|
|
if (Constants.THEMES.hasOwnProperty(k)) {
|
|
const premadeTheme = $.extend(true, {}, Constants.THEMES[k]);
|
|
|
|
let activeClass = '';
|
|
if (premadeTheme.type === theme.type) {
|
|
activeClass = 'active';
|
|
}
|
|
|
|
premadeThemes.push(
|
|
<div
|
|
className='col-xs-6 col-sm-3 premade-themes'
|
|
key={'premade-theme-key' + k}
|
|
>
|
|
<div
|
|
className={activeClass}
|
|
onClick={() => this.props.updateTheme(premadeTheme)}
|
|
>
|
|
<label>
|
|
<img
|
|
className='img-responsive'
|
|
src={'/static/images/themes/' + premadeTheme.type.toLowerCase() + '.png'}
|
|
/>
|
|
<div className='theme-label'>{Utils.toTitleCase(premadeTheme.type)}</div>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className='row appearance-section'>
|
|
{premadeThemes}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
PremadeThemeChooser.propTypes = {
|
|
theme: React.PropTypes.object.isRequired,
|
|
updateTheme: React.PropTypes.func.isRequired
|
|
};
|