mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Refactor URL builders in UI
This commit is contained in:
parent
84aa094e56
commit
357c0e1e19
6 changed files with 27 additions and 21 deletions
|
@ -1,13 +1,13 @@
|
||||||
import ReactJkMusicPlayer from 'navidrome-music-player'
|
import ReactJkMusicPlayer from 'navidrome-music-player'
|
||||||
import config, { shareInfo } from './config'
|
import config, { shareInfo } from './config'
|
||||||
import { baseUrl } from './utils'
|
import { baseUrl, shareCoverUrl, shareStreamUrl } from './utils'
|
||||||
|
|
||||||
const SharePlayer = () => {
|
const SharePlayer = () => {
|
||||||
const list = shareInfo?.tracks.map((s) => {
|
const list = shareInfo?.tracks.map((s) => {
|
||||||
return {
|
return {
|
||||||
name: s.title,
|
name: s.title,
|
||||||
musicSrc: baseUrl(config.publicBaseUrl + '/s/' + s.id),
|
musicSrc: shareStreamUrl(s.id),
|
||||||
cover: baseUrl(config.publicBaseUrl + '/img/' + s.id + '?size=300'),
|
cover: shareCoverUrl(s.id),
|
||||||
singer: s.artist,
|
singer: s.artist,
|
||||||
duration: s.duration,
|
duration: s.duration,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
import config from '../config'
|
|
||||||
|
|
||||||
export const baseUrl = (path) => {
|
|
||||||
const base = config.baseURL || ''
|
|
||||||
const parts = [base]
|
|
||||||
parts.push(path.replace(/^\//, ''))
|
|
||||||
return parts.join('/')
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
export const docsUrl = (path) => `https://www.navidrome.org${path}`
|
|
|
@ -1,7 +1,5 @@
|
||||||
export * from './baseUrl'
|
|
||||||
export * from './docsUrl'
|
|
||||||
export * from './formatters'
|
export * from './formatters'
|
||||||
export * from './intersperse'
|
export * from './intersperse'
|
||||||
export * from './notifications'
|
export * from './notifications'
|
||||||
export * from './openInNewTab'
|
export * from './openInNewTab'
|
||||||
export * from './shareUrl'
|
export * from './urls'
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
import config from '../config'
|
|
||||||
|
|
||||||
export const shareUrl = (path) => {
|
|
||||||
const url = new URL(config.publicBaseUrl + '/' + path, window.location.href)
|
|
||||||
return url.href
|
|
||||||
}
|
|
23
ui/src/utils/urls.js
Normal file
23
ui/src/utils/urls.js
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
import config from '../config'
|
||||||
|
|
||||||
|
export const baseUrl = (path) => {
|
||||||
|
const base = config.baseURL || ''
|
||||||
|
const parts = [base]
|
||||||
|
parts.push(path.replace(/^\//, ''))
|
||||||
|
return parts.join('/')
|
||||||
|
}
|
||||||
|
|
||||||
|
export const shareUrl = (path) => {
|
||||||
|
const url = new URL(config.publicBaseUrl + '/' + path, window.location.href)
|
||||||
|
return url.href
|
||||||
|
}
|
||||||
|
|
||||||
|
export const shareStreamUrl = (id) => {
|
||||||
|
return baseUrl(config.publicBaseUrl + '/s/' + id)
|
||||||
|
}
|
||||||
|
|
||||||
|
export const shareCoverUrl = (id) => {
|
||||||
|
return baseUrl(config.publicBaseUrl + '/img/' + id + '?size=300')
|
||||||
|
}
|
||||||
|
|
||||||
|
export const docsUrl = (path) => `https://www.navidrome.org${path}`
|
Loading…
Add table
Add a link
Reference in a new issue