feat(Export): export different versions
Opened this issue · 0 comments
ramfox commented
This one's a two parter:
- fix qri-io/qri#735
- Do some work on the export button on the frontend:
Overall behavior we are going for:
- click the
export
button on the dataset page - a modal slides in from the side with an input to select the format, an
export
button, and acancel
button - clicking
export
downloads the exported dataset and closes the modal - if there is an error, it displays in the modal
- clicking cancel closes the modal.
changes for modal content:
- Rename and move
dataset/Export
toform/ExportForm
:
-ExportForm
should take theexportPath
, andonClick
as params.
- It should have a select input with the optionsjson
,yaml
, &xlsx
(andnative
??).
- Form should also include an "export" button, that uses theexportPath
+?format=
+selectedFormat
as the buttondownload
param, and a dataset specific name with the correct file extension as thedownloadName
(take a look at what thedataset/Export
component does currently)
- The form should also include a "cancel" button
- The "export" button should be disabled until a format is chosen.
changes for wiring up the modal:
- using the pattern found in the
Profile
component, clicking on theDatasetButtonGroup
Export
button should open up a modal containing theExportForm
.
-exportPath
should be taken from the current exportPath that is being passed toDatasetButtonGroup
.
-onClick
should be the action to close the modal.