├── .env ├── src ├── store │ ├── modules │ │ ├── todo.js │ │ ├── counter.js │ │ └── index.js │ ├── actionCreators.js │ ├── configure.js │ └── index.js ├── containers │ ├── CounterContainer.js │ └── TodosContainer.js ├── index.css ├── Root.js ├── components │ ├── AppTemplate.css │ ├── AppTemplate.js │ ├── App.js │ ├── Counter.js │ └── Todos.js ├── index.js ├── logo.svg └── registerServiceWorker.js ├── public ├── favicon.ico ├── manifest.json └── index.html ├── jsconfig.json ├── .gitignore ├── package.json └── README.md /.env: -------------------------------------------------------------------------------- 1 | NODE_PATH=src -------------------------------------------------------------------------------- /src/store/modules/todo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/store/modules/counter.js: -------------------------------------------------------------------------------- 1 | // 카운터 관련 상태 로직 -------------------------------------------------------------------------------- /src/store/modules/index.js: -------------------------------------------------------------------------------- 1 | // 모든 모듈들을 불러와서 합치는 작업이 이뤄짐 -------------------------------------------------------------------------------- /src/containers/CounterContainer.js: -------------------------------------------------------------------------------- 1 | // 리덕스와 연동된 컨테이너 컴포넌트 작성 -------------------------------------------------------------------------------- /src/containers/TodosContainer.js: -------------------------------------------------------------------------------- 1 | // 리덕스와 연동된 컨테이너 컴포넌트 작성 -------------------------------------------------------------------------------- /src/store/actionCreators.js: -------------------------------------------------------------------------------- 1 | // 편의상, 나중에 액션 생성 함수들을 미리 바인딩해서 내보냄 -------------------------------------------------------------------------------- /src/store/configure.js: -------------------------------------------------------------------------------- 1 | // 스토어를 생성하는 함수륾 만들어서 내보냄 2 | // 이 함수는 store/index.js 에서 불러와서 사용하게됨 -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlpt-playground/begin-redux/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | import store from 'store'; 3 | 를 통하여 스토어를 불러올 수 있도록, 이 파일에서 스토어를 생성하고 내보냄 4 | */ -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": "./src" // all paths are relative to the baseUrl 4 | } 5 | } -------------------------------------------------------------------------------- /src/Root.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import App from './components/App'; 3 | 4 | const Root = () => { 5 | return ( 6 | 7 | ); 8 | }; 9 | 10 | export default Root; -------------------------------------------------------------------------------- /src/components/AppTemplate.css: -------------------------------------------------------------------------------- 1 | .app-template { 2 | height: 100vh; 3 | display: flex; 4 | } 5 | 6 | .counter, .todos { 7 | flex: 1; 8 | padding: 1rem; 9 | } 10 | 11 | .counter { 12 | background: #f1f3f5; 13 | } 14 | 15 | .todos { 16 | background: #f8f9fa; 17 | } -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import Root from './Root'; 5 | import registerServiceWorker from './registerServiceWorker'; 6 | 7 | ReactDOM.render(, document.getElementById('root')); 8 | registerServiceWorker(); 9 | -------------------------------------------------------------------------------- /src/components/AppTemplate.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import './AppTemplate.css'; 3 | 4 | const AppTemplate = ({counter, todos}) => { 5 | return ( 6 |
7 |
{counter}
8 |
{todos}
9 |
10 | ); 11 | }; 12 | 13 | export default AppTemplate; -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | /build 11 | 12 | # misc 13 | .DS_Store 14 | .env.local 15 | .env.development.local 16 | .env.test.local 17 | .env.production.local 18 | 19 | npm-debug.log* 20 | yarn-debug.log* 21 | yarn-error.log* 22 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": "./index.html", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import AppTemplate from './AppTemplate'; 3 | import Counter from './Counter'; 4 | import Todos from './Todos'; 5 | 6 | class App extends Component { 7 | render() { 8 | return ( 9 | } 11 | todos={} 12 | /> 13 | ); 14 | } 15 | } 16 | 17 | export default App; 18 | -------------------------------------------------------------------------------- /src/components/Counter.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | const Counter = ({ 4 | number, 5 | onIncrement, 6 | onDecrement 7 | }) => { 8 | return ( 9 |
10 |

