element-web/src/skins/vector/views/organisms/UserSettings.js

126 lines
5.1 KiB
JavaScript
Raw Normal View History

2015-07-16 09:37:58 +01:00
/*
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.
*/
'use strict';
var React = require('react');
2015-09-22 18:49:04 +01:00
var sdk = require('matrix-react-sdk')
2015-09-22 19:09:23 +01:00
var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg');
2015-07-16 09:37:58 +01:00
2015-09-22 18:17:19 +01:00
var UserSettingsController = require('matrix-react-sdk/lib/controllers/organisms/UserSettings')
2015-07-16 09:37:58 +01:00
var Loader = require("react-loader");
2015-09-22 19:09:23 +01:00
var Modal = require('matrix-react-sdk/lib/Modal');
2015-07-16 09:37:58 +01:00
module.exports = React.createClass({
displayName: 'UserSettings',
mixins: [UserSettingsController],
editAvatar: function() {
var url = MatrixClientPeg.get().mxcUrlToHttp(this.state.avatarUrl);
2015-09-22 18:49:04 +01:00
var ChangeAvatar = sdk.getComponent('molecules.ChangeAvatar');
var avatarDialog = (
<div>
<ChangeAvatar initialAvatarUrl={url} />
<div className="mx_Dialog_buttons">
<button onClick={this.onAvatarDialogCancel}>Cancel</button>
</div>
</div>
);
this.avatarDialog = Modal.createDialogWithElement(avatarDialog);
2015-07-16 09:37:58 +01:00
},
addEmail: function() {
},
editDisplayName: function() {
this.refs.displayname.edit();
},
changePassword: function() {
2015-09-28 14:48:07 +01:00
var ChangePassword = sdk.getComponent('molecules.ChangePassword');
2015-07-16 09:37:58 +01:00
Modal.createDialog(ChangePassword);
},
2015-07-19 20:11:57 -04:00
onLogoutClicked: function(ev) {
2015-09-22 18:49:04 +01:00
var LogoutPrompt = sdk.getComponent('organisms.LogoutPrompt');
2015-07-19 20:11:57 -04:00
this.logoutModal = Modal.createDialog(LogoutPrompt, {onCancel: this.onLogoutPromptCancel});
},
onLogoutPromptCancel: function() {
this.logoutModal.closeDialog();
},
onAvatarDialogCancel: function() {
this.avatarDialog.close();
},
2015-07-16 09:37:58 +01:00
render: function() {
switch (this.state.phase) {
case this.Phases.Loading:
return <Loader />
case this.Phases.Display:
var ChangeDisplayName = sdk.getComponent('molecules.ChangeDisplayName');
2015-09-28 14:48:07 +01:00
var EnableNotificationsButton = sdk.getComponent('atoms.EnableNotificationsButton');
2015-07-16 09:37:58 +01:00
return (
2015-07-16 10:53:51 +01:00
<div className="mx_UserSettings">
2015-07-16 09:37:58 +01:00
<div className="mx_UserSettings_User">
<h1>User Settings</h1>
<hr/>
<div className="mx_UserSettings_User_Inner">
<div className="mx_UserSettings_Avatar">
<div className="mx_UserSettings_Avatar_Text">Profile Photo</div>
<div className="mx_UserSettings_Avatar_Edit" onClick={this.editAvatar}>Edit</div>
</div>
<div className="mx_UserSettings_DisplayName">
<ChangeDisplayName ref="displayname" />
2015-07-16 09:37:58 +01:00
<div className="mx_UserSettings_DisplayName_Edit" onClick={this.editDisplayName}>Edit</div>
</div>
<div className="mx_UserSettings_3pids">
{this.state.threepids.map(function(val) {
return <div key={val.address}>{val.address}</div>;
2015-07-16 09:37:58 +01:00
})}
</div>
<div className="mx_UserSettings_Add3pid" onClick={this.addEmail}>Add email</div>
</div>
</div>
<div className="mx_UserSettings_Global">
<h1>Global Settings</h1>
<hr/>
<div className="mx_UserSettings_Global_Inner">
<div className="mx_UserSettings_ChangePassword" onClick={this.changePassword}>
Change Password
</div>
<div className="mx_UserSettings_ClientVersion">
Version {this.state.clientVersion}
</div>
2015-07-21 14:45:24 +01:00
<div className="mx_UserSettings_EnableNotifications">
<EnableNotificationsButton />
</div>
2015-07-19 20:11:57 -04:00
<div className="mx_UserSettings_Logout">
<button onClick={this.onLogoutClicked}>Sign Out</button>
</div>
2015-07-16 09:37:58 +01:00
</div>
</div>
</div>
);
}
}
});