2018-04-12 01:58:04 +03:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
2018-06-18 20:14:48 +03:00
|
|
|
Copyright 2018 New Vector Ltd
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
2019-09-06 20:37:43 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
2019-12-20 04:19:56 +03:00
|
|
|
import * as sdk from '../../../index';
|
2018-04-13 02:43:44 +03:00
|
|
|
import Modal from '../../../Modal';
|
|
|
|
import { _t } from '../../../languageHandler';
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2019-09-06 20:37:43 +03:00
|
|
|
export default createReactClass({
|
2018-04-12 01:58:04 +03:00
|
|
|
onUpdateClicked: function() {
|
|
|
|
const SetPasswordDialog = sdk.getComponent('dialogs.SetPasswordDialog');
|
2018-06-18 20:14:48 +03:00
|
|
|
Modal.createTrackedDialog('Set Password Dialog', 'Password Nag Bar', SetPasswordDialog);
|
2018-04-12 01:58:04 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
const toolbarClasses = "mx_MatrixToolbar mx_MatrixToolbar_clickable";
|
|
|
|
return (
|
|
|
|
<div className={toolbarClasses} onClick={this.onUpdateClicked}>
|
|
|
|
<img className="mx_MatrixToolbar_warning"
|
2019-01-11 04:37:28 +03:00
|
|
|
src={require("../../../../res/img/warning.svg")}
|
2018-04-12 01:58:04 +03:00
|
|
|
width="24"
|
|
|
|
height="23"
|
2018-10-02 14:55:24 +03:00
|
|
|
alt=""
|
2018-04-12 01:58:04 +03:00
|
|
|
/>
|
|
|
|
<div className="mx_MatrixToolbar_content">
|
|
|
|
{ _t(
|
|
|
|
"To return to your account in future you need to <u>set a password</u>",
|
|
|
|
{},
|
|
|
|
{ 'u': (sub) => <u>{ sub }</u> },
|
|
|
|
) }
|
|
|
|
</div>
|
|
|
|
<button className="mx_MatrixToolbar_action">
|
|
|
|
{ _t("Set Password") }
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|