-
Notifications
You must be signed in to change notification settings - Fork 10
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
chore(file-download): enable downloading folder/file contents from file directory #346
chore(file-download): enable downloading folder/file contents from file directory #346
Conversation
Will want to test this in dev as well |
3bfafa1
to
362e85b
Compare
@Carson-Shaar I have updated the code and rebase the branch |
@@ -79,6 +87,12 @@ | |||
</template> | |||
</v-snackbar> | |||
|
|||
<FileFolderDownloadDialog |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of the dialogs should live under the list item like this:
<v-list-item
v-if="<some_bool>"
link
prepend-icon="mdi-account-outline"
title="Manage Access"
>
<ShareProjectDialog :project-name="item.name" />
</v-list-item>
Note the link directive. Please refactor these as needed and use props in the dialogs
Please rebase this to resolve conflicts and test with very large folders |
362e85b
to
571eb58
Compare
Rebased solve conflicts and updated downlader dialog to be in v-list-item |
394bcb1
to
87cbbdc
Compare
… add helper functions code and use it from there and removed unwnated code from the components
…tem ,updated dilaog for download and updated api path formation
87cbbdc
to
7107d61
Compare
This PR adds the ability to download the contents of a folder/file directly from the file directory.