-
Notifications
You must be signed in to change notification settings - Fork 16
SEAB-5762: Pagination for entry versions #2023
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
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
568197e
initial
hyunnaye 8b0c666
initial
hyunnaye 07e89ee
Merge branch 'feature/SEAB-5762' of https://github.com/dockstore/dock…
hyunnaye eb3e4a3
initial
hyunnaye 911afe5
implement header for total number of versions
hyunnaye f698ebc
bug fix
hyunnaye c8acceb
Merge branch 'develop' into feature/SEAB-5762
hyunnaye 07151be
test
hyunnaye 83f8b89
fix bug
hyunnaye 6b8fadd
test
hyunnaye 8634ddd
fix pagination
hyunnaye a1840d8
implement sorting
hyunnaye e483dd4
Merge branch 'develop' into feature/SEAB-5762
hyunnaye 513f76f
implement sorting
hyunnaye d427073
Merge branch 'develop' into feature/SEAB-5762
hyunnaye aaa5910
implement sorting
hyunnaye 4f3d132
package.json
hyunnaye f47714f
test fix
hyunnaye 6031c61
test fix
hyunnaye 842486e
test fix
hyunnaye 4638e93
test fix
hyunnaye c88a245
test fix
hyunnaye b15c6f9
test fix
hyunnaye 0d9ee8b
test fix
hyunnaye 6aba089
Try different browser
kathy-t 6fad0ee
review feedback
hyunnaye e816f6b
review feedback
hyunnaye File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
[ | ||
{ | ||
"aliases": null, | ||
"author": null, | ||
"commitID": null, | ||
"dbUpdateDate": 1480374119003, | ||
"description": null, | ||
"descriptionSource": null, | ||
"dirtyBit": false, | ||
"doiStatus": "NOT_REQUESTED", | ||
"doiURL": null, | ||
"dois": {}, | ||
"email": null, | ||
"frozen": false, | ||
"hidden": false, | ||
"id": 13, | ||
"images": null, | ||
"input_file_formats": [], | ||
"last_modified": 1480374117003, | ||
"legacyVersion": true, | ||
"name": "master", | ||
"output_file_formats": [], | ||
"reference": "master", | ||
"referenceType": "UNSET", | ||
"sourceFiles": [ | ||
{ | ||
"absolutePath": "/1st-workflow.cwl", | ||
"checksums": null, | ||
"content": "cwlVersion: v1.0\nclass: Workflow\ninputs:\n inp: File\n ex: string\n\noutputs:\n classout:\n type: File\n outputSource: compile/classfile\n\nsteps:\n untar:\n run: tar-param.cwl\n in:\n tarfile: inp\n extractfile: ex\n out: [example_out]\n\n compile:\n run: arguments.cwl\n in:\n src: untar/example_out\n out: [classfile]\n\n wrkflow:\n run: grep-and-count.cwl\n in:\n infiles: inp\n pattern: \"hello\"\n out: [outfile]\n", | ||
"frozen": false, | ||
"id": 28, | ||
"path": "/1st-workflow.cwl", | ||
"type": "DOCKSTORE_CWL", | ||
"verifiedBySource": {} | ||
}, | ||
{ | ||
"absolutePath": "/arguments.cwl", | ||
"checksums": null, | ||
"content": "cwlVersion: v1.0\nclass: CommandLineTool\nlabel: Example trivial wrapper for Java 7 compiler\nbaseCommand: javac\nhints:\n - DockerRequirement:\n dockerPull: java:7\nbaseCommand: javac\narguments: [\"-d\", $(runtime.outdir)]\ninputs:\n src:\n type: File\n inputBinding:\n position: 1\noutputs:\n classfile:\n type: File\n outputBinding:\nglob: \"*.class\"\n", | ||
"frozen": false, | ||
"id": 31, | ||
"path": "arguments.cwl", | ||
"type": "DOCKSTORE_CWL", | ||
"verifiedBySource": {} | ||
}, | ||
{ | ||
"absolutePath": "/grep-and-count.cwl", | ||
"checksums": null, | ||
"content": "class: Workflow\ncwlVersion: v1.0\n\nrequirements:\n - class: ScatterFeatureRequirement\n - class: DockerRequirement\n dockerPull: java:7\n\ninputs:\n pattern: string\n infiles: File[]\n\noutputs:\n outfile:\n type: File\n outputSource: wc/outfile\n\nsteps:\n grep:\n run: grep.cwl\n in:\n pattern: pattern\n infile: infiles\n scatter: infile\n out: [outfile]\n\n wc:\n run: wc.cwl\n in:\n infiles: grep/outfile\nout: [outfile]\n", | ||
"frozen": false, | ||
"id": 27, | ||
"path": "grep-and-count.cwl", | ||
"type": "DOCKSTORE_CWL", | ||
"verifiedBySource": {} | ||
}, | ||
{ | ||
"absolutePath": "/grep.cwl", | ||
"checksums": null, | ||
"content": "#!/usr/bin/env cwl-runner\nclass: CommandLineTool\ncwlVersion: v1.0\n\ninputs:\n pattern:\n type: string\n inputBinding: {position: 0}\n infile:\n type: File\n inputBinding: {position: 1}\n\noutputs:\n outfile:\n type: stdout\n\nbaseCommand: grep\n", | ||
"frozen": false, | ||
"id": 29, | ||
"path": "grep.cwl", | ||
"type": "DOCKSTORE_CWL", | ||
"verifiedBySource": {} | ||
}, | ||
{ | ||
"absolutePath": "/tar-param.cwl", | ||
"checksums": null, | ||
"content": "cwlVersion: v1.0\nclass: CommandLineTool\nbaseCommand: [tar, xf]\ninputs:\n tarfile:\n type: File\n inputBinding:\n position: 1\n extractfile:\n type: string\n inputBinding:\n position: 2\noutputs:\n example_out:\n type: File\n outputBinding:\nglob: $(inputs.extractfile)\n", | ||
"frozen": false, | ||
"id": 32, | ||
"path": "tar-param.cwl", | ||
"type": "DOCKSTORE_CWL", | ||
"verifiedBySource": {} | ||
}, | ||
{ | ||
"absolutePath": "/wc.cwl", | ||
"checksums": null, | ||
"content": "#!/usr/bin/env cwl-runner\nclass: CommandLineTool\ncwlVersion: v1.0\n\ninputs:\n infiles:\n type: File[]\n inputBinding: {position: 1}\n\noutputs:\n outfile:\n type: stdout\n\nbaseCommand: [wc, -l]\n", | ||
"frozen": false, | ||
"id": 30, | ||
"path": "wc.cwl", | ||
"type": "DOCKSTORE_CWL", | ||
"verifiedBySource": {} | ||
} | ||
], | ||
"subClass": null, | ||
"userIdToOrcidPutCode": {}, | ||
"valid": true, | ||
"validations": null, | ||
"verified": false, | ||
"verifiedSource": null, | ||
"verifiedSources": [], | ||
"versionEditor": null, | ||
"workflow_path": "/1st-workflow.cwl", | ||
"workingDirectory": "" | ||
} | ||
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
[ | ||
{ | ||
"aliases": null, | ||
"author": null, | ||
"authors": [], | ||
"commitID": null, | ||
"dbUpdateDate": 1622246514895, | ||
"description": null, | ||
"descriptionSource": null, | ||
"dirtyBit": false, | ||
"doiStatus": "CREATED", | ||
"doiURL": "10.5072/zenodo.841014", | ||
"dois": { | ||
"USER": { | ||
"type": "VERSION", | ||
"name": "10.5072/zenodo.841014", | ||
"initiator": "USER" | ||
} | ||
}, | ||
"email": null, | ||
"frozen": true, | ||
"hidden": false, | ||
"id": 13, | ||
"images": null, | ||
"input_file_formats": [], | ||
"last_modified": 1480374117003, | ||
"legacyVersion": true, | ||
"name": "master", | ||
"orcidAuthors": [], | ||
"output_file_formats": [], | ||
"reference": "master", | ||
"referenceType": "UNSET", | ||
"subClass": null, | ||
"synced": false, | ||
"valid": true, | ||
"validations": null, | ||
"verified": false, | ||
"verifiedSource": null, | ||
"verifiedSources": [], | ||
"versionEditor": null, | ||
"versionMetadata": { | ||
"id": 13, | ||
"parsedInformationSet": null, | ||
"userIdToOrcidPutCode": { | ||
"1": { | ||
"orcidPutCode":"1234567" | ||
} | ||
} | ||
}, | ||
"workflow_path": "/1st-workflow.cwl", | ||
"workingDirectory": "" | ||
}, | ||
{ | ||
"aliases": null, | ||
"author": null, | ||
"authors": [], | ||
"commitID": null, | ||
"dbUpdateDate": 1480374117003, | ||
"description": null, | ||
"descriptionSource": null, | ||
"dirtyBit": false, | ||
"doiStatus": "NOT_REQUESTED", | ||
"doiURL": null, | ||
"dois": {}, | ||
"email": null, | ||
"frozen": false, | ||
"hidden": true, | ||
"id": 14, | ||
"images": null, | ||
"input_file_formats": [], | ||
"last_modified": 1480374117003, | ||
"legacyVersion": true, | ||
"name": "test", | ||
"orcidAuthors": [], | ||
"output_file_formats": [], | ||
"reference": "test", | ||
"referenceType": "UNSET", | ||
"subClass": null, | ||
"synced": false, | ||
"valid": true, | ||
"validations": null, | ||
"verified": false, | ||
"verifiedSource": null, | ||
"verifiedSources": [], | ||
"versionEditor": null, | ||
"versionMetadata": { | ||
"id": 14, | ||
"parsedInformationSet": null, | ||
"userIdToOrcidPutCode": {} | ||
}, | ||
"workflow_path": "/1st-workflow.cwl", | ||
"workingDirectory": "" | ||
} | ||
] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.