/* Copyright 2015, 2016 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 ReactDOM = require('react-dom'); 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'); var GeminiScrollbar = require('react-gemini-scrollbar'); var Email = require('../../email'); var AddThreepid = require('../../AddThreepid'); module.exports = React.createClass({ displayName: 'UserSettings', propTypes: { version: React.PropTypes.string, onClose: React.PropTypes.func }, getDefaultProps: function() { return { onClose: function() {} }; }, getInitialState: function() { return { avatarUrl: null, threePids: [], clientVersion: version, phase: "UserSettings.LOADING", // LOADING, DISPLAY email_add_pending: false, }; }, componentWillMount: function() { var self = this; this._refreshFromServer(); }, componentDidMount: function() { this.dispatcherRef = dis.register(this.onAction); this._me = MatrixClientPeg.get().credentials.userId; }, componentWillUnmount: function() { dis.unregister(this.dispatcherRef); }, _refreshFromServer: 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", }); }, function(error) { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: "Can't load user settings", description: error.toString() }); }); }, onAction: function(payload) { if (payload.action === "notifier_enabled") { this.forceUpdate(); } }, onAvatarPickerClick: function(ev) { if (this.refs.file_label) { this.refs.file_label.click(); } }, onAvatarSelected: function(ev) { var self = this; var changeAvatar = this.refs.changeAvatar; if (!changeAvatar) { console.error("No ChangeAvatar found to upload image to!"); return; } changeAvatar.onFileSelected(ev).done(function() { // dunno if the avatar changed, re-check it. self._refreshFromServer(); }, function(err) { var errMsg = (typeof err === "string") ? err : (err.error || ""); var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: "Error", description: "Failed to set avatar. " + errMsg }); }); }, onLogoutClicked: function(ev) { var LogoutPrompt = sdk.getComponent('dialogs.LogoutPrompt'); this.logoutModal = Modal.createDialog( LogoutPrompt, {onCancel: this.onLogoutPromptCancel} ); }, onPasswordChangeError: function(err) { var errMsg = err.error || ""; if (err.httpStatus === 403) { errMsg = "Failed to change password. Is your password correct?"; } else if (err.httpStatus) { errMsg += ` (HTTP status ${err.httpStatus})`; } var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: "Error", description: errMsg }); }, onPasswordChanged: function() { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: "Success", description: `Your password was successfully changed. You will not receive push notifications on other devices until you log back in to them.` }); }, onUpgradeClicked: function() { dis.dispatch({ //action: "start_upgrade_registration" action: "start_registration" // temporary (https://github.com/vector-im/vector-web/issues/818) }); }, onLogoutPromptCancel: function() { this.logoutModal.closeDialog(); }, onEnableNotificationsChange: function(event) { UserSettingsStore.setEnableNotifications(event.target.checked); }, onAddThreepidClicked: function(value, shouldSubmit) { if (!shouldSubmit) return; var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); var QuestionDialog = sdk.getComponent("dialogs.QuestionDialog"); var email_address = this.refs.add_threepid_input.value; if (!Email.looksValid(email_address)) { Modal.createDialog(ErrorDialog, { title: "Invalid Email Address", description: "This doesn't appear to be a valid email address", }); return; } this.add_threepid = new AddThreepid(); // we always bind emails when registering, so let's do the // same here. this.add_threepid.addEmailAddress(email_address, true).done(() => { Modal.createDialog(QuestionDialog, { title: "Verification Pending", description: "Please check your email and click on the link it contains. Once this is done, click continue.", button: 'Continue', onFinished: this.onEmailDialogFinished, }); }, (err) => { Modal.createDialog(ErrorDialog, { title: "Unable to add email address", description: err.toString() }); }); ReactDOM.findDOMNode(this.refs.add_threepid_input).blur(); this.setState({email_add_pending: true}); }, onEmailDialogFinished: function(ok) { if (ok) { this.verifyEmailAddress(); } else { this.setState({email_add_pending: false}); } }, verifyEmailAddress: function() { this.add_threepid.checkEmailLinkClicked().done(() => { this.add_threepid = undefined; this.setState({ phase: "UserSettings.LOADING", }); this._refreshFromServer(); this.setState({email_add_pending: false}); }, (err) => { if (err.errcode == 'M_THREEPID_AUTH_FAILED') { var QuestionDialog = sdk.getComponent("dialogs.QuestionDialog"); var message = "Unable to verify email address. " message += "Please check your email and click on the link it contains. Once this is done, click continue." Modal.createDialog(QuestionDialog, { title: "Verification Pending", description: message, button: 'Continue', onFinished: this.onEmailDialogFinished, }); } else { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: "Unable to verify email address", description: err.toString(), }); } }); }, render: function() { var self = this; var Loader = sdk.getComponent("elements.Spinner"); switch (this.state.phase) { case "UserSettings.LOADING": return ( ); case "UserSettings.DISPLAY": break; // quit the switch to return the common state default: throw new Error("Unknown state.phase => " + this.state.phase); } // can only get here if phase is UserSettings.DISPLAY var RoomHeader = sdk.getComponent('rooms.RoomHeader'); var ChangeDisplayName = sdk.getComponent("views.settings.ChangeDisplayName"); var ChangePassword = sdk.getComponent("views.settings.ChangePassword"); var ChangeAvatar = sdk.getComponent('settings.ChangeAvatar'); var Notifications = sdk.getComponent("settings.Notifications"); var EditableText = sdk.getComponent('elements.EditableText'); var avatarUrl = ( this.state.avatarUrl ? MatrixClientPeg.get().mxcUrlToHttp(this.state.avatarUrl) : null ); var threepidsSection = this.state.threepids.map(function(val, pidIndex) { var id = "email-" + val.address; return (
); }); var addThreepidSection; if (this.state.email_add_pending) { addThreepidSection = ; } else { addThreepidSection = (
Add
); } threepidsSection.push(addThreepidSection); var accountJsx; if (MatrixClientPeg.get().isGuest()) { accountJsx = (
Create an account
); } else { accountJsx = ( ); } var notification_area; if (!MatrixClientPeg.get().isGuest()) { notification_area = (

Notifications

); } return (

Profile

{threepidsSection}

Account

Log out
{accountJsx}
{notification_area}

Advanced

Logged in as {this._me}
Version {this.state.clientVersion}
{this.props.version}
); } });