Skip to content

Commit

Permalink
add HT7
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Koretskyi committed Apr 28, 2020
1 parent 2a58497 commit fe3f2eb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,15 @@

1. Сделать роутинг на menu and reviews (/restaurants/id/reviews)
2. В корзине продукты сделать ссылками на их рестораны

## HT7

1. Сделать редирект со корня и с /restaurants на страницу ресторана
2. Проверить если мы на /checkout, то при нажатии на кнопку:

- отправить запрос на: '/api/order'
- блокировать кнопку на время запроса (можно добавить лоадер)
- при успешном ответе редиректить на новую страницу "Спасибо за заказ!"

3. Реализовать переключение валюты, хранить словарь словарь в контексте
4. Анимировать добавление ревью
2 changes: 1 addition & 1 deletion src/redux/actions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const loadUsers = restaurantId => async (dispatch, getState) => {
dispatch({ type: LOAD_USERS + REQUEST });

try {
const data = await fetch('/api/user');
const data = await fetch('/api/users');
const response = await data.json();

dispatch({ type: LOAD_USERS + SUCCESS, response });
Expand Down

0 comments on commit fe3f2eb

Please sign in to comment.