2019-12-07 16:58:52 +05:30
import React from 'react' ;
2017-12-31 03:08:54 +05:30
import { connect } from 'react-redux' ;
2019-11-11 14:10:05 +05:30
import { FormattedMessage as Message } from 'react-intl' ;
2017-05-26 00:41:57 +05:30
import { Link } from 'react-router-dom' ;
2019-12-30 12:59:39 +05:30
import { Helmet } from 'react-helmet-async' ;
2019-12-08 00:32:00 +05:30
import { ChangeLanguageLink } from 'app/components/languageSwitcher' ;
import { RelativeTime } from 'app/components/ui' ;
import { User } from 'app/components/user' ;
import RulesPage from 'app/pages/rules/RulesPage' ;
import { RootState } from 'app/reducers' ;
2019-11-11 14:10:05 +05:30
2016-03-17 11:31:11 +05:30
import ProfileField from './ProfileField' ;
import styles from './profile.scss' ;
2016-04-17 15:05:04 +05:30
import profileForm from './profileForm.scss' ;
2019-06-30 19:02:50 +05:30
type Props = {
2020-05-24 04:38:24 +05:30
user : User ;
interfaceLocale : string ;
2019-06-30 19:02:50 +05:30
} ;
2019-12-29 17:27:44 +05:30
class Profile extends React . PureComponent < Props > {
2020-05-24 04:38:24 +05:30
UUID : HTMLElement | null ;
render() {
const { user , interfaceLocale } = this . props ;
return (
< div data - testid = "profile-index" >
2020-06-04 22:11:27 +05:30
< Message key = "accountPreferencesTitle" defaultMessage = "Ely.by account preferences" >
2020-05-24 04:38:24 +05:30
{ ( pageTitle : string ) = > (
< h2 className = { styles . indexTitle } >
< Helmet title = { pageTitle } / >
{ pageTitle }
< / h2 >
) }
< / Message >
< div className = { styles . indexContent } >
< div className = { styles . descriptionColumn } >
< div className = { styles . indexDescription } >
2020-06-04 22:11:27 +05:30
< Message
key = "accountDescription"
defaultMessage = "Ely.by account allows you to get access to many Minecraft resources. Please, take care of your account safety. Use secure password and change it regularly."
/ >
2020-05-24 04:38:24 +05:30
< / div >
< / div >
< div className = { styles . formColumn } >
< div className = { profileForm . form } >
< div className = { styles . item } >
< h3 className = { profileForm . title } >
2020-06-04 22:11:27 +05:30
< Message key = "personalData" defaultMessage = "Personal data" / >
2020-05-24 04:38:24 +05:30
< / h3 >
< p className = { profileForm . description } >
2020-06-04 22:11:27 +05:30
< Message
key = "preferencesDescription"
defaultMessage = "Here you can change the key preferences of your account. Please note that all actions must be confirmed by entering a password."
/ >
2020-05-24 04:38:24 +05:30
< / p >
< / div >
< ProfileField
link = "/profile/change-username"
2020-06-04 22:11:27 +05:30
label = { < Message key = "nickname" defaultMessage = "Nickname:" / > }
2020-05-24 04:38:24 +05:30
value = { user . username }
warningMessage = {
user . hasMojangUsernameCollision ? (
< Message
2020-06-04 22:11:27 +05:30
key = "mojangPriorityWarning"
defaultMessage = "A Mojang account with the same nickname was found. According to {rules}, account owner has the right to demand the restoration of control over nickname."
2020-05-24 04:38:24 +05:30
values = { {
rules : (
< Link
to = { {
pathname : '/rules' ,
hash : ` # ${ RulesPage . getRuleHash ( 1 , 4 ) } ` ,
} }
>
2020-06-04 22:11:27 +05:30
< Message key = "projectRules" defaultMessage = "project rules" / >
2020-05-24 04:38:24 +05:30
< / Link >
) ,
} }
/ >
) : (
''
)
}
/ >
< ProfileField
link = "/profile/change-email"
2020-06-04 22:11:27 +05:30
label = { < Message key = "email" defaultMessage = "E‑ mail:" / > }
2020-05-24 04:38:24 +05:30
value = { user . email }
/ >
< ProfileField
link = "/profile/change-password"
2020-06-04 22:11:27 +05:30
label = { < Message key = "password" defaultMessage = "Password:" / > }
2020-05-24 04:38:24 +05:30
value = {
< Message
2020-06-04 22:11:27 +05:30
key = "changedAt"
defaultMessage = "Changed {at}"
2020-05-24 04:38:24 +05:30
values = { {
at : < RelativeTime timestamp = { user . passwordChangedAt * 1000 } / > ,
} }
/ >
}
/ >
< ProfileField
2020-06-04 22:11:27 +05:30
label = { < Message key = "siteLanguage" defaultMessage = "Site language:" / > }
2020-05-24 04:38:24 +05:30
value = { < ChangeLanguageLink / > }
warningMessage = {
user . lang === interfaceLocale ? (
''
) : (
< Message
2020-06-04 22:11:27 +05:30
key = "languageIsUnavailableWarning"
defaultMessage = {
'The locale "{locale}" you\'ve used earlier isn\'t currently translated enough. If you want to continue using the selected language, please {participateInTheTranslation} of the project.'
}
2020-05-24 04:38:24 +05:30
values = { {
locale : user.lang ,
participateInTheTranslation : (
< a href = "http://ely.by/translate" target = "_blank" >
2020-06-04 22:11:27 +05:30
< Message
key = "participateInTheTranslation"
defaultMessage = "participate in the translation"
/ >
2020-05-24 04:38:24 +05:30
< / a >
) ,
} }
/ >
)
}
2016-04-17 15:05:04 +05:30
/ >
2020-05-24 04:38:24 +05:30
< ProfileField
link = "/profile/mfa"
2020-06-04 22:11:27 +05:30
label = { < Message key = "twoFactorAuth" defaultMessage = "Two‑ factor auth:" / > }
2020-05-24 04:38:24 +05:30
value = {
user . isOtpEnabled ? (
2020-06-04 22:11:27 +05:30
< Message key = "enabled" defaultMessage = "Enabled" / >
2020-05-24 04:38:24 +05:30
) : (
2020-06-04 22:11:27 +05:30
< Message key = "disabled" defaultMessage = "Disabled" / >
2020-05-24 04:38:24 +05:30
)
}
/ >
< ProfileField
2020-06-04 22:11:27 +05:30
label = { < Message key = "uuid" defaultMessage = "UUID:" / > }
2020-05-24 04:38:24 +05:30
value = {
< span
className = { styles . uuid }
ref = { this . setUUID . bind ( this ) }
onMouseOver = { this . handleUUIDMouseOver . bind ( this ) }
>
{ user . uuid }
< / span >
}
/ >
< / div >
< / div >
< / div >
2016-03-17 11:31:11 +05:30
< / div >
2020-05-24 04:38:24 +05:30
) ;
2016-03-17 11:31:11 +05:30
}
2016-05-26 20:51:52 +05:30
2020-05-24 04:38:24 +05:30
handleUUIDMouseOver() {
if ( ! this . UUID ) {
return ;
}
const el = this . UUID ;
2016-05-26 20:51:52 +05:30
2020-05-24 04:38:24 +05:30
try {
const selection = window . getSelection ( ) ;
2019-12-07 16:58:52 +05:30
2020-05-24 04:38:24 +05:30
if ( ! selection ) {
return ;
}
2019-12-07 16:58:52 +05:30
2020-05-24 04:38:24 +05:30
const range = document . createRange ( ) ;
range . selectNodeContents ( el ) ;
selection . removeAllRanges ( ) ;
selection . addRange ( range ) ;
} catch ( err ) {
// the browser does not support an API
}
2016-05-26 20:51:52 +05:30
}
2019-11-27 14:33:32 +05:30
2020-05-24 04:38:24 +05:30
setUUID ( el : HTMLElement | null ) {
this . UUID = el ;
}
2016-03-17 11:31:11 +05:30
}
2017-05-26 00:41:57 +05:30
2019-12-07 16:58:52 +05:30
export default connect ( ( { user , i18n } : RootState ) = > ( {
2020-05-24 04:38:24 +05:30
user ,
interfaceLocale : i18n.locale ,
2017-12-31 03:08:54 +05:30
} ) ) ( Profile ) ;