From 43735eb4e917ddd7b916d216c12975e1d30b54b6 Mon Sep 17 00:00:00 2001 From: SleepWalker Date: Sun, 20 Mar 2016 10:30:58 +0200 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B2=D0=BE=D0=B4?= =?UTF-8?q?=D1=8B=20=D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/profile/Profile.jsx | 44 ++++++++-------- src/components/profile/Profile.messages.js | 59 ++++++++++++++++++++++ src/components/profile/ProfileField.jsx | 2 +- 3 files changed, 82 insertions(+), 23 deletions(-) create mode 100644 src/components/profile/Profile.messages.js diff --git a/src/components/profile/Profile.jsx b/src/components/profile/Profile.jsx index 45026cd..27e2272 100644 --- a/src/components/profile/Profile.jsx +++ b/src/components/profile/Profile.jsx @@ -1,12 +1,13 @@ import React, { Component } from 'react'; -import { FormattedMessage as Message, FormattedRelative as Relative } from 'react-intl'; +import { FormattedMessage as Message, FormattedRelative as Relative, FormattedHTMLMessage as HTMLMessage } from 'react-intl'; import Helmet from 'react-helmet'; import { userShape } from 'components/user/User'; import ProfileField from './ProfileField'; import styles from './profile.scss'; +import messages from './Profile.messages'; export class Profile extends Component { static displayName = 'Profile'; @@ -17,36 +18,36 @@ export class Profile extends Component { render() { const { user } = this.props; - const pageTitle = 'Настройки аккаунта Ely.by'; - return (
- -

- {pageTitle} -

+ + {(pageTitle) => ( +

+ + {pageTitle} +

+ )} +
- Благодаря аккаунту Ely.by вы можете получить доступ ко многим ресурсам, связанным с Minecraft. - Берегите свой аккаунт, используйте надёжный пароль и регулярно его меняйте. +

- Персональные данные +

- Здесь вы можете сменить ключевые параметры вашего аккаунта. Обратите внимание, что для - всех действий необходимо подтверждение при помощи ввода пароля. +

} value={user.username} - warningMessage={'Найден аккаунт Mojang с таким же ником и, по правилам проекта, его владелец вправе потребовать восстановления контроля над ником.'} + warningMessage={} /> Изменён } + label={} + value={) + }} />} warningMessage={user.shouldChangePassword ? ( - - Для пароля применяется старый алгоритм хэширования
- Пожалуйста, смените пароль. -
+ ) : ''} /> } + value={} /> Please, change password.' + // defaultMessage: 'Для пароля применяется старый алгоритм хэширования
Пожалуйста, смените пароль.' + }, + changedAt: { + id: 'changedAt', + defaultMessage: 'Changed {at}' + // defaultMessage: 'Изменен {at}' + }, + disabled: { + id: 'disabled', + defaultMessage: 'Disabled' + // defaultMessage: 'Не включена' + }, + nickname: { + id: 'nickname', + defaultMessage: 'Nickname' + // defaultMessage: 'Ник' + }, + password: { + id: 'password', + defaultMessage: 'Password' + // defaultMessage: 'Пароль' + }, + twoFactorAuth: { + id: 'twoFactorAuth', + defaultMessage: 'Two factor auth' + // defaultMessage: 'Двухфакторная аутентификация' + } +}); diff --git a/src/components/profile/ProfileField.jsx b/src/components/profile/ProfileField.jsx index 21dafb8..9021af2 100644 --- a/src/components/profile/ProfileField.jsx +++ b/src/components/profile/ProfileField.jsx @@ -5,7 +5,7 @@ import styles from './profile.scss'; export default class ProfileField extends Component { static displayName = 'ProfileField'; static propTypes = { - label: PropTypes.string.isRequired, + label: React.PropTypes.oneOfType([PropTypes.string, PropTypes.element]).isRequired, value: React.PropTypes.oneOfType([PropTypes.string, PropTypes.element]).isRequired, warningMessage: React.PropTypes.oneOfType([PropTypes.string, PropTypes.element]), readonly: PropTypes.bool