initial implementation for lyrics

This commit is contained in:
Kendall Garner 2023-05-22 17:38:31 -07:00 committed by Jeff
parent 8eb0029bb8
commit 23f9bd4e9f
9 changed files with 223 additions and 11 deletions

View file

@ -9,6 +9,7 @@ import {
useFullScreenPlayerStore,
useFullScreenPlayerStoreActions,
} from '/@/renderer/store/full-screen-player.store';
import { Lyrics } from '/@/renderer/features/lyrics/lyrics';
const QueueContainer = styled.div`
position: relative;
@ -26,6 +27,12 @@ const QueueContainer = styled.div`
}
`;
const LyricsContainer = styled.div`
height: 100%;
overflow: scroll;
text-align: center;
`;
const ActiveTabIndicator = styled(motion.div)`
position: absolute;
bottom: 0;
@ -115,17 +122,9 @@ export const FullScreenPlayerQueue = () => {
</Group>
</Center>
) : activeTab === 'lyrics' ? (
<Center>
<Group>
<RiInformationFill size="2rem" />
<TextTitle
order={3}
weight={700}
>
COMING SOON
</TextTitle>
</Group>
</Center>
<LyricsContainer>
<Lyrics />
</LyricsContainer>
) : null}
</Stack>
);