mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
import {
|
|
Datagrid,
|
|
FunctionField,
|
|
List,
|
|
NumberField,
|
|
TextField,
|
|
} from 'react-admin'
|
|
import React from 'react'
|
|
import { DateField, QualityInfo } from '../common'
|
|
import { shareUrl } from '../utils'
|
|
import { Link } from '@material-ui/core'
|
|
import config from '../config'
|
|
|
|
export const FormatInfo = ({ record, size }) => {
|
|
const r = { suffix: record.format, bitRate: record.maxBitRate }
|
|
r.suffix =
|
|
r.suffix || (r.bitRate ? config.defaultDownsamplingFormat : 'Original')
|
|
return <QualityInfo record={r} size={size} />
|
|
}
|
|
|
|
const ShareList = (props) => {
|
|
return (
|
|
<List
|
|
{...props}
|
|
sort={{ field: 'createdAt', order: 'DESC' }}
|
|
exporter={false}
|
|
>
|
|
<Datagrid rowClick="edit">
|
|
<FunctionField
|
|
source={'id'}
|
|
render={(r) => (
|
|
<Link
|
|
href={shareUrl(r.id)}
|
|
label="URL"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
onClick={(e) => {
|
|
e.stopPropagation()
|
|
}}
|
|
>
|
|
{r.id}
|
|
</Link>
|
|
)}
|
|
/>
|
|
<TextField source="username" />
|
|
<TextField source="description" />
|
|
<TextField source="contents" />
|
|
<FormatInfo source="format" />
|
|
<NumberField source="visitCount" />
|
|
<DateField source="expiresAt" showTime />
|
|
<DateField source="lastVisitedAt" showTime sortByOrder={'DESC'} />
|
|
</Datagrid>
|
|
</List>
|
|
)
|
|
}
|
|
|
|
export default ShareList
|