React Base Fiddle (JSX)
Starting point for creating JSFiddles with React. This uses React with Addons.
by jeffbski
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.24/browser.js"></script>
<script src="https://npmcdn.com/react@latest/dist/react-with-addons.js"></script>
<script src="https://npmcdn.com/react-dom@latest/dist/react-dom.js"></script>
<script src="https://npmcdn.com/axios/dist/axios.min.js"></script>
<script src="https://npmcdn.com/redux@^3.5.2/dist/redux.min.js"></script>
<script src="https://npmcdn.com/react-redux@^4.4.5/dist/react-redux.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser-polyfill.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/redux-logic.min.js"></script>
<script src="https://facebook.github.io/react/js/jsfiddle-integration-babel.js"></script>
<div id="container">
<!-- This element's contents will be replaced with your component. -->
</div>
JavaScript 1.7
const { createStore, applyMiddleware } = Redux;
const { createLogic, createLogicMiddleware } = ReduxLogic;
const { connect, Provider } = ReactRedux;
const initialState = {
list: [],
fetchStatus: ''
};
const USERS_FETCH = 'USERS_FETCH';
const USERS_FETCH_CANCEL = 'USERS_FETCH_CANCEL';
const USERS_FETCH_FULFILLED = 'USERS_FETCH_FULFILLED';
const USERS_FETCH_REJECTED = 'USERS_FETCH_REJECTED';
function usersFetch() { return { type: USERS_FETCH }; }
function usersFetchCancel() { return { type: USERS_FETCH_CANCEL }; }
function usersFetchFulfilled(users) {
return { type: USERS_FETCH_FULFILLED, payload: users };
}
function usersFetchRejected(err) {
return { type: USERS_FETCH_REJECTED, payload: err, error: true };
}
const delay = 2; // 2s delay for interactive use of cancel/take latest
const usersFetchLogic = createLogic({
type: USERS_FETCH,
cancelType: USERS_FETCH_CANCEL,
latest: true, // take latest only,
processOptions: {
dispatchReturn: true, // use returned promise and apply these types
successType: usersFetchFulfilled,
failType: usersFetchRejected
},
// use axios injected as httpClient from configureStore logic deps
// we also have access to getState and action in the first argument
// but they were not needed for this particular code
async process({ httpClient }) {
const users =
await httpClient.get(`https://reqres.in/api/users?delay=${delay}`)
.then(resp => resp.data.data); // use data property of payload
return users;
}
});
const deps = { // injected dependencies for logic
httpClient: axios
};
const arrLogic = [usersFetchLogic];
const logicMiddleware = createLogicMiddleware(arrLogic, deps);
const store = createStore(reducer, initialState,
applyMiddleware(logicMiddleware));
const ConnectedApp = connect(
state => ({
users: state.list,
fetchStatus: state.fetchStatus
}),
{
usersFetch,
usersFetchCancel
}
)(App);
function App({ users,...