2019-12-13 15:53:32 -05:00
|
|
|
import React, { useState, useEffect } from 'react'
|
2019-12-14 18:05:19 -05:00
|
|
|
import SpotifyWebApi from 'spotify-web-api-js'
|
|
|
|
import Artist from '../components/Artist'
|
|
|
|
import './ArtistSearch.scss'
|
|
|
|
|
|
|
|
const spotifyApi = new SpotifyWebApi()
|
2019-12-13 15:53:32 -05:00
|
|
|
|
|
|
|
function ArtistSearch() {
|
2019-12-14 12:32:28 -05:00
|
|
|
let [search, setSearch] = useState(null)
|
2019-12-14 18:05:19 -05:00
|
|
|
let [artists, setArtists] = useState(null)
|
2019-12-13 15:53:32 -05:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
const search = window.location.search
|
|
|
|
const params = new URLSearchParams(search)
|
2019-12-14 18:05:19 -05:00
|
|
|
const token = params.get('access_token')
|
|
|
|
|
|
|
|
spotifyApi.setAccessToken(token)
|
2019-12-13 15:53:32 -05:00
|
|
|
}, [])
|
|
|
|
|
2019-12-14 12:32:28 -05:00
|
|
|
useEffect(() => {
|
2019-12-14 18:05:19 -05:00
|
|
|
if (search && search.length > 4) {
|
|
|
|
spotifyApi.searchArtists(search)
|
|
|
|
.then(function(data) {
|
|
|
|
setArtists(data.artists.items)
|
|
|
|
}, function(err) {
|
|
|
|
console.error(err);
|
|
|
|
})
|
|
|
|
}
|
2019-12-14 12:32:28 -05:00
|
|
|
}, [search])
|
|
|
|
|
|
|
|
const handleChange = e => {
|
|
|
|
setSearch(e.currentTarget.value)
|
|
|
|
}
|
|
|
|
|
2019-12-13 15:53:32 -05:00
|
|
|
return (
|
|
|
|
<div className="artist-search">
|
|
|
|
<h1>Artist search</h1>
|
|
|
|
|
2019-12-14 12:32:28 -05:00
|
|
|
<input placeholder='Search for an artist' onChange={handleChange} />
|
2019-12-14 18:05:19 -05:00
|
|
|
|
|
|
|
{artists && (
|
|
|
|
<div className='artists'>
|
|
|
|
<ul className='list'>
|
|
|
|
{artists.map((artist, index) => (
|
|
|
|
<li className='list-item' key={index}>
|
|
|
|
<Artist props={artist} />
|
|
|
|
</li>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
2019-12-13 15:53:32 -05:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ArtistSearch
|