Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Add artfuldev submission #64

Open
wants to merge 51 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
8a11778
Added boilerplate
artfuldev Jul 13, 2016
a476a1d
Added .editorconfig
artfuldev Jul 13, 2016
1d0ef34
Updating files xD
artfuldev Jul 13, 2016
7e4f7ab
Added some basic html, css and IState
artfuldev Jul 14, 2016
c8ecc89
Getting planets
artfuldev Jul 14, 2016
8625ac6
Changed title and sdescription
artfuldev Jul 14, 2016
9e34cb7
Added scroll to intent
artfuldev Jul 14, 2016
bfed296
Refactoring planets$ out of intent
artfuldev Jul 14, 2016
e118525
Making a PlanetsDriver
artfuldev Jul 14, 2016
cacaad3
Renamed State to ApplicationState
artfuldev Jul 14, 2016
d638085
Separating out rendering a jedi as a list item
artfuldev Jul 14, 2016
a33189a
Adding 5 null jedis by default to initial state
artfuldev Jul 14, 2016
a6fe0d1
Adding generated files
artfuldev Jul 14, 2016
59e4191
Simplified renderJediSlot function
artfuldev Jul 14, 2016
2c5129d
Connections belongs to the producer and not the driver
artfuldev Jul 14, 2016
254e9c3
Renamed PlanetDriver to PlanetsDriver
artfuldev Jul 14, 2016
8135341
Adding a JedisDriver
artfuldev Jul 14, 2016
95673a4
Separating out view and jediRequests
artfuldev Jul 14, 2016
e5eb697
Defining Jedis in detail
artfuldev Jul 14, 2016
dffd1ce
Getting dark jedis from API
artfuldev Jul 14, 2016
f163e87
Trying to stop existing requests
artfuldev Jul 14, 2016
02661fc
Moving responsibility of not making new calls to reducers
artfuldev Jul 14, 2016
89937d4
Preventing multiple requests to the same jedi
artfuldev Jul 14, 2016
5a3d587
Adding new jedi requests based on jedi added
artfuldev Jul 14, 2016
1f85512
Cleaning up
artfuldev Jul 14, 2016
0471612
Refactored into a JedisDriver
artfuldev Jul 15, 2016
b096f45
scrollUp$ and scrollDown$ change jedis in state
artfuldev Jul 15, 2016
b33364a
Changing nextRequests to a single integer
artfuldev Jul 15, 2016
988de65
Added disabling scroll down button when last jedi has no apprentice
artfuldev Jul 15, 2016
888431b
Disabling scrollUp when first jedi has no master
artfuldev Jul 15, 2016
59ef7e0
Refactored disabling the scroll buttons
artfuldev Jul 15, 2016
67c9108
Tried something that didn't work
artfuldev Jul 15, 2016
4433730
Trying to fix multiple emits from same stream
artfuldev Jul 15, 2016
aac96a9
Trying to debug double requests
artfuldev Jul 15, 2016
7d7be0e
Updated Pending Ids
artfuldev Jul 15, 2016
ba387e6
Solved double network requests
artfuldev Jul 15, 2016
b1379bd
Fixed scrolling
artfuldev Jul 15, 2016
2009ae2
Undo changes to staltz
artfuldev Jul 15, 2016
17ae742
Highlight jedi on home planet
artfuldev Jul 15, 2016
af5ef8c
Disable scrolling on match
artfuldev Jul 15, 2016
bb7fb83
Refactored out requests
artfuldev Jul 15, 2016
bfa5325
Formatted requests.ts
artfuldev Jul 15, 2016
696d695
Adding cancellation logic
artfuldev Jul 16, 2016
4ba92b2
Can't scroll if list is empty
artfuldev Jul 16, 2016
71fff74
Making intent clearer
artfuldev Jul 16, 2016
48f1534
Making intent clearer
artfuldev Jul 16, 2016
fbe9f47
Simplifying driver
artfuldev Jul 16, 2016
eb629a1
Changing how the requests are created
artfuldev Jul 16, 2016
4b5a8ed
Stopped repetitive id updates naively
artfuldev Jul 16, 2016
3f47ac3
Using distinct ids in requests
artfuldev Jul 16, 2016
3ff09bf
Add cancellation of unncecessary requests
artfuldev Sep 14, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions submissions/artfuldev/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
2 changes: 2 additions & 0 deletions submissions/artfuldev/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
typings/
node_modules/
21 changes: 21 additions & 0 deletions submissions/artfuldev/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome against localhost, with sourcemaps",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
},
{
"name": "Attach to Chrome, with sourcemaps",
"type": "chrome",
"request": "attach",
"port": 9222,
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
}
]
}
12 changes: 12 additions & 0 deletions submissions/artfuldev/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.DS_Store": true,
"node_modules": true,
"dist": true,
"**/*.js": { "when": "$(basename).ts"},
"**/*.js.map": true
}
}
Loading