(1) Play whole album when selecting a single track

(2) Create popup window on track long-press in which the track can be added to the end or front of the queue
(3) Add Redux counter for added tracks so that the queue is properly updated
This commit is contained in:
Lei Nelissen
2020-08-28 16:28:49 +02:00
parent 3026fdf4da
commit c88158cf16
11 changed files with 226 additions and 29 deletions

View File

@@ -1,23 +1,38 @@
import React from 'react';
import styled from 'styled-components/native';
import { SafeAreaView } from 'react-native';
import React, { useCallback } from 'react';
import styled, { css } from 'styled-components/native';
import { SafeAreaView, Pressable } from 'react-native';
import { colors } from './Colors';
import { useNavigation, StackActions } from '@react-navigation/native';
const Background = styled.View`
interface Props {
fullSize?: boolean;
}
const Background = styled(Pressable)`
padding: 100px 25px;
flex: 1;
justify-content: center;
`;
const Container = styled.View`
const Container = styled(Pressable)<Pick<Props, 'fullSize'>>`
border-radius: 20px;
flex: 1;
margin: auto 0;
${props => props.fullSize && css`
flex: 1;
`}
`;
const Modal: React.FC = ({ children }) => {
const Modal: React.FC<Props> = ({ children, fullSize = true }) => {
const navigation = useNavigation();
const closeModal = useCallback(() => {
navigation.dispatch(StackActions.popToTop());
}, [navigation]);
return (
<Background style={colors.modal}>
<Background style={colors.modal} onPress={closeModal}>
<SafeAreaView style={{ flex: 1 }}>
<Container style={colors.view}>
<Container style={colors.view} fullSize={fullSize}>
{children}
</Container>
</SafeAreaView>