Last active
November 29, 2016 04:15
-
-
Save tylercollier/207bddd88568a35f2bbb62158fdc3b40 to your computer and use it in GitHub Desktop.
RenderProps challenges
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Using RenderProps (https://github.com/ReactTraining/react-subjects/blob/master/subjects/RenderProps/exercise.js), | |
// how can I: | |
// | |
// 1) compose multiple fetches to be run simultaneously? In the example below, fetching credits would be blocked until | |
// debits have been fetched. | |
// | |
// 2) test the component without the fetches happening? Normally I'll have a component that takes props, and connect it | |
// to redux, and export both the connected component (as default) and the so-called presentational component as a named | |
// const. This allows me to preview the render using e.g. React Storybook. | |
class App extends React.Component { | |
render() { | |
return ( | |
<div className="accounting-dashboard"> | |
<h1>Debits and credits, ordered by date</h1> | |
<Debits> | |
{({ debits }) => ( | |
<Credits> | |
{({ credits }) => { | |
const orderedTransactions = _.orderStuffByDate(debits, credits) | |
return orderedTransactions.map(t => <div>Amount: {t.amount}</div>) | |
}} | |
</Credits> | |
)} | |
</Debits> | |
</div> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Debits
andCredits
are implemented. The way I would do them they'd be fetching in parallel:And then for 2 you'd just test
<Ledger/>
same idea. These "fetch" components fetch state, and then you can render your "presentational" components. No screwing around w/ connect and exporting multiple things though.