zcash-grant-system/frontend
AMStrix d696f7978d Proposal pagination & 404 fix (#151)
* BE: command to create fake proposals

* BE: pagination system + implemented for GET proposals/

* FE: overlay mode for Loader component

* FE: paginated Proposals

* refactor pagination.py a bit

* Proposals: set search input from store on construction

* admin: switch proposals to new pagination regime

* BE: test adjustments

* set app.proposals.page after fetch in a less-creepy way

* optimictic proposal.detail from proposal.page

* keep api interfacing on the api surface (one-dimentional page filters vs structured)

* rem MOST & LEAST_FUNDED prop sort + rename NEWST & OLDEST

* ProposalPagination fix default sort
2019-02-05 15:34:19 -05:00
..
.storybook Integrate Storybook (#98) 2018-09-25 15:02:29 -04:00
bin User Auth Conversion (#19) 2018-12-14 13:36:22 -06:00
client Proposal pagination & 404 fix (#151) 2019-02-05 15:34:19 -05:00
config Fix SSR, fix uncaught async errors, fix style cascade. 2019-01-31 22:09:52 -05:00
logs
server Fix bad ssr action path. 2019-01-31 22:13:38 -05:00
stories Proposal staking (#134) 2019-01-31 17:56:16 -05:00
types Proposal pagination & 404 fix (#151) 2019-02-05 15:34:19 -05:00
.env.example Merge develop in. 2019-01-31 20:50:26 -05:00
.gitignore User Auth Conversion (#19) 2018-12-14 13:36:22 -06:00
.nowignore Add nowignore (#204) 2018-11-13 12:47:33 -05:00
.npmignore Fix Zeit Deployments (#81) 2018-09-19 20:45:51 -05:00
.npmrc
.nvmrc Contract Build Improvements (#215) 2018-11-21 17:24:33 -06:00
.prettierrc
Procfile Contract Build Improvements (#215) 2018-11-21 17:24:33 -06:00
README.md Proposal staking (#134) 2019-01-31 17:56:16 -05:00
now.json Fix Zeit Deployments (#81) 2018-09-19 20:45:51 -05:00
package.json Remove unused redux persist. 2019-02-04 15:45:20 -05:00
truffle.js
tsconfig.json User Auth Conversion (#19) 2018-12-14 13:36:22 -06:00
tslint.json
yarn.lock Request for Proposal (Pt. 3 - Create & Link Proposals) (#131) 2019-02-01 14:13:30 -05:00

README.md

ZF Grants Frontend

This is the front-end component of Zcash Grant System.

Setup

  1. Install (Nodejs 8.13)[https://nodejs.org/en/blog/release/v0.8.13/] and (yarn)[https://yarnpkg.com/en/].

  2. Run yarn to install dependencies.

Development

  1. Make sure the backend component is running.

  2. Run the webpack dev-server:

    yarn run dev
    
  3. Go to the app on localhost:3000.

Testing

Application

TBD