mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
Signed-off-by: Sunny <sunny@sny.sh>
This commit is contained in:
parent
195f2b3f38
commit
6709ab3c5e
2 changed files with 12 additions and 7 deletions
|
@ -40,6 +40,7 @@ const ContextMenu = ({
|
||||||
color,
|
color,
|
||||||
className,
|
className,
|
||||||
songQueryParams,
|
songQueryParams,
|
||||||
|
hideShare,
|
||||||
hideInfo,
|
hideInfo,
|
||||||
}) => {
|
}) => {
|
||||||
const classes = useStyles({ color })
|
const classes = useStyles({ color })
|
||||||
|
@ -80,13 +81,15 @@ const ContextMenu = ({
|
||||||
label: translate('resources.album.actions.addToPlaylist'),
|
label: translate('resources.album.actions.addToPlaylist'),
|
||||||
action: (data, ids) => dispatch(openAddToPlaylist({ selectedIds: ids })),
|
action: (data, ids) => dispatch(openAddToPlaylist({ selectedIds: ids })),
|
||||||
},
|
},
|
||||||
share: {
|
...(!hideShare && {
|
||||||
enabled: config.enableSharing,
|
share: {
|
||||||
needData: false,
|
enabled: config.enableSharing,
|
||||||
label: translate('ra.action.share'),
|
needData: false,
|
||||||
action: (record) =>
|
label: translate('ra.action.share'),
|
||||||
dispatch(openShareMenu([record.id], resource, record.name)),
|
action: (record) =>
|
||||||
},
|
dispatch(openShareMenu([record.id], resource, record.name)),
|
||||||
|
},
|
||||||
|
}),
|
||||||
download: {
|
download: {
|
||||||
enabled: config.enableDownloads && record.size,
|
enabled: config.enableDownloads && record.size,
|
||||||
needData: false,
|
needData: false,
|
||||||
|
|
|
@ -136,6 +136,8 @@ const DiscSubtitleRow = forwardRef(
|
||||||
releaseDate={record.releaseDate}
|
releaseDate={record.releaseDate}
|
||||||
showLove={false}
|
showLove={false}
|
||||||
className={classes.contextMenu}
|
className={classes.contextMenu}
|
||||||
|
hideShare={true}
|
||||||
|
hideInfo={true}
|
||||||
visible={contextAlwaysVisible}
|
visible={contextAlwaysVisible}
|
||||||
/>
|
/>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue