- Install Node/NPM. 4.x or newer, 6.9.1 recommended.
- Download Node
- Alternatively on Mac/Linux use nvm
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
- Get a copy of the workshop files
git clone https://github.com/kuali/kuali-research-workshop.git- or download (https://github.com/kuali/kuali-research-workshop/archive/master.zip)
- In the folder with the workshop files
npm installnpm start
- Fetch the list of proposals when the component mounts
- using
fetchload a list of proposals from/instprop/api/v1/institutional-proposals/and set it into the local state asproposals - alternatively use the pre-built method
this.fetchProposals
- using
- Fetch related data to replace the codes with the actual descriptions
- using
fetchgrab the list of proposal types from/research-common/api/v1/proposal-types/and using lodasheskeyBycreate a hash of the types by code and set the result into the local state asproposalTypes
- using
- Fetch other related data similar to above for other data being displayed
- activity types from
/research-common/api/v1/activity-types/into state asactivityTypes - proposal statuses from
/instprop/api/v1/proposal-statuses/into state asproposalStatues - units from
/research-common/api/v1/units/into state asunits
- activity types from
- Tie filtering into the proposal search so that when you click the filter button it only shows relevant results
- do this by appending to the url ?key=value. The key is stored in
this.state.filterByand the value is inthis.state.filter
- do this by appending to the url ?key=value. The key is stored in
- You can find the final version in
Proposals.final.js
- Part 1: Fix the fetch command in the componentDidMount method so it successfully pulls in the award summaries.
- The url should be
/award/api/v1/awards/?summary
- The url should be
- Part 2: Enable the BarGraph
- Remove the false condition before the BarGraph
- Populate the data attribute in the bar graph by using the included function
generateAwardCountStatsBySponsorand passing in the awards that are in the local component state.
- Part 3: Pull down all award amount infos
- Perform a fetch, similar to the award summary one, but against
/award/api/v1/award-amount-infos/and store the result in the component state.
- Perform a fetch, similar to the award summary one, but against
- Part 4: Update the BarGraph to display dollar amounts.
- Update the data attribute to instead use
generateAwardDollarAmountBySponsorand pass in both the awards and the award amount infos from the state.