Skip to content
This repository has been archived by the owner on Nov 14, 2020. It is now read-only.

Commit

Permalink
Feature/job detail page (#23)
Browse files Browse the repository at this point in the history
JobDetail
  • Loading branch information
mell0kat committed Dec 7, 2019
1 parent 6d0d014 commit 26f5047
Show file tree
Hide file tree
Showing 27 changed files with 3,638 additions and 671 deletions.
35 changes: 28 additions & 7 deletions docker/db/data/jobs.json
Expand Up @@ -6,7 +6,10 @@
"outputs": ["galaxy.dimensions"],
"location": "https://github.com/Galaxy/blob/ecfc04de65137bfd25a0416d227eaba5325c8c63/calculate.galaxy_dimensions.sql",
"description": "calculates all possible dimensions from input geometry",
"type": "BATCH"
"type": "BATCH",
"context": {
"SQL": "\n-- THIS IS SAMPLE SQL\n\n SELECT 0 AS num UNION ALL\n SELECT 1 UNION ALL\n SELECT 2 UNION ALL\n SELECT 3 UNION ALL\n SELECT 4 UNION ALL\n SELECT 5 UNION ALL\n SELECT 6 UNION ALL\n SELECT 7 UNION ALL\n SELECT 8 UNION ALL\n SELECT 9\n)\n\n, numbers_100 AS\n(\n FROM the_whole_flippin_universe"
}
},
{
"name": "calculate.galaxy_trips",
Expand All @@ -24,7 +27,10 @@
"outputs": ["earth.trips"],
"location": "https://github.com/Galaxy/blob/ecfc04de65137bfd25a0416d227eaba5325c8c63/calculate.galaxy_trips.sql",
"description": "calculates the dimensions of earth",
"type": "BATCH"
"type": "BATCH",
"context": {
"SQL": "\n-- THIS IS SAMPLE SQL\n\n SELECT 0 AS num UNION ALL\n SELECT 1 UNION ALL\n SELECT 2 UNION ALL\n SELECT 3 UNION ALL\n SELECT 4 UNION ALL\n SELECT 5 UNION ALL\n SELECT 6 UNION ALL\n SELECT 7 UNION ALL\n SELECT 8 UNION ALL\n SELECT 9\n)\n\n, numbers_100 AS\n(\n FROM the_whole_flippin_universe"
}
},
{
"name": "calculate.universe",
Expand Down Expand Up @@ -60,7 +66,10 @@
"outputs": ["rocket.types"],
"location": "https://github.com/Galaxy/blob/ecfc04de65137bfd25a0416d227eaba5325c8c63/calculate.galaxy_trips.sql",
"description": "calculates literally nothing!",
"type": "BATCH"
"type": "BATCH",
"context": {
"SQL": "\n-- THIS IS SAMPLE SQL\n\n SELECT 0 AS num UNION ALL\n SELECT 1 UNION ALL\n SELECT 2 UNION ALL\n SELECT 3 UNION ALL\n SELECT 4 UNION ALL\n SELECT 5 UNION ALL\n SELECT 6 UNION ALL\n SELECT 7 UNION ALL\n SELECT 8 UNION ALL\n SELECT 9\n)\n\n, numbers_100 AS\n(\n FROM the_whole_flippin_universe"
}
},
{
"name": "build.space_station",
Expand All @@ -87,7 +96,10 @@
"outputs": ["interstellar.dimensions"],
"location": "https://github.com/Galaxy/blob/ecfc04de65137bfd25a0416d227eaba5325c8c63/calculate.galaxy_dimensions.sql",
"description": "calculates all possible dimensions from interstellar dimensions",
"type": "BATCH"
"type": "BATCH",
"context": {
"SQL": "\n-- THIS IS SAMPLE SQL\n\n SELECT 0 AS num UNION ALL\n SELECT 1 UNION ALL\n SELECT 2 UNION ALL\n SELECT 3 UNION ALL\n SELECT 4 UNION ALL\n SELECT 5 UNION ALL\n SELECT 6 UNION ALL\n SELECT 7 UNION ALL\n SELECT 8 UNION ALL\n SELECT 9\n)\n\n, numbers_100 AS\n(\n FROM the_whole_flippin_universe"
}
},
{
"name": "calculate.interstellar_trips",
Expand All @@ -105,7 +117,10 @@
"outputs": ["cosmic.dimensions"],
"location": "https://github.com/Galaxy/blob/ecfc04de65137bfd25a0416d227eaba5325c8c63/calculate.galaxy_trips.sql",
"description": "calculates the dimensions of the cosmics",
"type": "BATCH"
"type": "BATCH",
"context": {
"SQL": "\n-- THIS IS SAMPLE SQL\n\n SELECT 0 AS num UNION ALL\n SELECT 1 UNION ALL\n SELECT 2 UNION ALL\n SELECT 3 UNION ALL\n SELECT 4 UNION ALL\n SELECT 5 UNION ALL\n SELECT 6 UNION ALL\n SELECT 7 UNION ALL\n SELECT 8 UNION ALL\n SELECT 9\n)\n\n, numbers_100 AS\n(\n FROM the_whole_flippin_universe"
}
},
{
"name": "calculate.cosmic_universe",
Expand All @@ -132,7 +147,10 @@
"outputs": [],
"location": "https://github.com/Galaxy/blob/ecfc04de65137bfd25a0416d227eaba5325c8c63/calculate.galaxy_trips.sql",
"description": "calculates literally nothing!",
"type": "BATCH"
"type": "BATCH",
"context": {
"SQL": "\n-- THIS IS SAMPLE SQL\n\n SELECT 0 AS num UNION ALL\n SELECT 1 UNION ALL\n SELECT 2 UNION ALL\n SELECT 3 UNION ALL\n SELECT 4 UNION ALL\n SELECT 5 UNION ALL\n SELECT 6 UNION ALL\n SELECT 7 UNION ALL\n SELECT 8 UNION ALL\n SELECT 9\n)\n\n, numbers_100 AS\n(\n FROM the_whole_flippin_universe"
}
},
{
"name": "build.comets",
Expand All @@ -159,6 +177,9 @@
"outputs": ["worm_hole.types"],
"location": "https://github.com/Galaxy/blob/ecfc04de65137bfd25a0416d227eaba5325c8c63/calculate.galaxy_trips.sql",
"description": "calculates literally nothing!",
"type": "BATCH"
"type": "BATCH",
"context": {
"SQL": "\n-- THIS IS SAMPLE SQL\n\n SELECT 0 AS num UNION ALL\n SELECT 1 UNION ALL\n SELECT 2 UNION ALL\n SELECT 3 UNION ALL\n SELECT 4 UNION ALL\n SELECT 5 UNION ALL\n SELECT 6 UNION ALL\n SELECT 7 UNION ALL\n SELECT 8 UNION ALL\n SELECT 9\n)\n\n, numbers_100 AS\n(\n FROM the_whole_flippin_universe"
}
}
]
78 changes: 28 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -19,6 +19,7 @@
"@material-ui/core": "^4.6.1",
"@material-ui/icons": "^4.4.3",
"@types/d3": "^5.7.2",
"@types/react-router-dom": "^5.1.2",
"autoprefixer": "^9.5.1",
"connected-react-router": "^6.4.0",
"css-loader": "^2.1.0",
Expand All @@ -37,7 +38,7 @@
"react-dom": "^16.8.0",
"react-helmet": "^5.2.1",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"react-router-dom": "^5.1.2",
"react-vis": "^1.11.7",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
Expand All @@ -56,7 +57,6 @@
"@types/react-dom": "^16.8.3",
"@types/react-helmet": "^5.0.10",
"@types/react-redux": "^7.0.6",
"@types/react-router-dom": "^4.3.1",
"@types/react-tap-event-plugin": "^0.0.30",
"@types/redux-logger": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^2.3.0",
Expand Down

0 comments on commit 26f5047

Please sign in to comment.