-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Homework 7 #53
base: master
Are you sure you want to change the base?
Homework 7 #53
Conversation
onChange(lng) | ||
} else { | ||
//Why does not it (replace from 'connected-react-router') work?? | ||
//replace(location.pathname.replace(new RegExp(lng), 'en')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace - это просто ac, пего нужно задиспатчить, для этого connect нужен
<MenuItem link="/comments">Comments</MenuItem> | ||
</Menu> | ||
<UserForm value={this.state.user} onChange={this.setUser} /> | ||
<LanguageSelect lng={this.state.lng} onChange={this.setLanguage} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ты же просто создаешь компонент, там и не будет никакие params. params могут быть, если бы ты сделала что-то вроде <Route path="/:lng" render = {(routerProps) => <LanguageSelect lng={this.state.lng} onChange={this.setLanguage} {...routerProps} />} />
@@ -1,5 +1,7 @@ | |||
import React, { Component } from 'react' | |||
import { NavLink } from 'react-router-dom' | |||
import { Consumer as LanguageConsumer } from '../../contexts/language' | |||
const menuTranslations = require('../../translations/menu.json') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Храни это в контексте, не стоит везде импортировать
Знаю, что "играйтесь сколько хотите", но мне очень захотелось сделать зависимыми router и выбор языка, чтобы при обновлении страницы пользователь не терял выбранный язык, так как pathname '/ru/articles' сразу бы отрисовывал русифицированную версию.
В процессе, у меня возник вопрос:
https://github.com/galusha/basic-react-0410/blob/Homework-7/src/components/language-select.js#L17
Я не могу понять, почему в данном случае не работает
replace(location.pathname.replace(new RegExp(lng), 'en')), который с 'connected-react-router'
а работает только
history.replace(location.pathname.replace(new RegExp(lng), 'en'))
и ещё вопрос:
мне пришлось использовать matchPath вместо того, чтобы просто посмотреть параметр lng в params в match, потому что в этом компоненте (language-select.js), почему-то params всегда пустой. А вот в articles-list уже не пустой, уже есть lng in params. Хм...тоже не разобралась почему так.
Мне, кстати, кажется, что неплохо было бы сделать такое ДЗ:
не просто перевести, а ещё и связать это с роутингом, потому что мне очень хотелось бы увидеть твоё решение этой задачи, наверняка оно было бы совершенно другим.
И ещё один вопрос, правда, он не совсем к React:
Как лучше json файлы подключать? Так нынче модно или вообще без разницы?
https://github.com/galusha/basic-react-0410/blob/Homework-7/src/components/language-select.js#L5
Кажется всё.
Знаю, что все вопросы выходят за рамки текущего домашнего задания, но, пожалуйста, не оставь во тьме неведенья.
Спасибо.