goit-react-hw-05-movies

Критерии приема

  • Создан репозиторий goit-react-hw-05-movies
  • При сдаче домашней работы есть ссылки: на исходные файлы и рабочие страницы каждого проекта на Netlify
  • В состоянии компонентов хранится минимально необходимый набор данных, остальное вычисляется
  • При запуске кода задания, в консоли нету ошибок и предупреждений
  • Для каждого компонента есть отдельная папка с файлом React-компонента и файлом стилей
  • Для компонентов описаны propTypes
  • Все что компонент ожидает в виде пропов, передается ему при вызове
  • Имена компонентов понятные, описательные
  • JS-код чистый и понятный, используется Prettier
  • Стилизация выполнена CSS-модулями или Styled Components.

Задание «Кинопоиск»:

Создай базовую маршрутизацию для приложения поиска и хранения фильмов. Превью рабочего приложения смотри по ссылке.

API themoviedb.org

Для бекенда используй themoviedb.org API. Необходимо зарегистриваться (можно ввести произвольные данные) и получить API-ключ. В этой работе будут использоваться следующие ендпоинты.

  • /trending/get-trending список самых популярных фильмов на сегодня для создания коллекции на главной странице.
  • /search/search-movies поиск кинофильма по ключевому слову на странице фильмов.
  • /movies/get-movie-details запрос полной информации о фильме для страницы кинофильма.
  • /movies/get-movie-credits запрос информации о актёрском составе для страницы кинофильма.
  • /movies/get-movie-reviews запрос обзоров для страницы кинофильма.

Ссылка на документацию

Маршруты:

В приложении должны быть следующие маршруты. Если пользователь зашел по несуществующему маршруту, его необходимо перенаправлять на домашнюю страницу.

  • '/' - компонент <HomePage>, домашняя страница со списком популярных кинофильмов.
  • '/movies' - компонент <MoviesPage>, страница поиска фильмов по ключевому слову.
  • '/movies/:movieId' - компонент <MovieDetailsPage>, страница с детальной информацией о кинофильме.
  • /movies/:movieId/cast - компонент <Cast>, информация о актерском составе. Рендерится на странице <MovieDetailsPage>.
  • /movies/:movieId/reviews - компонент <Reviews>, информация об обзорах. Рендерится на странице <MovieDetailsPage>.

Code Splitting (разделение кода)

Добавь асинхронную загрузку JS-кода для маршрутов приложения используя React.lazy() и Suspense.

React App.

Создает React приложение в текущей папке:

npx create-react-app .

Создает React приложение в папке my-app:

npx create-react-app my-app

Настройка pre-commit хуков

1 - Установка зависимостей

Установить в проект следующие пакеты.

npm i -D prettier eslint

В случае ошибки установить явно указать 7-ую версию: eslintv7.11.0 --->>

npm i -D prettier eslint@7.11.0

2 - Инициализация lint-staged и husky

Пользователям MacOS и Linux систем необходимо выполнить в терминале следующую команду. Она установит и настроит husky и lint-staged в зависимости от инструментов качества кода из зависимостей проекта в package.json.

npx mrm lint-staged

Пользователям Windows необходимо выполнить следующую команду. Она делает тоже самое:

npx mrm@2 lint-staged

3 - Установка дополнительных зависимостей (npm-пакетов):

-ESLint

eslint-config-react Набор самоуверенных правил ESLint (http://eslint.org) (включая все правила), адаптированных для проектов React.

npm i -S eslint-config-react babel-eslint eslint-plugin-react

eslint-config-react-app Этот пакет включает общую конфигурацию ESLint, используемую приложением Create React.

npm i -S eslint-config-react-app

-Prop-types

Проверка типа во время выполнения для свойств React и подобных объектов.

npm i -S prop-types

-Nano ID

Крошечный, безопасный, удобный для URL генератор уникальных строковых идентификаторов для JavaScript.

npm i -D nanoid

-Sass

Чтобы использовать Sass, установите node-sass:

npm i -S node-sass@6.0.0

-Postcss-loader

Инструмент для преобразования стилей с помощью плагинов JS и PostCSS-loader для webpack.

npm i -S postcss-loader postcss

-Modern-normalize

Сброс стилей. Нормализатор стилей.

npm i -S modern-normalize
import 'modern-normalize/modern-normalize.css';

4 - Добавить npm скрипты в файл package.json:

  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "deploy": "gh-pages -d build",
    "clean": "gh-pages-clean",
    "prepare": "husky install",
    "predeploy": "yarn build",
    ...
    "predeploy": "npm run build",
  },

5 - Интерграция плагинов

Ссылки на документацию по интеграции плагинов в популярные редакторы.

6 - Настройки VSCode

Для комфортной работы, после установки плагинов, нужно добавить несколько настроек редактора для автосохранения и форматирования файлов.

{
   "files.autoSave": "onFocusChange",
   "editor.formatOnSave": true,
   "editor.codeActionsOnSave": {
      "source.fixAll.eslint": true
   }
}

7 - Deployment на GitHub Pages

npm i -S gh-pages
"homepage": "https://имя-профиля.github.io/имя-репозитория",
"homepage": "https://DimaLitvinenko.github.io/goit-react-hw-05-muvies",
"scripts": {
+   "predeploy": "npm run build",
+   "deploy": "gh-pages -d build",
    "start": "react-scripts start",
},

Getting Started with Create React App

This project was bootstrapped with Create React App.

Available Scripts

In the project directory, you can run:

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.

The page will reload when you make changes.
You may also see any lint errors in the console.

npm test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

npm run build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

See the section about deployment for more information.

npm run eject

Note: this is a one-way operation. Once you eject, you can't go back!

If you aren't satisfied with the build tool and configuration choices, you can eject at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.

You don't have to ever use eject. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.

Learn More

You can learn more in the Create React App documentation.

To learn React, check out the React documentation.

Code Splitting

This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting

Analyzing the Bundle Size

This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size

Making a Progressive Web App

This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app

Advanced Configuration

This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration

Deployment

This section has moved here: https://facebook.github.io/create-react-app/docs/deployment

npm run build fails to minify

This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify

Loader :

QuickLink :

import { withQuicklink } from 'quicklink/dist/react/hoc.js';

const options = { origins: [] };

<Suspense fallback={

Loading...
}> <Route path="/" exact component={withQuicklink(Home, options)} /> <Route path="/blog" exact component={withQuicklink(Blog, options)} /> <Route path="/blog/:title" component={withQuicklink(Article, options)} /> <Route path="/about" exact component={withQuicklink(About, options)} />

ICONS : import { GrReactjs, GiFilmProjecto } from 'react-icons/gr'; GrReactjs,GiFilmProjector

SiReact; SiReactrouter ;

Primary Color (Dark blue) Hex: #0d253f RGB: 13, 37, 63

Secondary Color (Light blue) Hex: #01b4e4 RGB: 1, 180, 228

Tertiary Color (Light green) Hex: #90cea1 RGB: 144, 206, 161