Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alex-Willenbrink's Solution' #6

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
19ca831
init commit
Sep 8, 2017
629f604
server set up
Sep 8, 2017
1afa556
found apple ticker bug
Alex-Willenbrink Sep 8, 2017
9d9ed5f
async js server code complete
Sep 8, 2017
b5939d2
trying slider options
Alex-Willenbrink Sep 8, 2017
8b98b30
client side routing
Sep 8, 2017
4cde427
fun errors for Eric
Alex-Willenbrink Sep 8, 2017
dd2e087
for looping dates, data scrubbed
Sep 8, 2017
096c542
screwing around with markup
Alex-Willenbrink Sep 8, 2017
58b83f0
starting on store, links, dropdown
Sep 8, 2017
0b98ff6
action creator maybe works?
Alex-Willenbrink Sep 8, 2017
991a754
last commit
Alex-Willenbrink Sep 8, 2017
7bb2152
data scrubbing is completely finished
Alex-Willenbrink Sep 10, 2017
ec34864
react redux components up and running along with date picker
Alex-Willenbrink Sep 11, 2017
558000c
forgot to commit
Alex-Willenbrink Sep 11, 2017
6ab5c2b
f
Alex-Willenbrink Sep 11, 2017
4e9a418
added PerfProfiler and made table displays more efficiently rendered
Alex-Willenbrink Sep 15, 2017
5a3c71d
will come back to implement reselect for StocksContainer
Alex-Willenbrink Sep 15, 2017
b6ea9f2
added date widget component for finding correct date
Alex-Willenbrink Oct 30, 2017
6f816cf
date slider separated into presentational and functional componnets a…
Alex-Willenbrink Oct 31, 2017
0ad985e
table to display stocks on different days is up
Alex-Willenbrink Oct 31, 2017
f11a5f5
stocks table sorts symbol by asc or desc, filter works for symbol, an…
Alex-Willenbrink Nov 1, 2017
1952775
if stock diff is 0, no wing is displayed
Alex-Willenbrink Nov 1, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
13 changes: 13 additions & 0 deletions Data Schema
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
array of dates
["2017-01-01", "2013-56-45"]

Stocks
{
"AAPL": {
"2017-01-01": 132.56
}
}

Array of dates [" "]

array of symbols = ["AAPL", "FB"]
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# project_fideligard_spa

Names: Alex and Eric
Buy low, sell high.
21 changes: 21 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
2,164 changes: 2,164 additions & 0 deletions client/README.md

Large diffs are not rendered by default.

Loading