mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-18 14:18:03 +00:00
feat: updates
This commit is contained in:
parent
a1b0bcf4d3
commit
884f3df41a
198 changed files with 4572 additions and 5336 deletions
116
packages/web/pages/Discover.tsx
Normal file
116
packages/web/pages/Discover.tsx
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
import CoverWall from '@/web/components/CoverWall'
|
||||
import PageTransition from '@/web/components/PageTransition'
|
||||
import {
|
||||
fetchPlaylistWithReactQuery,
|
||||
fetchFromCache,
|
||||
} from '@/web/api/hooks/usePlaylist'
|
||||
import { fetchTracksWithReactQuery } from '@/web/api/hooks/useTracks'
|
||||
import { useEffect, useState } from 'react'
|
||||
import { sampleSize } from 'lodash-es'
|
||||
import { FetchPlaylistResponse } from '@/shared/api/Playlists'
|
||||
import { useQuery } from '@tanstack/react-query'
|
||||
|
||||
interface DiscoverAlbum {
|
||||
id: number
|
||||
coverUrl: string
|
||||
large: boolean
|
||||
}
|
||||
|
||||
const getAlbumsFromAPI = async () => {
|
||||
const playlistsIds = [
|
||||
2859214503, // 一周欧美上新
|
||||
2829816518, // 欧美私人订制
|
||||
5327906368, // 乐迷雷达
|
||||
5362359247, // 宝藏雷达
|
||||
3136952023, // 私人雷达
|
||||
60198, // Billboard 排行榜
|
||||
180106, // UK 排行榜
|
||||
5212729721, // 欧美点唱机
|
||||
2724708415, // 私藏推荐精选
|
||||
5300458264, // 新歌雷达
|
||||
7463185187, // 开发者夹带私货
|
||||
]
|
||||
|
||||
const playlists = (await Promise.all(
|
||||
sampleSize(playlistsIds, 5).map(
|
||||
id =>
|
||||
new Promise(resolve => {
|
||||
const cache = fetchFromCache(id)
|
||||
if (cache) {
|
||||
resolve(cache)
|
||||
return
|
||||
}
|
||||
resolve(fetchPlaylistWithReactQuery({ id }))
|
||||
})
|
||||
)
|
||||
)) as FetchPlaylistResponse[]
|
||||
|
||||
let ids: number[] = []
|
||||
playlists.forEach(playlist =>
|
||||
playlist?.playlist?.trackIds?.forEach(t => ids.push(t.id))
|
||||
)
|
||||
if (!ids.length) {
|
||||
return []
|
||||
}
|
||||
ids = sampleSize(ids, 100)
|
||||
|
||||
const tracks = await fetchTracksWithReactQuery({ ids })
|
||||
if (!tracks?.songs?.length) {
|
||||
return []
|
||||
}
|
||||
|
||||
// 从歌单中抽出歌曲
|
||||
const pickedIds: number[] = []
|
||||
const albums: DiscoverAlbum[] = []
|
||||
tracks.songs.forEach(t => {
|
||||
if (pickedIds.includes(t.al.id)) return
|
||||
pickedIds.push(t.al.id)
|
||||
albums.push({
|
||||
id: t.al.id,
|
||||
coverUrl: t.al.picUrl,
|
||||
large: false,
|
||||
})
|
||||
})
|
||||
|
||||
// 挑选出大图
|
||||
const largeCover = sampleSize([...Array(100).keys()], ~~(100 / 3))
|
||||
albums.map((album, index) => (album.large = largeCover.includes(index)))
|
||||
|
||||
localStorage.setItem('discoverAlbums', JSON.stringify(albums))
|
||||
localStorage.setItem('discoverAlbumsTime', String(Date.now()))
|
||||
|
||||
return albums
|
||||
}
|
||||
|
||||
const Discover = () => {
|
||||
const { data: albums } = useQuery(
|
||||
['DiscoveryAlbums'],
|
||||
async () => {
|
||||
const albumsInLocalStorageTime =
|
||||
localStorage.getItem('discoverAlbumsTime')
|
||||
if (
|
||||
!albumsInLocalStorageTime ||
|
||||
Date.now() - Number(albumsInLocalStorageTime) > 1000 * 60 * 60 * 2 // 2小时刷新一次
|
||||
) {
|
||||
return await getAlbumsFromAPI()
|
||||
} else {
|
||||
return JSON.parse(localStorage.getItem('discoverAlbums') || '[]')
|
||||
}
|
||||
},
|
||||
{
|
||||
staleTime: 1000 * 60 * 60 * 2, // 2hr
|
||||
refetchOnWindowFocus: false,
|
||||
refetchInterval: 1000 * 60 * 60 * 2, // 2hr
|
||||
}
|
||||
)
|
||||
|
||||
return (
|
||||
<PageTransition disableEnterAnimation={true}>
|
||||
<div className='mx-2.5 mt-2.5 pb-10 lg:mx-0 lg:mt-0 lg:pb-16'>
|
||||
<CoverWall albums={albums || []} />
|
||||
</div>
|
||||
</PageTransition>
|
||||
)
|
||||
}
|
||||
|
||||
export default Discover
|
||||
Loading…
Add table
Add a link
Reference in a new issue