Skip to content

Commit 00cc8a9

Browse files
committed
section 9 & 10 added
1 parent 1271796 commit 00cc8a9

File tree

182 files changed

+16099
-31
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+16099
-31
lines changed

Section-08-React Redux/Basic Examples Redux/src/redux/actions/addTodo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ let nextTodoId = 0;
55
const addTodo = (text) => {
66
return {
77
type: ADD_TODO,
8-
id: nextTodoId++,
8+
data : response
99
text
1010
};
1111
};

Section-08-React Redux/Basic Examples Redux/src/redux/entry.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@ import React from 'react';
22
import ReactDOM from 'react-dom';
33
import { Provider } from 'react-redux';
44
// redux devtools middleware
5-
import configureStore from './helpers/configureStore';
6-
75
import todoApp from './reducers/todoApp';
86
import TodoApp from './components/TodoApp/TodoApp';
9-
7+
import thunk from 'redux-thunk'
108

119
require('../styles/common.scss');
1210

1311
ReactDOM.render(
14-
<Provider store={configureStore(todoApp)}>
12+
<Provider store={createStore(todoApp ,applyMiddleware(thunk))}>
1513
<TodoApp />
1614
</Provider>,
1715
document.getElementById('root')

Section-08-React Redux/ES6 Redux App Weather/src/containers/search_bar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class SearchBar extends Component {
4242
}
4343

4444
function mapDispatchToProps(dispatch) {
45-
return bindActionCreators({ fetchWeather }, dispatch);
45+
return bindActionCreators({ fetchWeather : fetchWeather }, dispatch);
4646
}
4747

4848
export default connect(null, mapDispatchToProps)(SearchBar);

Section-08-React Redux/ES6 Redux App Weather/src/containers/weather_list.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class WeatherList extends Component {
4141
}
4242

4343
function mapStateToProps({ weather }) {
44-
return { weather };
44+
return { weather : weather };
4545
}
4646

4747
export default connect(mapStateToProps)(WeatherList);

Section-08-React Redux/ES6 Redux App Weather/src/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import ReduxPromise from 'redux-promise';
77
import App from './components/app';
88
import reducers from './reducers';
99

10-
const createStoreWithMiddleware = applyMiddleware(ReduxPromise)(createStore);
10+
1111

1212
ReactDOM.render(
13-
<Provider store={createStoreWithMiddleware(reducers)}>
13+
<Provider store={createStore(reducers , applyMiddleware(ReduxPromise))}>
1414
<App />
1515
</Provider>
1616
, document.querySelector('.container'));
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,12 @@
11
import React from 'react'
22
import ReactDOM from 'react-dom'
33
import { createStore } from 'redux'
4-
import Counter from './components/Counter'
5-
import counter from './reducers'
4+
import App from '../componen/app'
5+
import reducers from './reducer'
6+
import ReduxPromise from 'redux-promise'
67

7-
const store = createStore(counter)
8-
const rootEl = document.getElementById('root')
9-
10-
function render() {
11-
ReactDOM.render(
12-
<Counter
13-
value={store.getState()}
14-
onIncrement={() => store.dispatch({ type: 'INCREMENT' })}
15-
onDecrement={() => store.dispatch({ type: 'DECREMENT' })}
16-
/>,
17-
rootEl
18-
)
19-
}
20-
21-
render()
22-
store.subscribe(render)
8+
ReactDOM.render(
9+
<Provider store={createStore(reducers , applyMiddleware(ReduxPromise))}
10+
<App/>
11+
</Provider>, document.getElementById('app')
12+
)

Section-08-React Redux/counter/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import counter from './reducers'
66

77
const store = createStore(counter)
88
const rootEl = document.getElementById('root')
9+
console.log(store.getState());
910

1011
function render() {
1112
ReactDOM.render(

Section-08-React Redux/counter/reducers/index.js

+6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
export default function counter(state = 0, action) {
2+
3+
24
switch (action.type) {
35
case 'INCREMENT':
6+
console.log(action);
7+
console.log(state);
48
return state + 1
59
case 'DECREMENT':
10+
console.log(action);
11+
console.log(state);
612
return state - 1
713
default:
814
return state

Section-08-React Redux/shopping-cart/actions/index.js

-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ function receiveProducts(products) {
77
products: products
88
}
99
}
10-
1110
export function getAllProducts() {
1211
return dispatch => {
1312
shop.getProducts(products => {
1413
dispatch(receiveProducts(products))
1514
})
1615
}
1716
}
18-
1917
function addToCartUnsafe(productId) {
2018
return {
2119
type: types.ADD_TO_CART,
@@ -34,7 +32,6 @@ export function addToCart(productId) {
3432
export function checkout(products) {
3533
return (dispatch, getState) => {
3634
const cart = getState().cart
37-
3835
dispatch({
3936
type: types.CHECKOUT_REQUEST
4037
})

Section-08-React Redux/shopping-cart/api/shop.js

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export default {
99
getProducts(cb, timeout) {
1010
setTimeout(() => cb(_products), timeout || TIMEOUT)
1111
},
12-
1312
buyProducts(payload, cb, timeout) {
1413
setTimeout(() => cb(), timeout || TIMEOUT)
1514
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["react", "es2015", "stage-1"]
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/node_modules/
2+
*/node_modules/
3+
/bower_components/
4+
*/bower_components/
5+
.settings
6+
.project
7+
.project
8+
.metadata
9+
.classpath
10+
.settings/
11+
logfile.txt
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# ReduxSimpleStarter
2+
3+
###Getting Started###
4+
5+
There are two methods for getting started with this repo.
6+
7+
####Familiar with Git?#####
8+
Checkout this repo, install depdencies, then start the gulp process with the following:
9+
10+
```
11+
> git clone [email protected]:StephenGrider/ReduxSimpleStarter.git
12+
> cd ReduxSimpleStarter
13+
> npm install
14+
> npm start
15+
```
16+
17+
####Not Familiar with Git?#####
18+
Click [here](https://github.com/StephenGrider/ReactStarter/releases) then download the .zip file. Extract the contents of the zip file, then open your terminal, change to the project directory, and:
19+
20+
```
21+
> npm install
22+
> npm start
23+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*.log
16+
/tmp
17+
18+
# Ignore ruby-version
19+
/.ruby-version
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
source 'https://rubygems.org'
2+
ruby '2.2.4'
3+
4+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5+
gem 'rails', '4.2.3'
6+
# Use postgresql as the database for Active Record
7+
gem 'sqlite3'
8+
gem 'rails_12factor', group: :production
9+
# Use SCSS for stylesheets
10+
gem 'sass-rails', '~> 5.0.3'
11+
# Use Uglifier as compressor for JavaScript assets
12+
gem 'uglifier', '>= 1.3.0'
13+
# Use CoffeeScript for .js.coffee assets and views
14+
gem 'coffee-rails', '~> 4.0.0'
15+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
16+
# gem 'therubyracer', platforms: :ruby
17+
gem 'rack-cors', :require => 'rack/cors'
18+
gem "rack-attack", group: :production
19+
gem 'dalli', group: :production
20+
gem 'obscenity'
21+
22+
# Use jquery as the JavaScript library
23+
gem 'jquery-rails'
24+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
25+
gem 'turbolinks'
26+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
27+
gem 'jbuilder', '~> 2.0'
28+
# bundle exec rake doc:rails generates the API under doc/api.
29+
gem 'sdoc', '~> 0.4.0', group: :doc
30+
31+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
32+
gem 'spring', group: :development
33+
34+
# Use ActiveModel has_secure_password
35+
# gem 'bcrypt', '~> 3.1.7'
36+
37+
gem 'puma'
38+
39+
# Use Capistrano for deployment
40+
# gem 'capistrano-rails', group: :development
41+
42+
# Use debugger
43+
# gem 'debugger', group: [:development, :test]

0 commit comments

Comments
 (0)