/* 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 PlatformPeg = require("../../PlatformPeg"); var Modal = require('../../Modal'); var dis = require("../../dispatcher"); var q = require('q'); var package_json = require('../../../package.json'); var UserSettingsStore = require('../../UserSettingsStore'); var GeminiScrollbar = require('react-gemini-scrollbar'); var Email = require('../../email'); var AddThreepid = require('../../AddThreepid'); // if this looks like a release, use the 'version' from package.json; else use // the git sha. const REACT_SDK_VERSION = 'dist' in package_json ? package_json.version : package_json.gitHead || ""; // Enumerate some simple 'flip a bit' UI settings (if any). // 'id' gives the key name in the im.vector.web.settings account data event // 'label' is how we describe it in the UI. const SETTINGS_LABELS = [ /* { id: 'alwaysShowTimestamps', label: 'Always show message timestamps', }, { id: 'showTwelveHourTimestamps', label: 'Show timestamps in 12 hour format (e.g. 2:30pm)', }, { id: 'useCompactLayout', label: 'Use compact timeline layout', }, { id: 'useFixedWidthFont', label: 'Use fixed width font', }, */ ]; // Enumerate the available themes, with a nice human text label. // 'id' gives the key name in the im.vector.web.settings account data event // 'value' is the value for that key in the event // 'label' is how we describe it in the UI. // // XXX: Ideally we would have a theme manifest or something and they'd be nicely // packaged up in a single directory, and/or located at the application layer. // But for now for expedience we just hardcode them here. const THEMES = [ { id: 'theme', label: 'Light theme', value: 'light', }, { id: 'theme', label: 'Dark theme', value: 'dark', } ]; module.exports = React.createClass({ displayName: 'UserSettings', propTypes: { onClose: React.PropTypes.func, // The brand string given when creating email pushers brand: React.PropTypes.string, // True to show the 'labs' section of experimental features enableLabs: React.PropTypes.bool, // true if RightPanel is collapsed collapsedRhs: React.PropTypes.bool, }, getDefaultProps: function() { return { onClose: function() {}, enableLabs: true, }; }, getInitialState: function() { return { avatarUrl: null, threePids: [], phase: "UserSettings.LOADING", // LOADING, DISPLAY email_add_pending: false, vectorVersion: null, rejectingInvites: false, }; }, componentWillMount: function() { this._unmounted = false; if (PlatformPeg.get()) { q().then(() => { return PlatformPeg.get().getAppVersion(); }).done((appVersion) => { if (this._unmounted) return; this.setState({ vectorVersion: appVersion, }); }, (e) => { console.log("Failed to fetch app version", e); }); } // Bulk rejecting invites: // /sync won't have had time to return when UserSettings re-renders from state changes, so getRooms() // will still return rooms with invites. To get around this, add a listener for // membership updates and kick the UI. MatrixClientPeg.get().on("RoomMember.membership", this._onInviteStateChange); dis.dispatch({ action: 'ui_opacity', sideOpacity: 0.3, middleOpacity: 0.3, }); this._refreshFromServer(); var syncedSettings = UserSettingsStore.getSyncedSettings(); if (!syncedSettings.theme) { syncedSettings.theme = 'light'; } this._syncedSettings = syncedSettings; }, componentDidMount: function() { this.dispatcherRef = dis.register(this.onAction); this._me = MatrixClientPeg.get().credentials.userId; }, componentWillUnmount: function() { this._unmounted = true; dis.dispatch({ action: 'ui_opacity', sideOpacity: 1.0, middleOpacity: 1.0, }); dis.unregister(this.dispatcherRef); let cli = MatrixClientPeg.get(); if (cli) { cli.removeListener("RoomMember.membership", this._onInviteStateChange); } }, _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 (MatrixClientPeg.get().isGuest()) { var NeedToRegisterDialog = sdk.getComponent("dialogs.NeedToRegisterDialog"); Modal.createDialog(NeedToRegisterDialog, { title: "Please Register", description: "Guests can't set avatars. Please register.", }); return; } 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); }, 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" }); }, 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) => { this.setState({email_add_pending: false}); Modal.createDialog(ErrorDialog, { title: "Unable to add email address", description: err.message }); }); ReactDOM.findDOMNode(this.refs.add_threepid_input).blur(); this.setState({email_add_pending: true}); }, onRemoveThreepidClicked: function(threepid) { const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog"); Modal.createDialog(QuestionDialog, { title: "Remove Contact Information?", description: "Remove " + threepid.address + "?", button: 'Remove', onFinished: (submit) => { if (submit) { this.setState({ phase: "UserSettings.LOADING", }); MatrixClientPeg.get().deleteThreePid(threepid.medium, threepid.address).then(() => { return this._refreshFromServer(); }).catch((err) => { const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: "Unable to remove contact information", description: err.toString(), }); }).done(); } }, }); }, 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) => { this.setState({email_add_pending: false}); 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(), }); } }); }, _onDeactivateAccountClicked: function() { const DeactivateAccountDialog = sdk.getComponent("dialogs.DeactivateAccountDialog"); Modal.createDialog(DeactivateAccountDialog, {}); }, _onInviteStateChange: function(event, member, oldMembership) { if (member.userId === this._me && oldMembership === "invite") { this.forceUpdate(); } }, _onRejectAllInvitesClicked: function(rooms, ev) { this.setState({ rejectingInvites: true }); // reject the invites let promises = rooms.map((room) => { return MatrixClientPeg.get().leave(room.roomId); }); // purposefully drop errors to the floor: we'll just have a non-zero number on the UI // after trying to reject all the invites. q.allSettled(promises).then(() => { this.setState({ rejectingInvites: false }); }).done(); }, _renderUserInterfaceSettings: function() { var client = MatrixClientPeg.get(); return (

