/* Copyright 2015 OpenMarket Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ var React = require('react'); var sdk = require('../../index'); var MatrixClientPeg = require("../../MatrixClientPeg"); var Modal = require('../../Modal'); var dis = require("../../dispatcher"); var q = require('q'); var version = require('../../../package.json').version; var UserSettingsStore = require('../../UserSettingsStore'); module.exports = React.createClass({ displayName: 'UserSettings', propTypes: { onClose: React.PropTypes.func }, getDefaultProps: function() { return { onClose: function() {} }; }, getInitialState: function() { return { avatarUrl: null, threePids: [], clientVersion: version, phase: "UserSettings.LOADING", // LOADING, DISPLAY }; }, componentWillMount: function() { var self = this; q.all([ UserSettingsStore.loadProfileInfo(), UserSettingsStore.loadThreePids() ]).done(function(resps) { self.setState({ avatarUrl: resps[0].avatar_url, threepids: resps[1].threepids, phase: "UserSettings.DISPLAY", }); // keep a copy of the original state in order to track changes self.setState({ originalState: self.state }); }, function(error) { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: "Can't load user settings", description: error.toString() }); }); }, componentDidMount: function() { this.dispatcherRef = dis.register(this.onAction); this._me = MatrixClientPeg.get().credentials.userId; }, componentWillUnmount: function() { dis.unregister(this.dispatcherRef); }, /* onSaveClicked: function(ev) { // XXX unused var self = this; var savePromises = []; // XXX: this is managed in ChangeAvatar.js, although could be moved out here in order // to allow for the change to be staged alongside the rest of the form. // // if (this.state.originalState.avatarUrl !== this.state.avatarUrl) { // savePromises.push( UserSettingsStore.saveAvatarUrl(this.state.avatarUrl) ); // } if (this.state.originalState.threepids.length !== this.state.threepids.length || this.state.originalState.threepids.every((element, index) => { return element === this.state.threepids[index]; })) { savePromises.push( UserSettingsStore.saveThreePids(this.state.threepids) ); } self.setState({ phase: "UserSettings.SAVING", }); q.all(savePromises).done(function(resps) { self.setState({ phase: "UserSettings.DISPLAY", }); self.props.onClose(); }, function(error) { self.setState({ phase: "UserSettings.DISPLAY", }); var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: "Can't save user settings", description: error.toString() }); }); }, */ onAction: function(payload) { if (payload.action === "notifier_enabled") { this.setState({ enableNotifications : UserSettingsStore.getEnableNotifications() }); } }, editAvatar: function() { var url = MatrixClientPeg.get().mxcUrlToHttp(this.state.avatarUrl); var ChangeAvatar = sdk.getComponent('settings.ChangeAvatar'); var avatarDialog = (