Into a component that does Interactive Auth and a dialog that wraps it, so we can do interactive auth not necessarily in a dialog. As a side effect: * Put the buttons for each auth stage in the stage itself. Some stages don't have submit buttons (and it's very possible other stages may have other buttons entirely, like 'resend') so it makes more sense for the buttons to live in the stage components themselves. Plus it saves the slightly evil calling-functions-on-react-children thing we were doing (and indeed extending that to show the submit button at all). * Give all BaseDialogs a cross in the top right to cancel. They were all dismissable by clicking outside or pressing esc, so this adds a more visually obvious way of dismissing them. Plus, it means our InteractiveAuthDialog can have a way of canceling the whole operation separate from buttons for the individual stages.
74 lines
2.1 KiB
JavaScript
74 lines
2.1 KiB
JavaScript
/*
|
|
Copyright 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.
|
|
*/
|
|
|
|
import Matrix from 'matrix-js-sdk';
|
|
|
|
import React from 'react';
|
|
|
|
import sdk from '../../../index';
|
|
|
|
import AccessibleButton from '../elements/AccessibleButton';
|
|
|
|
export default React.createClass({
|
|
displayName: 'InteractiveAuthDialog',
|
|
|
|
propTypes: {
|
|
// response from initial request. If not supplied, will do a request on
|
|
// mount.
|
|
authData: React.PropTypes.shape({
|
|
flows: React.PropTypes.array,
|
|
params: React.PropTypes.object,
|
|
session: React.PropTypes.string,
|
|
}),
|
|
|
|
// callback
|
|
makeRequest: React.PropTypes.func.isRequired,
|
|
|
|
onFinished: React.PropTypes.func.isRequired,
|
|
|
|
title: React.PropTypes.string,
|
|
},
|
|
|
|
getDefaultProps: function() {
|
|
return {
|
|
title: "Authentication",
|
|
};
|
|
},
|
|
|
|
_onCancelClick: function() {
|
|
this.props.onFinished(false);
|
|
},
|
|
|
|
render: function() {
|
|
const InteractiveAuth = sdk.getComponent("structures.InteractiveAuth");
|
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
|
|
|
return (
|
|
<BaseDialog className="mx_InteractiveAuthDialog"
|
|
onFinished={this.props.onFinished}
|
|
title={this.props.title}
|
|
>
|
|
<div>
|
|
<InteractiveAuth ref={this._collectInteractiveAuth}
|
|
authData={this.props.authData}
|
|
makeRequest={this.props.makeRequest}
|
|
onFinished={this.props.onFinished}
|
|
/>
|
|
</div>
|
|
</BaseDialog>
|
|
);
|
|
},
|
|
});
|