This repository was archived by the owner on Jan 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
Add a renderer for actions #72
Merged
Merged
Changes from all commits
Commits
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,228 @@ | ||
import React from 'react' | ||
import PropTypes from 'prop-types' | ||
|
||
const Actions = (props) => { | ||
const { | ||
selectedItem, | ||
isFolder, | ||
icons, | ||
nameFilter, | ||
|
||
canCreateFolder, | ||
onCreateFolder, | ||
|
||
canRenameFile, | ||
onRenameFile, | ||
|
||
canRenameFolder, | ||
onRenameFolder, | ||
|
||
canDeleteFile, | ||
onDeleteFile, | ||
|
||
canDeleteFolder, | ||
onDeleteFolder, | ||
|
||
canDownloadFile, | ||
onDownloadFile, | ||
|
||
} = props | ||
|
||
let actions = [] | ||
|
||
if (selectedItem) { | ||
// Something is selected. Build custom actions depending on what it is. | ||
if (selectedItem.action) { | ||
// Selected item has an active action against it. Disable all other actions. | ||
let actionText | ||
switch (selectedItem.action) { | ||
case 'delete': | ||
actionText = 'Deleting ...' | ||
break | ||
|
||
case 'rename': | ||
actionText = 'Renaming ...' | ||
break | ||
|
||
default: | ||
actionText = 'Moving ...' | ||
break | ||
} | ||
|
||
actions = ( | ||
// TODO: Enable plugging in custom spinner. | ||
<div className="item-actions"> | ||
{icons.Loading} {actionText} | ||
</div> | ||
) | ||
} else { | ||
if (isFolder && canCreateFolder && !nameFilter) { | ||
actions.push( | ||
<li key="action-add-folder"> | ||
<a | ||
onClick={onCreateFolder} | ||
href="#" | ||
role="button" | ||
> | ||
{icons.Folder} | ||
Add Subfolder | ||
</a> | ||
</li> | ||
) | ||
} | ||
|
||
if (selectedItem.keyDerived && !isFolder && canRenameFile) { | ||
actions.push( | ||
<li key="action-rename"> | ||
<a | ||
onClick={onRenameFile} | ||
href="#" | ||
role="button" | ||
> | ||
{icons.Rename} | ||
Rename | ||
</a> | ||
</li> | ||
) | ||
} else if (selectedItem.keyDerived && isFolder && canRenameFolder) { | ||
actions.push( | ||
<li key="action-rename"> | ||
<a | ||
onClick={onRenameFolder} | ||
href="#" | ||
role="button" | ||
> | ||
{icons.Rename} | ||
Rename | ||
</a> | ||
</li> | ||
) | ||
} | ||
|
||
if (selectedItem.keyDerived && !isFolder && canDeleteFile) { | ||
actions.push( | ||
<li key="action-delete"> | ||
<a | ||
onClick={onDeleteFile} | ||
href="#" | ||
role="button" | ||
> | ||
{icons.Delete} | ||
Delete | ||
</a> | ||
</li> | ||
) | ||
} else if (selectedItem.keyDerived && isFolder && canDeleteFolder) { | ||
actions.push( | ||
<li key="action-delete"> | ||
<a | ||
onClick={onDeleteFolder} | ||
href="#" | ||
role="button" | ||
> | ||
{icons.Delete} | ||
Delete | ||
</a> | ||
</li> | ||
) | ||
} | ||
|
||
if (!isFolder && canDownloadFile) { | ||
actions.push( | ||
<li key="action-download"> | ||
<a | ||
onClick={onDownloadFile} | ||
href="#" | ||
role="button" | ||
> | ||
{icons.Download} | ||
Download | ||
</a> | ||
</li> | ||
) | ||
} | ||
|
||
if (actions.length) { | ||
actions = (<ul className="item-actions">{actions}</ul>) | ||
} else { | ||
actions = (<div className="item-actions"> </div>) | ||
} | ||
} | ||
} else { | ||
// Nothing selected: We're in the 'root' folder. Only allowed action is adding a folder. | ||
if (canCreateFolder && !nameFilter) { | ||
actions.push( | ||
<li key="action-add-folder"> | ||
<a | ||
onClick={onCreateFolder} | ||
href="#" | ||
role="button" | ||
> | ||
{icons.Folder} | ||
Add Folder | ||
</a> | ||
</li> | ||
) | ||
} | ||
|
||
if (actions.length) { | ||
actions = (<ul className="item-actions">{actions}</ul>) | ||
} else { | ||
actions = (<div className="item-actions"> </div>) | ||
} | ||
Comment on lines
+168
to
+172
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this could be moved right before returning |
||
} | ||
|
||
return actions | ||
} | ||
|
||
Actions.propTypes = { | ||
selectedItem: PropTypes.object, | ||
isFolder: PropTypes.bool, | ||
icons: PropTypes.object, | ||
nameFilter: PropTypes.string, | ||
|
||
canCreateFolder: PropTypes.bool, | ||
onCreateFolder: PropTypes.func, | ||
|
||
canRenameFile: PropTypes.bool, | ||
onRenameFile: PropTypes.func, | ||
|
||
canRenameFolder: PropTypes.bool, | ||
onRenameFolder: PropTypes.func, | ||
|
||
canDeleteFile: PropTypes.bool, | ||
onDeleteFile: PropTypes.func, | ||
|
||
canDeleteFolder: PropTypes.bool, | ||
onDeleteFolder: PropTypes.func, | ||
|
||
canDownloadFile: PropTypes.bool, | ||
onDownloadFile: PropTypes.func, | ||
} | ||
|
||
Actions.defaultProps = { | ||
selectedItem: null, | ||
isFolder: false, | ||
icons: {}, | ||
nameFilter: '', | ||
|
||
canCreateFolder: false, | ||
onCreateFolder: null, | ||
|
||
canRenameFile: false, | ||
onRenameFile: null, | ||
|
||
canRenameFolder: false, | ||
onRenameFolder: null, | ||
|
||
canDeleteFile: false, | ||
onDeleteFile: null, | ||
|
||
canDeleteFolder: false, | ||
onDeleteFolder: null, | ||
|
||
canDownloadFile: false, | ||
onDownloadFile: null, | ||
} | ||
|
||
export default Actions |
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,5 @@ | ||
import DefaultAction from './default' | ||
|
||
export { | ||
DefaultAction, | ||
} |
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.