User Interface

{ this._renderUrlPreviewSelector() } { SETTINGS_LABELS.map( this._renderSyncedSetting ) } { THEMES.map( this._renderThemeSelector ) }
); }, _renderUrlPreviewSelector: function() { return
UserSettingsStore.setUrlPreviewsDisabled(e.target.checked) } />
}, _renderSyncedSetting: function(setting) { return
UserSettingsStore.setSyncedSetting(setting.id, e.target.checked) } />
}, _renderThemeSelector: function(setting) { return
{ if (e.target.checked) { UserSettingsStore.setSyncedSetting(setting.id, setting.value) } dis.dispatch({ action: 'set_theme', value: setting.value, }); } } />
}, _renderCryptoInfo: function() { const client = MatrixClientPeg.get(); const deviceId = client.deviceId; const identityKey = client.getDeviceEd25519Key() || ""; return (

Cryptography

  • {deviceId}
  • {identityKey}
); }, _renderDevicesPanel: function() { var DevicesPanel = sdk.getComponent('settings.DevicesPanel'); return (

Devices

); }, _renderLabs: function () { // default to enabled if undefined if (this.props.enableLabs === false) return null; let features = UserSettingsStore.LABS_FEATURES.map(feature => (
{ if (MatrixClientPeg.get().isGuest()) { e.target.checked = false; var NeedToRegisterDialog = sdk.getComponent("dialogs.NeedToRegisterDialog"); Modal.createDialog(NeedToRegisterDialog, { title: "Please Register", description: "Guests can't use labs features. Please register.", }); return; } UserSettingsStore.setFeatureEnabled(feature.id, e.target.checked); this.forceUpdate(); }}/>
)); return (

Labs

These are experimental features that may break in unexpected ways. Use with caution.

{features}
) }, _renderDeactivateAccount: function() { // We can't deactivate a guest account. if (MatrixClientPeg.get().isGuest()) return null; return

Deactivate Account

; }, _renderBulkOptions: function() { let invitedRooms = MatrixClientPeg.get().getRooms().filter((r) => { return r.hasMembershipState(this._me, "invite"); }); if (invitedRooms.length === 0) { return null; } let Spinner = sdk.getComponent("elements.Spinner"); let reject = ; if (!this.state.rejectingInvites) { // bind() the invited rooms so any new invites that may come in as this button is clicked // don't inadvertently get rejected as well. reject = ( ); } return

Bulk Options

{reject}
; }, nameForMedium: function(medium) { if (medium == 'msisdn') return 'Phone'; return medium[0].toUpperCase() + medium.slice(1); }, render: function() { 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 SimpleRoomHeader = sdk.getComponent('rooms.SimpleRoomHeader'); 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((val, pidIndex) => { const id = "3pid-" + val.address; return (
Remove
); }); var addThreepidSection; if (this.state.email_add_pending) { addThreepidSection = ; } else if (!MatrixClientPeg.get().isGuest()) { addThreepidSection = (
Add
); } threepidsSection.push(addThreepidSection); var accountJsx; if (MatrixClientPeg.get().isGuest()) { accountJsx = (
Create an account
); } else { accountJsx = ( ); } var notification_area; if (!MatrixClientPeg.get().isGuest() && this.state.threepids !== undefined) { notification_area = (

Notifications

); } var olmVersion = MatrixClientPeg.get().olmVersion; // If the olmVersion is not defined then either crypto is disabled, or // we are using a version old version of olm. We assume the former. var olmVersionString = ""; if (olmVersion !== undefined) { olmVersionString = olmVersion[0] + "." + olmVersion[1] + "." + olmVersion[2]; } return (

Profile

{threepidsSection}

Account

Sign out
{accountJsx}
{notification_area} {this._renderUserInterfaceSettings()} {this._renderLabs()} {this._renderDevicesPanel()} {this._renderCryptoInfo()} {this._renderBulkOptions()}

Advanced

Logged in as {this._me}
Homeserver is { MatrixClientPeg.get().getHomeserverUrl() }
Identity Server is { MatrixClientPeg.get().getIdentityServerUrl() }
matrix-react-sdk version: {REACT_SDK_VERSION}
vector-web version: {this.state.vectorVersion !== null ? this.state.vectorVersion : 'unknown'}
olm version: {olmVersionString}
{this._renderDeactivateAccount()}
); } });