// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. // See License.txt for license information. var UserStore = require('../../stores/user_store.jsx'); var Client = require('../../utils/client.jsx'); var Utils = require('../../utils/utils.jsx'); const CustomThemeChooser = require('./custom_theme_chooser.jsx'); const PremadeThemeChooser = require('./premade_theme_chooser.jsx'); const AppDispatcher = require('../../dispatcher/app_dispatcher.jsx'); const Constants = require('../../utils/constants.jsx'); const ActionTypes = Constants.ActionTypes; export default class UserSettingsAppearance extends React.Component { constructor(props) { super(props); this.onChange = this.onChange.bind(this); this.submitTheme = this.submitTheme.bind(this); this.updateTheme = this.updateTheme.bind(this); this.handleClose = this.handleClose.bind(this); this.handleImportModal = this.handleImportModal.bind(this); this.state = this.getStateFromStores(); this.originalTheme = this.state.theme; } componentDidMount() { UserStore.addChangeListener(this.onChange); if (this.props.activeSection === 'theme') { $(React.findDOMNode(this.refs[this.state.theme])).addClass('active-border'); } $('#user_settings').on('hidden.bs.modal', this.handleClose); } componentDidUpdate() { if (this.props.activeSection === 'theme') { $('.color-btn').removeClass('active-border'); $(React.findDOMNode(this.refs[this.state.theme])).addClass('active-border'); } } componentWillUnmount() { UserStore.removeChangeListener(this.onChange); $('#user_settings').off('hidden.bs.modal', this.handleClose); } getStateFromStores() { const user = UserStore.getCurrentUser(); let theme = null; if ($.isPlainObject(user.theme_props) && !$.isEmptyObject(user.theme_props)) { theme = user.theme_props; } else { theme = $.extend(true, {}, Constants.THEMES.default); } let type = 'premade'; if (theme.type === 'custom') { type = 'custom'; } return {theme, type}; } onChange() { const newState = this.getStateFromStores(); if (!Utils.areStatesEqual(this.state, newState)) { this.setState(newState); } } submitTheme(e) { e.preventDefault(); var user = UserStore.getCurrentUser(); user.theme_props = this.state.theme; Client.updateUser(user, (data) => { AppDispatcher.handleServerAction({ type: ActionTypes.RECIEVED_ME, me: data }); $('#user_settings').off('hidden.bs.modal', this.handleClose); this.props.updateTab('general'); $('.ps-container.modal-body').scrollTop(0); $('.ps-container.modal-body').perfectScrollbar('update'); $('#user_settings').modal('hide'); }, (err) => { var state = this.getStateFromStores(); state.serverError = err; this.setState(state); } ); } updateTheme(theme) { this.setState({theme}); Utils.applyTheme(theme); } updateType(type) { this.setState({type}); } handleClose() { const state = this.getStateFromStores(); state.serverError = null; Utils.applyTheme(state.theme); this.setState(state); $('.ps-container.modal-body').scrollTop(0); $('.ps-container.modal-body').perfectScrollbar('update'); $('#user_settings').modal('hide'); } handleImportModal() { $('#user_settings').modal('hide'); AppDispatcher.handleViewAction({ type: ActionTypes.TOGGLE_IMPORT_THEME_MODAL, value: true }); } render() { var serverError; if (this.state.serverError) { serverError = this.state.serverError; } const displayCustom = this.state.type === 'custom'; let custom; let premade; if (displayCustom) { custom = ( ); } else { premade = ( ); } const themeUI = (

{premade}

{custom}
{serverError} {'Submit'} {'Cancel'}
); return (

{'Appearance Settings'}

{'Appearance Settings'}

{themeUI}
); } } UserSettingsAppearance.defaultProps = { activeSection: '' }; UserSettingsAppearance.propTypes = { activeSection: React.PropTypes.string, updateTab: React.PropTypes.func };