├── src ├── lib │ ├── Config.js │ ├── Schemas.js │ ├── request.js │ ├── formaters.js │ ├── Utils.js │ └── processPortfolio.js ├── components │ ├── History.js │ ├── News.js │ ├── App.js │ ├── common │ │ └── Button.js │ ├── AccountPane.js │ ├── AboutPage.js │ ├── NotFoundPage.js │ ├── LandingPage.js │ ├── Root.js │ ├── Spinner.js │ ├── Account.js │ ├── Watchlist.js │ ├── Search.js │ ├── Login.js │ ├── Order.js │ ├── QuotePane.js │ ├── PositionList.js │ ├── Sidebar.js │ └── SearchResults.js ├── .DS_Store ├── store │ ├── initialState.js │ ├── localStorage.js │ └── configureStore.js ├── containers │ ├── HistoryPage.js │ ├── OrderPage.js │ ├── SettingsPage.js │ ├── NewsPane.js │ ├── AccountPage.js │ ├── WatchlistPane.js │ ├── PositionsPane.js │ ├── QuoteContainer.js │ ├── App.js │ └── LoginPage.js ├── reducers │ ├── rootReducer.js │ ├── quote.js │ ├── portfolio.js │ ├── positions.js │ ├── account.js │ ├── watchlist.js │ ├── authentication.js │ └── order.js ├── index.js ├── routes.js ├── index.ejs ├── server.js ├── actions │ ├── positionActions.js │ ├── NewsActions.js │ ├── AccountActions.js │ ├── AuthedActions.js │ ├── QuoteActions.js │ ├── index.js │ ├── OrderActions.js │ ├── WatchlistActions.js │ └── PortfolioActions.js ├── constants │ └── ActionTypes.js └── middleware │ └── api.js ├── .dockerignore ├── static ├── robots.txt ├── .DS_Store ├── favicon.ico ├── img │ ├── logo.png │ ├── graph-green.svg │ ├── graph-red.svg │ ├── graph-green-lrg.svg │ └── graph-red-lrg.svg └── index.html ├── .babelrc ├── .gitignore ├── .DS_Store ├── .eslintignore ├── .eslintrc ├── Dockerfile ├── .editorconfig ├── LICENSE ├── package.json ├── webpack.config.js └── README.md /src/lib/Config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/History.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "react", "stage-0"], 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | public/dist/ 3 | node_modules/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/robinhood-react/HEAD/.DS_Store -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | coverage 4 | webpack.*.js 5 | *server.js 6 | -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moosh3/robinhood-react/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/components/News.js: -------------------------------------------------------------------------------- 1 | /* Includes Movers actions */ 2 | 3 | export default News 4 | -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- 1 | const App = () => ( 2 |
3 | //TODO 4 |
5 | ) 6 | -------------------------------------------------------------------------------- /src/components/common/Button.js: -------------------------------------------------------------------------------- 1 | const Button = props =>