mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add Share to Context menus, also share artist
This commit is contained in:
parent
051e9c556d
commit
433da37982
5 changed files with 50 additions and 8 deletions
|
@ -100,6 +100,9 @@ func (r *shareRepositoryWrapper) Save(entity interface{}) (string, error) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
switch v.(type) {
|
switch v.(type) {
|
||||||
|
case *model.Artist:
|
||||||
|
s.ResourceType = "artist"
|
||||||
|
s.Contents = r.contentsLabelFromArtist(s.ID, s.ResourceIDs)
|
||||||
case *model.Album:
|
case *model.Album:
|
||||||
s.ResourceType = "album"
|
s.ResourceType = "album"
|
||||||
s.Contents = r.contentsLabelFromAlbums(s.ID, s.ResourceIDs)
|
s.Contents = r.contentsLabelFromAlbums(s.ID, s.ResourceIDs)
|
||||||
|
@ -131,6 +134,16 @@ func (r *shareRepositoryWrapper) Update(id string, entity interface{}, _ ...stri
|
||||||
return r.Persistable.Update(id, entity, cols...)
|
return r.Persistable.Update(id, entity, cols...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (r *shareRepositoryWrapper) contentsLabelFromArtist(shareID string, ids string) string {
|
||||||
|
idList := strings.SplitN(ids, ",", 2)
|
||||||
|
a, err := r.ds.Artist(r.ctx).Get(idList[0])
|
||||||
|
if err != nil {
|
||||||
|
log.Error(r.ctx, "Error retrieving artist name for share", "share", shareID, err)
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
return a.Name
|
||||||
|
}
|
||||||
|
|
||||||
func (r *shareRepositoryWrapper) contentsLabelFromAlbums(shareID string, ids string) string {
|
func (r *shareRepositoryWrapper) contentsLabelFromAlbums(shareID string, ids string) string {
|
||||||
idList := strings.Split(ids, ",")
|
idList := strings.Split(ids, ",")
|
||||||
all, err := r.ds.Album(r.ctx).GetAll(model.QueryOptions{Filters: squirrel.Eq{"id": idList}})
|
all, err := r.ds.Album(r.ctx).GetAll(model.QueryOptions{Filters: squirrel.Eq{"id": idList}})
|
||||||
|
@ -158,6 +171,10 @@ func (r *shareRepositoryWrapper) contentsLabelFromMediaFiles(shareID string, ids
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(mfs) == 1 {
|
||||||
|
return mfs[0].Title
|
||||||
|
}
|
||||||
|
|
||||||
albums := slice.Group(mfs, func(mf model.MediaFile) string {
|
albums := slice.Group(mfs, func(mf model.MediaFile) string {
|
||||||
return mf.Album
|
return mf.Album
|
||||||
})
|
})
|
||||||
|
|
|
@ -78,6 +78,15 @@ func (r *shareRepository) loadMedia(share *model.Share) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
switch share.ResourceType {
|
switch share.ResourceType {
|
||||||
|
case "artist":
|
||||||
|
albumRepo := NewAlbumRepository(r.ctx, r.ormer)
|
||||||
|
share.Albums, err = albumRepo.GetAll(model.QueryOptions{Filters: Eq{"album_artist_id": ids}, Sort: "artist"})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
mfRepo := NewMediaFileRepository(r.ctx, r.ormer)
|
||||||
|
share.Tracks, err = mfRepo.GetAll(model.QueryOptions{Filters: Eq{"album_artist_id": ids}, Sort: "artist"})
|
||||||
|
return err
|
||||||
case "album":
|
case "album":
|
||||||
albumRepo := NewAlbumRepository(r.ctx, r.ormer)
|
albumRepo := NewAlbumRepository(r.ctx, r.ormer)
|
||||||
share.Albums, err = albumRepo.GetAll(model.QueryOptions{Filters: Eq{"id": ids}})
|
share.Albums, err = albumRepo.GetAll(model.QueryOptions{Filters: Eq{"id": ids}})
|
||||||
|
|
|
@ -18,6 +18,7 @@ import {
|
||||||
openExtendedInfoDialog,
|
openExtendedInfoDialog,
|
||||||
DOWNLOAD_MENU_ALBUM,
|
DOWNLOAD_MENU_ALBUM,
|
||||||
DOWNLOAD_MENU_ARTIST,
|
DOWNLOAD_MENU_ARTIST,
|
||||||
|
openShareMenu,
|
||||||
} from '../actions'
|
} from '../actions'
|
||||||
import { LoveButton } from './LoveButton'
|
import { LoveButton } from './LoveButton'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
|
@ -79,12 +80,18 @@ 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: {
|
||||||
|
enabled: config.devEnableShare,
|
||||||
|
needData: false,
|
||||||
|
label: translate('ra.action.share'),
|
||||||
|
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,
|
||||||
label: `${translate('resources.album.actions.download')} (${formatBytes(
|
label: `${translate('ra.action.download')} (${formatBytes(record.size)})`,
|
||||||
record.size
|
|
||||||
)})`,
|
|
||||||
action: () => {
|
action: () => {
|
||||||
dispatch(
|
dispatch(
|
||||||
openDownloadMenu(
|
openDownloadMenu(
|
||||||
|
@ -141,7 +148,7 @@ const ContextMenu = ({
|
||||||
notify('ra.page.error', 'warning')
|
notify('ra.page.error', 'warning')
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
options[key].action()
|
options[key].action(record)
|
||||||
}
|
}
|
||||||
|
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
|
|
|
@ -14,6 +14,7 @@ import {
|
||||||
openExtendedInfoDialog,
|
openExtendedInfoDialog,
|
||||||
openDownloadMenu,
|
openDownloadMenu,
|
||||||
DOWNLOAD_MENU_SONG,
|
DOWNLOAD_MENU_SONG,
|
||||||
|
openShareMenu,
|
||||||
} from '../actions'
|
} from '../actions'
|
||||||
import { LoveButton } from './LoveButton'
|
import { LoveButton } from './LoveButton'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
|
@ -63,11 +64,16 @@ export const SongContextMenu = ({
|
||||||
})
|
})
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
share: {
|
||||||
|
enabled: config.devEnableShare,
|
||||||
|
label: translate('ra.action.share'),
|
||||||
|
action: (record) => {
|
||||||
|
dispatch(openShareMenu([record.id], 'song', record.title))
|
||||||
|
},
|
||||||
|
},
|
||||||
download: {
|
download: {
|
||||||
enabled: config.enableDownloads,
|
enabled: config.enableDownloads,
|
||||||
label: `${translate('resources.song.actions.download')} (${formatBytes(
|
label: `${translate('ra.action.download')} (${formatBytes(record.size)})`,
|
||||||
record.size
|
|
||||||
)})`,
|
|
||||||
action: (record) => {
|
action: (record) => {
|
||||||
dispatch(openDownloadMenu(record, DOWNLOAD_MENU_SONG))
|
dispatch(openDownloadMenu(record, DOWNLOAD_MENU_SONG))
|
||||||
},
|
},
|
||||||
|
|
|
@ -12,7 +12,7 @@ import {
|
||||||
useNotify,
|
useNotify,
|
||||||
useTranslate,
|
useTranslate,
|
||||||
} from 'react-admin'
|
} from 'react-admin'
|
||||||
import { useState } from 'react'
|
import { useEffect, useState } from 'react'
|
||||||
import { shareUrl } from '../utils'
|
import { shareUrl } from '../utils'
|
||||||
import { useTranscodingOptions } from './useTranscodingOptions'
|
import { useTranscodingOptions } from './useTranscodingOptions'
|
||||||
import { useDispatch, useSelector } from 'react-redux'
|
import { useDispatch, useSelector } from 'react-redux'
|
||||||
|
@ -26,6 +26,9 @@ export const ShareDialog = () => {
|
||||||
const notify = useNotify()
|
const notify = useNotify()
|
||||||
const translate = useTranslate()
|
const translate = useTranslate()
|
||||||
const [description, setDescription] = useState('')
|
const [description, setDescription] = useState('')
|
||||||
|
useEffect(() => {
|
||||||
|
setDescription('')
|
||||||
|
}, [ids])
|
||||||
const { TranscodingOptionsInput, format, maxBitRate, originalFormat } =
|
const { TranscodingOptionsInput, format, maxBitRate, originalFormat } =
|
||||||
useTranscodingOptions()
|
useTranscodingOptions()
|
||||||
const [createShare] = useCreate(
|
const [createShare] = useCreate(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue