mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 05:41:31 +03:00
eac50aa800
This takes out the old user and room settings, replacing the paths with the new dialog editions. The labs setting has been removed in order to support this change. In addition to removing the old components outright, some older components which were only used by the settings pages have been removed. The exception is the ColorSettings component as it has a high chance of sticking around in the future. Styles that were shared by the settings components have been broken out to dedicated sections, making it easier to remove the old styles entirely. Some stability testing of the app has been performed to ensure the app still works, however given the scope of this change there is a possibility of some broken functionality.
110 lines
3.3 KiB
JavaScript
110 lines
3.3 KiB
JavaScript
/*
|
|
Copyright 2016 OpenMarket Ltd
|
|
Copyright 2017 Vector Creations 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.
|
|
*/
|
|
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import sdk from '../../../index';
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
import AccessibleButton from '../elements/AccessibleButton';
|
|
|
|
export default React.createClass({
|
|
displayName: 'InteractiveAuthDialog',
|
|
|
|
propTypes: {
|
|
// matrix client to use for UI auth requests
|
|
matrixClient: PropTypes.object.isRequired,
|
|
|
|
// response from initial request. If not supplied, will do a request on
|
|
// mount.
|
|
authData: PropTypes.shape({
|
|
flows: PropTypes.array,
|
|
params: PropTypes.object,
|
|
session: PropTypes.string,
|
|
}),
|
|
|
|
// callback
|
|
makeRequest: PropTypes.func.isRequired,
|
|
|
|
onFinished: PropTypes.func.isRequired,
|
|
|
|
title: PropTypes.string,
|
|
},
|
|
|
|
getInitialState: function() {
|
|
return {
|
|
authError: null,
|
|
};
|
|
},
|
|
|
|
_onAuthFinished: function(success, result) {
|
|
if (success) {
|
|
this.props.onFinished(true, result);
|
|
} else {
|
|
this.setState({
|
|
authError: result,
|
|
});
|
|
}
|
|
},
|
|
|
|
_onDismissClick: function() {
|
|
this.props.onFinished(false);
|
|
},
|
|
|
|
render: function() {
|
|
const InteractiveAuth = sdk.getComponent("structures.InteractiveAuth");
|
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
|
|
|
let content;
|
|
if (this.state.authError) {
|
|
content = (
|
|
<div id='mx_Dialog_content'>
|
|
<div role="alert">{ this.state.authError.message || this.state.authError.toString() }</div>
|
|
<br />
|
|
<AccessibleButton onClick={this._onDismissClick}
|
|
className="mx_GeneralButton"
|
|
autoFocus="true"
|
|
>
|
|
{ _t("Dismiss") }
|
|
</AccessibleButton>
|
|
</div>
|
|
);
|
|
} else {
|
|
content = (
|
|
<div id='mx_Dialog_content'>
|
|
<InteractiveAuth ref={this._collectInteractiveAuth}
|
|
matrixClient={this.props.matrixClient}
|
|
authData={this.props.authData}
|
|
makeRequest={this.props.makeRequest}
|
|
onAuthFinished={this._onAuthFinished}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<BaseDialog className="mx_InteractiveAuthDialog"
|
|
onFinished={this.props.onFinished}
|
|
title={this.state.authError ? 'Error' : (this.props.title || _t('Authentication'))}
|
|
contentId='mx_Dialog_content'
|
|
>
|
|
{ content }
|
|
</BaseDialog>
|
|
);
|
|
},
|
|
});
|