DimaLitvinenko / goit-react-hw-06-phonebook

Home Page:https://dimalitvinenko.github.io/goit-react-hw-06-phonebook/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

goit-react-hw-06-phonebook

  • Создан репозиторий goit-react-hw-06-phonebook
  • При сдаче домашней работы есть ссылки: на исходные файлы и рабочую страницу проекта на GitHub Pages или Netlify
  • В Redux-состоянии хранится минимально необходимый набор данных
  • При запуске кода задания, в консоли нету ошибок и предупреждений
  • Для каждого компонента есть отдельная папка с файлом React-компонента и файлом стилей
  • Для компонентов описаны propTypes
  • Использована библиотека Redux Toolkit

Телефонная книга

Выполни рефакторинг кода приложения «Телефонная книга» добавив управление состоянием при помощи библиотеки Redux Toolkit.

Пусть Redux-состояние выглядит следующим образом.

{
  contacts: {
    items: [],
    filter: ''
  }
}
  • Создай хранилище с configureStore()
  • Создай действия сохранения и удаления контакта, а также обновления фильтра. Используй функцию createAction().
  • Создай редюсеры контактов и фильтра. Используй функцию createReducer() или createSlice().
  • Свяжи React-компоненты с Redux-логикой при помощи хуков бибилиотеки react-redux.

React Redux, Redux Toolkit

Контекст + Хуки

✅ Плюсы:

  • Простая реализация.
  • Состояние хранится в пределах компонентов, в которых оно используется.
  • Не требуется никаких дополнительных зависимостей.

❌ Минусы:

  • Быстро становится беспорядочным.
  • Сложно отслеживать место хранения состояния из разных уровней.
  • Нужно писать все с нуля, то есть много «лишнего» кода.

Библиотеки управления состоянием

✅ Плюсы:

  • Стандартные архитектурные шаблоны.
  • Удобные инструменты для отладки кода.
  • Простая расширяемость.
  • Готовые решения, например для кеширования серверных данных.
  • Кросс-платформенное использование.
  • Производительность может быть выше.
  • Один глобальный экземпляр данных.
  • Middleware (прослойки).

❌ Минусы:

  • Новая концепция.
  • Новый синтаксис.
  • Обновления.
  • Исправление ошибок.

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 -D 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 'node_modules/modern-normalize/modern-normalize.css';

or

<link rel="stylesheet" href="node_modules/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

package.json

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

"homepage": "https://DimaLitvinenko.github.io/goit-react-hw-02-phonebook",

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 the browser.

The page will reload if you make edits.
You will 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

About

https://dimalitvinenko.github.io/goit-react-hw-06-phonebook/

License:MIT License


Languages

Language:SCSS 49.6%Language:JavaScript 41.1%Language:HTML 9.0%Language:Shell 0.4%