Skip to content

Add Redux to manage shared state between React and jQuery #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: refactor
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions components/RemoveCompletedButton.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class RemoveCompletedButton extends React.Component {
class UnconnectedRemoveCompletedButton extends React.Component {
handleClick() {
removeCheckedItems();
}
Expand All @@ -15,11 +15,14 @@ class RemoveCompletedButton extends React.Component {
}
}

RemoveCompletedButton.defaultProps = {
show: false
};
function mapStateToProps(state) {
return {
show: state.hasCompletedItems
};
}
var RemoveCompletedButton = ReactRedux.connect(mapStateToProps)(UnconnectedRemoveCompletedButton);

ReactDOM.render(
<RemoveCompletedButton />,
<RemoveCompletedButton store={store} />,
document.querySelector('[data-react-component="RemoveCompletedButton"]')
);
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ <h1>To Do List</h1>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/redux@3.7.2/dist/redux.js"></script>
<script src="https://unpkg.com/react-redux@5.0.6/dist/react-redux.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
<script src="store/index.js" type="text/babel"></script>
<script src="jquery/todo.js" type="text/javascript"></script>
<script src="components/AddTodoInput.js" type="text/babel"></script>
<script src="components/RemoveCompletedButton.js" type="text/babel"></script>
Expand Down
5 changes: 1 addition & 4 deletions jquery/todo.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ function removeCheckedItems() {

function maybeHideDeleteAll() {
var completedItems = $('#todos input:checked').length;
ReactDOM.render(
React.createElement(RemoveCompletedButton, { show: completedItems > 0 }),
document.querySelector('[data-react-component="RemoveCompletedButton"]')
);
store.dispatch(setHasCompletedItems(completedItems > 0));
}

20 changes: 20 additions & 0 deletions store/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// The initial state of our store
const initialState = {
hasCompletedItems: false
};

function setHasCompletedItems(hasCompletedItems = false) {
return {
type: 'SET_HAS_COMPLETED_ITEMS',
hasCompletedItems: hasCompletedItems
};
}

function reducer(state = initialState, action) {
if (action.type = 'SET_HAS_COMPLETED_ITEMS') {
return { hasCompletedItems: action.hasCompletedItems };
}
return state;
}

var store = Redux.createStore(reducer);