{number}

11 | 12 | 13 |
14 | ); 15 | }; 16 | 17 | Counter.defaultProps = { 18 | number: 0 19 | } 20 | 21 | export default Counter; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "begin-redux", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "immutable": "^3.8.2", 7 | "react": "^16.2.0", 8 | "react-dom": "^16.2.0", 9 | "react-redux": "^5.0.6", 10 | "react-scripts": "1.0.17", 11 | "redux": "^3.7.2", 12 | "redux-actions": "^2.2.1" 13 | }, 14 | "scripts": { 15 | "start": "react-scripts start", 16 | "build": "react-scripts build", 17 | "test": "react-scripts test --env=jsdom", 18 | "eject": "react-scripts eject" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/components/Todos.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { List, Map } from 'immutable'; 3 | 4 | const TodoItem = ({ id, text, checked, onToggle, onRemove }) => ( 5 |
  • onToggle(id)} 10 | onDoubleClick={() => onRemove(id)}> 11 | {text} 12 |
  • 13 | ) 14 | 15 | const Todos = ({todos, input, onInsert, onToggle, onRemove, onChange }) => { 16 | 17 | const todoItems = todos.map( 18 | todo => { 19 | const { id, checked, text } = todo.toJS(); 20 | return ( 21 | 29 | ) 30 | } 31 | ) 32 | return ( 33 |
    34 |

    오늘 할 일

    35 | 36 | 37 |
      38 | { todoItems } 39 |
    40 |
    41 | ); 42 | }; 43 | 44 | Todos.defaultProps = { 45 | todos: List([ 46 | Map({ 47 | id: 0, 48 | text: '걷기', 49 | checked: false 50 | }), 51 | Map({ 52 | id: 1, 53 | text: '코딩하기', 54 | checked: true 55 | }) 56 | ]), 57 | input: '' 58 | }; 59 | 60 | export default Todos; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # begin-redux 2 | 3 | 리덕스 시작하기 튜토리얼 전용 템플릿 4 | 5 | 이 프로젝트는 총 6가지의 Branch 로 나뉘어져있습니다: 6 | 7 | - [template](https://github.com/vlpt-playground/begin-redux/tree/template): 실습을 빠르게 진행하기 위한 템플릿 8 | - [01](https://github.com/vlpt-playground/begin-redux/tree/01): 카운터 (기본) 9 | - [02](https://github.com/vlpt-playground/begin-redux/tree/02): 카운터 (코드 정리) 10 | - [03](https://github.com/vlpt-playground/begin-redux/tree/03): 투두리스트 (기본) 11 | - [04](https://github.com/vlpt-playground/begin-redux/tree/04): 투두리스트 (Immutable Record 사용) 12 | - [05](https://github.com/vlpt-playground/begin-redux/tree/05): actionCreator 미리 bind하기 13 | - [06](https://github.com/vlpt-playground/begin-redux/tree/06): immer.js 사용해보기 14 | - [07](https://github.com/vlpt-playground/begin-redux/tree/06): MobX 로 구현해보기 15 | - [08](https://github.com/vlpt-playground/begin-redux/tree/06): MobX 로 구현해보기 (Store 분리) 16 | 17 | ## 템플릿에 이미 이뤄진 작업: 18 | 19 | ### 0. 절대경로에서 파일을 불러 올 수 있도록 설정 20 | 21 | - .env: NODE_PATH 설정 22 | - jsconfig.json: 에디터 설정 23 | 24 | ### 1. 패키지 설치 25 | ```bash 26 | $ yarn add redux react-redux redux-actions immutable 27 | ``` 28 | 29 | ### 2. 불필요한 파일 제거 30 | - App.js 31 | - App.css 32 | - App.test.js 33 | - logo.svg 34 | 35 | ### 3. 주요 컴포넌트 생성 및 루트 컴포넌트 생성 36 | 37 | - components/ 38 | - App.js 39 | - AppTemplate.js 40 | - Counter.js 41 | - Todos.js 42 | - containers/ 43 | - CounterContainer.js 44 | - TodosContainer.js 45 | - Root.js 46 | 47 | ### 4. 리덕스 관련 코드를 작성 할 파일 생성 48 | - store 49 | - modules 50 | - counter.js 51 | - todo.js 52 | - index.js 53 | - configure.js 54 | - index.js 55 | - actionCreators.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 11 | 12 | 13 | 22 | React App 23 | 24 | 25 | 28 |
    29 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- 1 | // In production, we register a service worker to serve assets from local cache. 2 | 3 | // This lets the app load faster on subsequent visits in production, and gives 4 | // it offline capabilities. However, it also means that developers (and users) 5 | // will only see deployed updates on the "N+1" visit to a page, since previously 6 | // cached resources are updated in the background. 7 | 8 | // To learn more about the benefits of this model, read https://goo.gl/KwvDNy. 9 | // This link also includes instructions on opting out of this behavior. 10 | 11 | const isLocalhost = Boolean( 12 | window.location.hostname === 'localhost' || 13 | // [::1] is the IPv6 localhost address. 14 | window.location.hostname === '[::1]' || 15 | // 127.0.0.1/8 is considered localhost for IPv4. 16 | window.location.hostname.match( 17 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ 18 | ) 19 | ); 20 | 21 | export default function register() { 22 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { 23 | // The URL constructor is available in all browsers that support SW. 24 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location); 25 | if (publicUrl.origin !== window.location.origin) { 26 | // Our service worker won't work if PUBLIC_URL is on a different origin 27 | // from what our page is served on. This might happen if a CDN is used to 28 | // serve assets; see https://github.com/facebookincubator/create-react-app/issues/2374 29 | return; 30 | } 31 | 32 | window.addEventListener('load', () => { 33 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; 34 | 35 | if (isLocalhost) { 36 | // This is running on localhost. Lets check if a service worker still exists or not. 37 | checkValidServiceWorker(swUrl); 38 | } else { 39 | // Is not local host. Just register service worker 40 | registerValidSW(swUrl); 41 | } 42 | }); 43 | } 44 | } 45 | 46 | function registerValidSW(swUrl) { 47 | navigator.serviceWorker 48 | .register(swUrl) 49 | .then(registration => { 50 | registration.onupdatefound = () => { 51 | const installingWorker = registration.installing; 52 | installingWorker.onstatechange = () => { 53 | if (installingWorker.state === 'installed') { 54 | if (navigator.serviceWorker.controller) { 55 | // At this point, the old content will have been purged and 56 | // the fresh content will have been added to the cache. 57 | // It's the perfect time to display a "New content is 58 | // available; please refresh." message in your web app. 59 | console.log('New content is available; please refresh.'); 60 | } else { 61 | // At this point, everything has been precached. 62 | // It's the perfect time to display a 63 | // "Content is cached for offline use." message. 64 | console.log('Content is cached for offline use.'); 65 | } 66 | } 67 | }; 68 | }; 69 | }) 70 | .catch(error => { 71 | console.error('Error during service worker registration:', error); 72 | }); 73 | } 74 | 75 | function checkValidServiceWorker(swUrl) { 76 | // Check if the service worker can be found. If it can't reload the page. 77 | fetch(swUrl) 78 | .then(response => { 79 | // Ensure service worker exists, and that we really are getting a JS file. 80 | if ( 81 | response.status === 404 || 82 | response.headers.get('content-type').indexOf('javascript') === -1 83 | ) { 84 | // No service worker found. Probably a different app. Reload the page. 85 | navigator.serviceWorker.ready.then(registration => { 86 | registration.unregister().then(() => { 87 | window.location.reload(); 88 | }); 89 | }); 90 | } else { 91 | // Service worker found. Proceed as normal. 92 | registerValidSW(swUrl); 93 | } 94 | }) 95 | .catch(() => { 96 | console.log( 97 | 'No internet connection found. App is running in offline mode.' 98 | ); 99 | }); 100 | } 101 | 102 | export function unregister() { 103 | if ('serviceWorker' in navigator) { 104 | navigator.serviceWorker.ready.then(registration => { 105 | registration.unregister(); 106 | }); 107 | } 108 | } 109 | --------------------------------------------------------------------------------