diff --git a/client/src/components/Collections/ListCollectionCreator.vue b/client/src/components/Collections/ListCollectionCreator.vue index 7f8896e221e7..e6cb37846cba 100644 --- a/client/src/components/Collections/ListCollectionCreator.vue +++ b/client/src/components/Collections/ListCollectionCreator.vue @@ -1,67 +1,340 @@ + + + - + - - - diff --git a/client/src/components/Collections/PairCollectionCreator.vue b/client/src/components/Collections/PairCollectionCreator.vue index 3323c9005308..154d82c2cfcc 100644 --- a/client/src/components/Collections/PairCollectionCreator.vue +++ b/client/src/components/Collections/PairCollectionCreator.vue @@ -1,82 +1,300 @@ + + + - + - - diff --git a/client/src/mvc/dataset/states.js b/client/src/mvc/dataset/states.ts similarity index 95% rename from client/src/mvc/dataset/states.js rename to client/src/mvc/dataset/states.ts index 4e0702c9cdbb..dd5b37d7fb07 100644 --- a/client/src/mvc/dataset/states.js +++ b/client/src/mvc/dataset/states.ts @@ -2,7 +2,7 @@ /** Map of possible HDA/collection/job states to their string equivalents. * A port of galaxy.model.Dataset.states. */ -var STATES = { +const STATES = { // NOT ready states /** is uploading and not ready */ UPLOAD: "upload", @@ -34,6 +34,9 @@ var STATES = { DEFERRED: "deferred", /** the tool producing this dataset failed */ ERROR: "error", + + READY_STATES: [] as string[], + NOT_READY_STATES: [] as string[], }; STATES.READY_STATES = [