This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 827
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3299 from matrix-org/t3chguy/fix_registrationForm…
…_defaultValue_Field RegistrationForm: the Fields are controlled, fix default values
- Loading branch information
Showing
1 changed file
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
Copyright 2015, 2016 OpenMarket Ltd | ||
Copyright 2017 Vector Creations Ltd | ||
Copyright 2018, 2019 New Vector Ltd | ||
Copyright 2019 Michael Telatynski <[email protected]> | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
|
@@ -69,10 +70,10 @@ module.exports = React.createClass({ | |
fieldValid: {}, | ||
// The ISO2 country code selected in the phone number entry | ||
phoneCountry: this.props.defaultPhoneCountry, | ||
username: "", | ||
email: "", | ||
phoneNumber: "", | ||
password: "", | ||
username: this.props.defaultUsername || "", | ||
email: this.props.defaultEmail || "", | ||
phoneNumber: this.props.defaultPhoneNumber || "", | ||
password: this.props.defaultPassword || "", | ||
passwordConfirm: "", | ||
passwordComplexity: null, | ||
passwordSafe: false, | ||
|
@@ -90,7 +91,7 @@ module.exports = React.createClass({ | |
} | ||
|
||
const self = this; | ||
if (this.state.email == '') { | ||
if (this.state.email === '') { | ||
const haveIs = Boolean(this.props.serverConfig.isUrl); | ||
|
||
let desc; | ||
|
@@ -455,7 +456,6 @@ module.exports = React.createClass({ | |
ref={field => this[FIELD_EMAIL] = field} | ||
type="text" | ||
label={emailPlaceholder} | ||
defaultValue={this.props.defaultEmail} | ||
value={this.state.email} | ||
onChange={this.onEmailChange} | ||
onValidate={this.onEmailValidate} | ||
|
@@ -469,7 +469,6 @@ module.exports = React.createClass({ | |
ref={field => this[FIELD_PASSWORD] = field} | ||
type="password" | ||
label={_t("Password")} | ||
defaultValue={this.props.defaultPassword} | ||
value={this.state.password} | ||
onChange={this.onPasswordChange} | ||
onValidate={this.onPasswordValidate} | ||
|
@@ -483,7 +482,6 @@ module.exports = React.createClass({ | |
ref={field => this[FIELD_PASSWORD_CONFIRM] = field} | ||
type="password" | ||
label={_t("Confirm")} | ||
defaultValue={this.props.defaultPassword} | ||
value={this.state.passwordConfirm} | ||
onChange={this.onPasswordConfirmChange} | ||
onValidate={this.onPasswordConfirmValidate} | ||
|
@@ -512,7 +510,6 @@ module.exports = React.createClass({ | |
ref={field => this[FIELD_PHONE_NUMBER] = field} | ||
type="text" | ||
label={phoneLabel} | ||
defaultValue={this.props.defaultPhoneNumber} | ||
value={this.state.phoneNumber} | ||
prefix={phoneCountry} | ||
onChange={this.onPhoneNumberChange} | ||
|
@@ -528,7 +525,6 @@ module.exports = React.createClass({ | |
type="text" | ||
autoFocus={true} | ||
label={_t("Username")} | ||
defaultValue={this.props.defaultUsername} | ||
value={this.state.username} | ||
onChange={this.onUsernameChange} | ||
onValidate={this.onUsernameValidate} | ||
|