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, 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,

View file

@ -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>