Wire up 'create account' to the SSO button when SSO is used
For https://github.com/vector-im/riot-web/issues/12362
This commit is contained in:
parent
f08d034f84
commit
bcfe1fcac5
1 changed files with 26 additions and 1 deletions
|
@ -151,6 +151,18 @@ export default createReactClass({
|
||||||
return this.state.busy || this.props.busy;
|
return this.state.busy || this.props.busy;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
_isSsoStep: function() {
|
||||||
|
return this._getCurrentFlowStep() === 'm.login.sso' || this._getCurrentFlowStep() === 'm.login.cas';
|
||||||
|
},
|
||||||
|
|
||||||
|
_getSsoUrl: function(kind) {
|
||||||
|
if (kind === 'm.login.cas') {
|
||||||
|
return this._loginLogic.getSsoLoginUrl("cas")
|
||||||
|
} else {
|
||||||
|
return this._loginLogic.getSsoLoginUrl("sso");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
onPasswordLogin: async function(username, phoneCountry, phoneNumber, password) {
|
onPasswordLogin: async function(username, phoneCountry, phoneNumber, password) {
|
||||||
if (!this.state.serverIsAlive) {
|
if (!this.state.serverIsAlive) {
|
||||||
this.setState({busy: true});
|
this.setState({busy: true});
|
||||||
|
@ -339,6 +351,19 @@ export default createReactClass({
|
||||||
this.props.onRegisterClick();
|
this.props.onRegisterClick();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onTryRegisterClick: function(ev) {
|
||||||
|
if (this._isSsoStep()) {
|
||||||
|
// If we're showing SSO it means that registration is also probably disabled,
|
||||||
|
// so intercept the click and instead pretend the user clicked 'Sign in with SSO'.
|
||||||
|
ev.preventDefault();
|
||||||
|
ev.stopPropagation();
|
||||||
|
window.location = this._getSsoUrl(this._getCurrentFlowStep());
|
||||||
|
} else {
|
||||||
|
// Don't intercept - just go through to the register page
|
||||||
|
this.onRegisterClick(ev);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
async onServerDetailsNextPhaseClick() {
|
async onServerDetailsNextPhaseClick() {
|
||||||
this.setState({
|
this.setState({
|
||||||
phase: PHASE_LOGIN,
|
phase: PHASE_LOGIN,
|
||||||
|
@ -652,7 +677,7 @@ export default createReactClass({
|
||||||
{ serverDeadSection }
|
{ serverDeadSection }
|
||||||
{ this.renderServerComponent() }
|
{ this.renderServerComponent() }
|
||||||
{ this.renderLoginComponentForStep() }
|
{ this.renderLoginComponentForStep() }
|
||||||
<a className="mx_AuthBody_changeFlow" onClick={this.onRegisterClick} href="#">
|
<a className="mx_AuthBody_changeFlow" onClick={this.onTryRegisterClick} href="#">
|
||||||
{ _t('Create account') }
|
{ _t('Create account') }
|
||||||
</a>
|
</a>
|
||||||
</AuthBody>
|
</AuthBody>
|
||||||
|
|
Loading…
Reference in a new issue