Improve responsiveness and structure

This commit is contained in:
rui hildt 2020-07-24 18:42:26 +02:00
parent 8d182a1177
commit 84a6cc4f4e
4 changed files with 79 additions and 56 deletions

View File

@ -1,5 +1,5 @@
import React, { useState, useCallback, useEffect } from 'react'; import React, { useState, useCallback, useEffect } from 'react';
import { Grommet, Heading } from 'grommet'; import { Grommet } from 'grommet';
import { debounce } from 'lodash'; import { debounce } from 'lodash';
import { gql, useLazyQuery } from '@apollo/client'; import { gql, useLazyQuery } from '@apollo/client';
@ -50,7 +50,11 @@ export default function App() {
const handleSelect = (suggestion: string) => { const handleSelect = (suggestion: string) => {
let updatedArtists: Artists = []; let updatedArtists: Artists = [];
let suggestedArtists: Artists = data.queryArtists.slice(0, 5);
let suggestedArtists: Artists = data.queryArtists
.slice(0, 5)
// Map to make a copy of the array, maybe uneeded
.map((artist: Artist) => artist);
// Find the selected artist and move it to index 0 // Find the selected artist and move it to index 0
for (let i = 0; i < suggestedArtists!.length; i++) { for (let i = 0; i < suggestedArtists!.length; i++) {
@ -96,11 +100,7 @@ export default function App() {
return ( return (
<Grommet theme={theme}> <Grommet theme={theme}>
<Header> <Header />
<Heading level='1' margin={{ vertical: 'small' }} color='light-1'>
Spoti Search
</Heading>
</Header>
<Search <Search
inputValue={inputValue} inputValue={inputValue}
suggestions={suggestions} suggestions={suggestions}

View File

@ -1,7 +1,7 @@
import React, { PropsWithChildren } from 'react'; import React from 'react';
import { Box } from 'grommet'; import { Box, Text } from 'grommet';
export const Header = (props: PropsWithChildren<{}>) => { export const Header = () => {
return ( return (
<Box <Box
as='header' as='header'
@ -11,7 +11,15 @@ export const Header = (props: PropsWithChildren<{}>) => {
background='brand' background='brand'
pad={{ left: 'medium', right: 'small', vertical: 'small' }} pad={{ left: 'medium', right: 'small', vertical: 'small' }}
style={{ zIndex: 1 }} style={{ zIndex: 1 }}
{...props} >
/> <Text
margin={{ vertical: 'small' }}
color='light-1'
size='xxlarge'
weight='bold'
>
Spoti Search
</Text>
</Box>
); );
}; };

View File

@ -1,5 +1,5 @@
import React from 'react'; import React from 'react';
import { Box, Heading } from 'grommet'; import { Box, Text } from 'grommet';
import placeholder from '../assets/placeholder-music.jpg'; import placeholder from '../assets/placeholder-music.jpg';
@ -20,20 +20,13 @@ export const Other = ({
return ( return (
<Box <Box
round='xxsmall' round='xxsmall'
overflow='hidden' pad='xsmall'
align='center'
pad='small'
onClick={() => handleClick(name)} onClick={() => handleClick(name)}
width='130px'
> >
<Heading
level='4'
margin={{ bottom: 'small', top: 'small', left: 'small' }}
>
{name}
</Heading>
<Box <Box
height='small' height='120px'
width='small' width='120px'
round='full' round='full'
background={{ background={{
repeat: 'no-repeat', repeat: 'no-repeat',
@ -41,6 +34,14 @@ export const Other = ({
image: `url(${image})`, image: `url(${image})`,
}} }}
/> />
<Text
margin={{ bottom: 'small', top: 'small', left: 'small' }}
textAlign='center'
weight='bold'
wordBreak='break-word'
>
{name}
</Text>
</Box> </Box>
); );
}; };

View File

@ -37,11 +37,11 @@ export const Results = ({
<Grid <Grid
as='section' as='section'
rows={['fit', 'fit']} rows={['fit', 'fit']}
columns={['fit', '2/3']} columns={['fit', 'fit']}
gap='large' gap='large'
areas={[ areas={[
['artist-title', 'other-title'], ['title', 'title'],
['artist', 'other'], ['artist-other', 'artist-other'],
['disco-title', 'disco-title'], ['disco-title', 'disco-title'],
['discography', 'discography'], ['discography', 'discography'],
]} ]}
@ -49,13 +49,19 @@ export const Results = ({
> >
<Heading <Heading
level='1' level='1'
size='small' gridArea='title'
gridArea='artist-title' size='medium'
margin={{ vertical: 'none' }} margin={{ vertical: 'none' }}
> >
{selectedName} {selectedName}
</Heading> </Heading>
<Box gridArea='artist'> <Box
gridArea='artist-other'
direction='row-responsive'
responsive
gap='large'
>
<Box width={{ min: '300px', max: '300px' }}>
<Box <Box
round='full' round='full'
background={{ background={{
@ -67,18 +73,21 @@ export const Results = ({
width='300px' width='300px'
/> />
</Box> </Box>
<Box justify='center'>
<Heading <Heading
level='2' level='2'
gridArea='other-title'
margin={{ vertical: 'none' }} margin={{ vertical: 'none' }}
alignSelf='end'
size='small' size='small'
> >
Other results Other results
</Heading> </Heading>
<ResponsiveContext.Consumer> <Box
{(size) => ( direction='row-reverse'
<Box gridArea='other' direction='row-reverse' justify='end' wrap gap='medium'> justify='end'
wrap
gap='medium'
width={{ min: '332px' }}
>
{otherArtists.map((artist) => ( {otherArtists.map((artist) => (
<Other <Other
key={artist.id} key={artist.id}
@ -88,9 +97,14 @@ export const Results = ({
/> />
))} ))}
</Box> </Box>
)} </Box>
</ResponsiveContext.Consumer> </Box>
<Heading level='2' gridArea='disco-title' size='large' margin={{bottom: "none"}}> <Heading
level='2'
gridArea='disco-title'
size='medium'
margin={{ bottom: 'none' }}
>
Discography Discography
</Heading> </Heading>
<ResponsiveContext.Consumer> <ResponsiveContext.Consumer>
@ -98,7 +112,7 @@ export const Results = ({
<Grid <Grid
gridArea='discography' gridArea='discography'
align='start' align='start'
columns={{ count: 'fill', size: '300px' }} columns={{ count: 'fill', size: '260px' }}
gap='large' gap='large'
> >
{selectedAlbums.map((album) => ( {selectedAlbums.map((album) => (