mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 19:44:15 +00:00
141 lines
4.1 KiB
JavaScript
Executable File
141 lines
4.1 KiB
JavaScript
Executable File
import React from "react"
|
|
import * as antd from "antd"
|
|
import classnames from "classnames"
|
|
import { ImageViewer } from "components"
|
|
import moment from "moment"
|
|
|
|
import { Icons } from "components/Icons"
|
|
|
|
import PlaylistsModel from "models/playlists"
|
|
|
|
import "./index.less"
|
|
|
|
const TrackItem = (props) => {
|
|
return <div className="track_item">
|
|
<div className="track_item_actions">
|
|
<antd.Button
|
|
type="primary"
|
|
shape="circle"
|
|
icon={<Icons.Play />}
|
|
onClick={props.onClick}
|
|
/>
|
|
</div>
|
|
<div className="track_item_cover">
|
|
<ImageViewer src={props.track.thumbnail} />
|
|
</div>
|
|
<div className="track_item_details">
|
|
<div className="track_item_title">
|
|
{props.track.title}
|
|
</div>
|
|
<div className="track_item_artist">
|
|
{props.track.artist}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
export default (props) => {
|
|
const play_id = props.params.play_id
|
|
|
|
const [playlist, setPlaylist] = React.useState(null)
|
|
|
|
const loadData = async () => {
|
|
const response = await PlaylistsModel.getPlaylist(play_id).catch((err) => {
|
|
console.error(err)
|
|
app.message.error("Failed to load playlist")
|
|
return null
|
|
})
|
|
|
|
console.log(response)
|
|
|
|
if (response) {
|
|
setPlaylist(response)
|
|
}
|
|
}
|
|
|
|
const handleOnClickTrack = (track) => {
|
|
// search index of track
|
|
const index = playlist.list.findIndex((item) => {
|
|
return item._id === track._id
|
|
})
|
|
|
|
if (index === -1) {
|
|
return
|
|
}
|
|
|
|
app.cores.player.startPlaylist(playlist.list, index)
|
|
}
|
|
|
|
React.useEffect(() => {
|
|
loadData()
|
|
}, [])
|
|
|
|
if (!playlist) {
|
|
return <antd.Skeleton active />
|
|
}
|
|
|
|
return <div
|
|
className={
|
|
classnames("play", playlist.type)
|
|
}
|
|
>
|
|
<div className="play_info_wrapper">
|
|
<div className="play_info">
|
|
<div className="play_info_cover">
|
|
<ImageViewer src={playlist?.thumbnail ?? "/assets/no_song.png"} />
|
|
</div>
|
|
|
|
<div className="play_info_details">
|
|
<div className="play_info_title">
|
|
<h1>{playlist.title}</h1>
|
|
</div>
|
|
|
|
<div className="play_info_description">
|
|
<h3>
|
|
{playlist.description}
|
|
</h3>
|
|
</div>
|
|
|
|
<div className="play_info_statistics">
|
|
<div className="play_info_statistics_item">
|
|
<p
|
|
onClick={() => {
|
|
app.navigation.goToAccount(playlist.user.username)
|
|
}}
|
|
>
|
|
<Icons.MdPerson />
|
|
|
|
Publised by <a>{playlist.user.username}</a>
|
|
</p>
|
|
</div>
|
|
<div className="play_info_statistics_item">
|
|
<p>
|
|
<Icons.MdLibraryMusic /> {playlist.list.length} Tracks
|
|
</p>
|
|
</div>
|
|
|
|
<div className="play_info_statistics_item">
|
|
<p>
|
|
<Icons.MdAccessTime /> Released on {moment(playlist.created_at).format("DD/MM/YYYY")}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="list">
|
|
<h1>
|
|
<Icons.MdPlaylistPlay /> Tracks
|
|
</h1>
|
|
{
|
|
playlist.list.map((item, index) => {
|
|
return <TrackItem
|
|
track={item}
|
|
onClick={() => handleOnClickTrack(item)}
|
|
/>
|
|
})
|
|
}
|
|
</div>
|
|
</div>
|
|
} |