fix(common): Hide Share/Get Info items in disc context menu - #3204 (#3209)

Signed-off-by: Sunny <sunny@sny.sh>
This commit is contained in:
Sunny 2024-08-27 03:40:05 +02:00 committed by GitHub
parent 195f2b3f38
commit 6709ab3c5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 7 deletions

View file

@ -40,6 +40,7 @@ const ContextMenu = ({
color,
className,
songQueryParams,
hideShare,
hideInfo,
}) => {
const classes = useStyles({ color })
@ -80,13 +81,15 @@ const ContextMenu = ({
label: translate('resources.album.actions.addToPlaylist'),
action: (data, ids) => dispatch(openAddToPlaylist({ selectedIds: ids })),
},
share: {
enabled: config.enableSharing,
needData: false,
label: translate('ra.action.share'),
action: (record) =>
dispatch(openShareMenu([record.id], resource, record.name)),
},
...(!hideShare && {
share: {
enabled: config.enableSharing,
needData: false,
label: translate('ra.action.share'),
action: (record) =>
dispatch(openShareMenu([record.id], resource, record.name)),
},
}),
download: {
enabled: config.enableDownloads && record.size,
needData: false,

View file

@ -136,6 +136,8 @@ const DiscSubtitleRow = forwardRef(
releaseDate={record.releaseDate}
showLove={false}
className={classes.contextMenu}
hideShare={true}
hideInfo={true}
visible={contextAlwaysVisible}
/>
</TableCell>