2020-07-23 09:43:12 +00:00
|
|
|
import React, { useState, useCallback, useEffect } from 'react';
|
2020-07-22 10:49:22 +00:00
|
|
|
import { Grommet } from 'grommet';
|
2020-07-23 09:43:12 +00:00
|
|
|
import { debounce } from 'lodash';
|
|
|
|
import { gql, useLazyQuery } from '@apollo/client';
|
|
|
|
|
2020-07-22 13:57:37 +00:00
|
|
|
import { Header } from './Header';
|
2020-07-23 09:43:12 +00:00
|
|
|
import { Search } from './Search';
|
|
|
|
import { Results } from './Results';
|
|
|
|
import { Artists, Artist } from '../interfaces';
|
2020-07-22 10:49:22 +00:00
|
|
|
|
2020-07-23 09:43:12 +00:00
|
|
|
const QUERY_ARTIST_ALBUMS = gql`
|
|
|
|
query Artist($byName: String!) {
|
|
|
|
queryArtists(byName: $byName) {
|
|
|
|
name
|
|
|
|
image
|
|
|
|
id
|
|
|
|
albums {
|
|
|
|
name
|
|
|
|
image
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default function App() {
|
|
|
|
const [inputValue, setInputValue] = useState('');
|
|
|
|
const [getArtists, { data }] = useLazyQuery(QUERY_ARTIST_ALBUMS);
|
2020-07-23 12:07:29 +00:00
|
|
|
const [artists, setArtists] = useState<Artists>(undefined);
|
2020-07-23 09:43:12 +00:00
|
|
|
const [suggestions, setSuggestions] = useState<string[] | undefined>(
|
|
|
|
undefined,
|
|
|
|
);
|
2020-07-23 12:23:26 +00:00
|
|
|
const [selected, setSelected] = useState(false);
|
2020-07-23 09:43:12 +00:00
|
|
|
|
|
|
|
// Debounce the database query
|
2020-07-23 12:07:29 +00:00
|
|
|
// Based on: https://archive.is/wip/6JDqb
|
2020-07-23 09:43:12 +00:00
|
|
|
const updateQuery = () => {
|
|
|
|
getArtists({ variables: { byName: inputValue } });
|
|
|
|
};
|
2020-07-23 12:23:26 +00:00
|
|
|
|
2020-07-23 09:43:12 +00:00
|
|
|
const delayedQuery = useCallback(debounce(updateQuery, 500), [inputValue]);
|
2020-07-23 12:23:26 +00:00
|
|
|
|
2020-07-23 09:43:12 +00:00
|
|
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
setInputValue(e.target.value);
|
|
|
|
};
|
2020-07-23 12:23:26 +00:00
|
|
|
|
2020-07-23 09:43:12 +00:00
|
|
|
useEffect(() => {
|
|
|
|
delayedQuery();
|
|
|
|
// Cancel previous debounce calls during useEffect cleanup.
|
|
|
|
return delayedQuery.cancel;
|
|
|
|
}, [inputValue, delayedQuery]);
|
2020-07-23 12:23:26 +00:00
|
|
|
|
|
|
|
const handleSelect = () => {
|
|
|
|
setSelected(true);
|
|
|
|
};
|
|
|
|
|
2020-07-23 09:43:12 +00:00
|
|
|
useEffect(() => {
|
2020-07-23 12:23:26 +00:00
|
|
|
// TODO optimize re-rendering, probably by using onCompleted instead of this useEffect
|
2020-07-23 12:07:29 +00:00
|
|
|
// See https://github.com/apollographql/apollo-client/issues/5268#issuecomment-596950174
|
2020-07-23 09:43:12 +00:00
|
|
|
if (data && data.queryArtists !== []) {
|
|
|
|
// Limit artists to 5
|
|
|
|
const updatedArtists = data.queryArtists.slice(0, 5);
|
|
|
|
const updatedSuggestions: string[] = updatedArtists.map(
|
|
|
|
(el: Artist) => {
|
|
|
|
return el.name;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
setSuggestions(updatedSuggestions);
|
|
|
|
setArtists(updatedArtists);
|
|
|
|
}
|
|
|
|
}, [data]);
|
2020-07-22 09:57:07 +00:00
|
|
|
|
|
|
|
return (
|
2020-07-22 10:49:22 +00:00
|
|
|
<Grommet theme={theme}>
|
2020-07-22 13:57:37 +00:00
|
|
|
<Header>
|
|
|
|
<h1>Spoti Search</h1>
|
|
|
|
</Header>
|
2020-07-23 09:43:12 +00:00
|
|
|
<Search
|
|
|
|
inputValue={inputValue}
|
|
|
|
handleChange={handleChange}
|
|
|
|
suggestions={suggestions}
|
2020-07-23 12:23:26 +00:00
|
|
|
handleSelect={handleSelect}
|
2020-07-23 09:43:12 +00:00
|
|
|
/>
|
2020-07-23 12:23:26 +00:00
|
|
|
<Results artists={artists} selected={selected} />
|
2020-07-22 10:49:22 +00:00
|
|
|
</Grommet>
|
2020-07-22 09:57:07 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-23 09:43:12 +00:00
|
|
|
const theme = {
|
|
|
|
global: {
|
|
|
|
font: {
|
|
|
|
family: 'Roboto',
|
|
|
|
size: '18px',
|
|
|
|
height: '20px',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|