mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
Login: Add way to change HS from SSO Homeserver
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
95e7e366ed
commit
7ddac8d475
3 changed files with 72 additions and 33 deletions
|
@ -567,6 +567,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_renderSsoStep: function(url) {
|
_renderSsoStep: function(url) {
|
||||||
|
const SignInToText = sdk.getComponent('views.auth.SignInToText');
|
||||||
// XXX: This link does *not* have a target="_blank" because single sign-on relies on
|
// XXX: This link does *not* have a target="_blank" because single sign-on relies on
|
||||||
// redirecting the user back to a URI once they're logged in. On the web, this means
|
// redirecting the user back to a URI once they're logged in. On the web, this means
|
||||||
// we use the same window and redirect back to riot. On electron, this actually
|
// we use the same window and redirect back to riot. On electron, this actually
|
||||||
|
@ -575,9 +576,12 @@ module.exports = React.createClass({
|
||||||
// If this bug gets fixed, it will break SSO since it will open the SSO page in the
|
// If this bug gets fixed, it will break SSO since it will open the SSO page in the
|
||||||
// user's browser, let them log into their SSO provider, then redirect their browser
|
// user's browser, let them log into their SSO provider, then redirect their browser
|
||||||
// to vector://vector which, of course, will not work.
|
// to vector://vector which, of course, will not work.
|
||||||
return (
|
return <div>
|
||||||
|
<SignInToText serverConfig={this.props.serverConfig}
|
||||||
|
onEditServerDetailsClick={this.onEditServerDetailsClick} />
|
||||||
|
|
||||||
<a href={url} className="mx_Login_sso_link mx_Login_submit">{ _t('Sign in with single sign-on') }</a>
|
<a href={url} className="mx_Login_sso_link mx_Login_submit">{ _t('Sign in with single sign-on') }</a>
|
||||||
);
|
</div>;
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
|
|
|
@ -31,6 +31,7 @@ export default class PasswordLogin extends React.Component {
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
onSubmit: PropTypes.func.isRequired, // fn(username, password)
|
onSubmit: PropTypes.func.isRequired, // fn(username, password)
|
||||||
onError: PropTypes.func,
|
onError: PropTypes.func,
|
||||||
|
onEditServerDetailsClick: PropTypes.func,
|
||||||
onForgotPasswordClick: PropTypes.func, // fn()
|
onForgotPasswordClick: PropTypes.func, // fn()
|
||||||
initialUsername: PropTypes.string,
|
initialUsername: PropTypes.string,
|
||||||
initialPhoneCountry: PropTypes.string,
|
initialPhoneCountry: PropTypes.string,
|
||||||
|
@ -257,6 +258,7 @@ export default class PasswordLogin extends React.Component {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const Field = sdk.getComponent('elements.Field');
|
const Field = sdk.getComponent('elements.Field');
|
||||||
|
const SignInToText = sdk.getComponent('views.auth.SignInToText');
|
||||||
|
|
||||||
let forgotPasswordJsx;
|
let forgotPasswordJsx;
|
||||||
|
|
||||||
|
@ -273,33 +275,6 @@ export default class PasswordLogin extends React.Component {
|
||||||
</span>;
|
</span>;
|
||||||
}
|
}
|
||||||
|
|
||||||
let signInToText = _t('Sign in to your Matrix account on %(serverName)s', {
|
|
||||||
serverName: this.props.serverConfig.hsName,
|
|
||||||
});
|
|
||||||
if (this.props.serverConfig.hsNameIsDifferent) {
|
|
||||||
const TextWithTooltip = sdk.getComponent("elements.TextWithTooltip");
|
|
||||||
|
|
||||||
signInToText = _t('Sign in to your Matrix account on <underlinedServerName />', {}, {
|
|
||||||
'underlinedServerName': () => {
|
|
||||||
return <TextWithTooltip
|
|
||||||
class="mx_Login_underlinedServerName"
|
|
||||||
tooltip={this.props.serverConfig.hsUrl}
|
|
||||||
>
|
|
||||||
{this.props.serverConfig.hsName}
|
|
||||||
</TextWithTooltip>;
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
let editLink = null;
|
|
||||||
if (this.props.onEditServerDetailsClick) {
|
|
||||||
editLink = <a className="mx_AuthBody_editServerDetails"
|
|
||||||
href="#" onClick={this.props.onEditServerDetailsClick}
|
|
||||||
>
|
|
||||||
{_t('Change')}
|
|
||||||
</a>;
|
|
||||||
}
|
|
||||||
|
|
||||||
const pwFieldClass = classNames({
|
const pwFieldClass = classNames({
|
||||||
error: this.props.loginIncorrect && !this.isLoginEmpty(), // only error password if error isn't top field
|
error: this.props.loginIncorrect && !this.isLoginEmpty(), // only error password if error isn't top field
|
||||||
});
|
});
|
||||||
|
@ -342,10 +317,8 @@ export default class PasswordLogin extends React.Component {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h3>
|
<SignInToText serverConfig={this.props.serverConfig}
|
||||||
{signInToText}
|
onEditServerDetailsClick={this.props.onEditServerDetailsClick} />
|
||||||
{editLink}
|
|
||||||
</h3>
|
|
||||||
<form onSubmit={this.onSubmitForm}>
|
<form onSubmit={this.onSubmitForm}>
|
||||||
{loginType}
|
{loginType}
|
||||||
{loginField}
|
{loginField}
|
||||||
|
|
62
src/components/views/auth/SignInToText.js
Normal file
62
src/components/views/auth/SignInToText.js
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
/*
|
||||||
|
Copyright 2019 New Vector 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 {_t} from "../../../languageHandler";
|
||||||
|
import sdk from "../../../index";
|
||||||
|
import PropTypes from "prop-types";
|
||||||
|
import {ValidatedServerConfig} from "../../../utils/AutoDiscoveryUtils";
|
||||||
|
|
||||||
|
export default class SignInToText extends React.PureComponent {
|
||||||
|
static propTypes = {
|
||||||
|
serverConfig: PropTypes.instanceOf(ValidatedServerConfig).isRequired,
|
||||||
|
onEditServerDetailsClick: PropTypes.func,
|
||||||
|
};
|
||||||
|
|
||||||
|
render() {
|
||||||
|
let signInToText = _t('Sign in to your Matrix account on %(serverName)s', {
|
||||||
|
serverName: this.props.serverConfig.hsName,
|
||||||
|
});
|
||||||
|
if (this.props.serverConfig.hsNameIsDifferent) {
|
||||||
|
const TextWithTooltip = sdk.getComponent("elements.TextWithTooltip");
|
||||||
|
|
||||||
|
signInToText = _t('Sign in to your Matrix account on <underlinedServerName />', {}, {
|
||||||
|
'underlinedServerName': () => {
|
||||||
|
return <TextWithTooltip
|
||||||
|
class="mx_Login_underlinedServerName"
|
||||||
|
tooltip={this.props.serverConfig.hsUrl}
|
||||||
|
>
|
||||||
|
{this.props.serverConfig.hsName}
|
||||||
|
</TextWithTooltip>;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
let editLink = null;
|
||||||
|
if (this.props.onEditServerDetailsClick) {
|
||||||
|
editLink = <a className="mx_AuthBody_editServerDetails"
|
||||||
|
href="#" onClick={this.props.onEditServerDetailsClick}
|
||||||
|
>
|
||||||
|
{_t('Change')}
|
||||||
|
</a>;
|
||||||
|
}
|
||||||
|
|
||||||
|
return <h3>
|
||||||
|
{signInToText}
|
||||||
|
{editLink}
|
||||||
|
</h3>;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue