Skip to content

Commit

Permalink
refactor: seperate buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Oct 14, 2023
1 parent eccba87 commit b117a4b
Show file tree
Hide file tree
Showing 8 changed files with 216 additions and 200 deletions.
77 changes: 2 additions & 75 deletions src/components/buttons/buttons.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,82 +3,9 @@
z-index: 10;
top: 30px;
display: flex;
width: max-content;
align-items: center;
justify-content: center;
margin: 0 auto;
column-gap: 10px;

& .playButton {
display: flex;
width: 150px;
height: 45px;
align-items: center;
justify-content: center;
border: none;
border-radius: 100px;
border-top: 2px solid #818cf8;
border-bottom: 3px solid #4f46e5;
background-color: #6366f1;
color: var(--color-foreground);
cursor: pointer;
font-family: var(--font-heading);
font-size: var(--font-base);
line-height: 0;
outline: none;

&:disabled,
&.disabled {
cursor: not-allowed;
}

& span {
font-size: var(--font-lg);
}
}

& .smallButton {
display: flex;
width: 45px;
height: 45px;
align-items: center;
justify-content: center;
border: none;
border-radius: 100px;
border-top: 2px solid var(--color-neutral-950);
border-bottom: 3px solid var(--color-neutral-600);
background-color: var(--color-neutral-800);
color: var(--color-neutral-200);
cursor: pointer;
font-family: var(--font-heading);
font-size: var(--font-md);
line-height: 0;
outline: none;
transition: 0.2s;

&:disabled,
&.disabled {
cursor: not-allowed;
}

&.restore {
border-top-color: #34d399;
border-bottom-color: #047857;
background-color: #10b981;
color: var(--color-foreground);
}

&.delete {
border-top-color: #fb7185;
border-bottom-color: #be123c;
background-color: #f43f5e;
color: var(--color-foreground);
}
}

& .tooltip {
padding: 6px 12px;
border: 1px solid var(--color-neutral-200);
border-radius: 100px;
background-color: var(--color-neutral-100);
font-size: var(--font-xsm);
}
}
129 changes: 4 additions & 125 deletions src/components/buttons/buttons.tsx
Original file line number Diff line number Diff line change
@@ -1,134 +1,13 @@
import { useEffect, useState } from 'react';
import { BiPause, BiPlay, BiUndo, BiTrash } from 'react-icons/bi/index';
import {
useFloating,
autoUpdate,
offset,
flip,
shift,
useHover,
useFocus,
useDismiss,
useRole,
useInteractions,
} from '@floating-ui/react';
import { AnimatePresence, motion } from 'framer-motion';

import { useSoundStore } from '@/store';
import { usePlay } from '@/contexts/play';
import { cn } from '@/helpers/styles';
import { PlayButton } from './play';
import { UnselectButton } from './unselect';

import styles from './buttons.module.css';

export function Buttons() {
/**
* Tooltip Start
*/
const [isTooltipOpen, setIsTooltipOpen] = useState(false);

const { context, floatingStyles, refs } = useFloating({
middleware: [offset(15), flip(), shift()],
onOpenChange: setIsTooltipOpen,
open: isTooltipOpen,
placement: 'top',
whileElementsMounted: autoUpdate,
});

const hover = useHover(context, { move: false });
const focus = useFocus(context);
const dismiss = useDismiss(context);
const role = useRole(context, { role: 'tooltip' });

const { getFloatingProps, getReferenceProps } = useInteractions([
hover,
focus,
dismiss,
role,
]);
/**
* Tooltip End
*/

const { isPlaying, pause, toggle } = usePlay();
const noSelected = useSoundStore(state => state.noSelected());
const restoreHistory = useSoundStore(state => state.restoreHistory);
const hasHistory = useSoundStore(state => !!state.history);
const unselectAll = useSoundStore(state => state.unselectAll);

const handleClick = () => {
if (noSelected) return pause();

toggle();
};

useEffect(() => {
if (isPlaying && noSelected) pause();
}, [isPlaying, pause, noSelected]);

return (
<div className={styles.buttons}>
<motion.button
className={cn(styles.playButton, noSelected && styles.disabled)}
disabled={noSelected}
layout
onClick={handleClick}
>
{isPlaying ? (
<>
<span>
<BiPause />
</span>{' '}
Pause
</>
) : (
<>
<span>
<BiPlay />
</span>{' '}
Play
</>
)}
</motion.button>

<AnimatePresence mode="popLayout">
{(!noSelected || hasHistory) && (
<motion.div
animate={{ opacity: 1, x: 0 }}
exit={{ opacity: 0, x: 20 }}
initial={{ opacity: 0, x: 20 }}
>
<button
disabled={noSelected && !hasHistory}
ref={refs.setReference}
{...getReferenceProps}
aria-label={
hasHistory ? 'Restore Unselected Sounds' : 'Unselect All Sounds'
}
className={cn(
styles.smallButton,
hasHistory ? styles.restore : styles.delete,
noSelected && !hasHistory && styles.disabled,
)}
onClick={() => {
if (hasHistory) restoreHistory();
else if (!noSelected) unselectAll(true);
}}
>
{hasHistory ? <BiUndo /> : <BiTrash />}
</button>
</motion.div>
)}
</AnimatePresence>

{isTooltipOpen && (
<div
ref={refs.setFloating}
style={floatingStyles}
{...getFloatingProps({ className: styles.tooltip })}
>
{hasHistory ? 'Restore unselected sounds.' : 'Unselect all sounds.'}
</div>
)}
<PlayButton />
<UnselectButton />
</div>
);
}
1 change: 1 addition & 0 deletions src/components/buttons/play/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { PlayButton } from './play';
27 changes: 27 additions & 0 deletions src/components/buttons/play/play.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.playButton {
display: flex;
width: 150px;
height: 45px;
align-items: center;
justify-content: center;
border: none;
border-radius: 100px;
border-top: 2px solid #818cf8;
border-bottom: 3px solid #4f46e5;
background-color: #6366f1;
color: var(--color-foreground);
cursor: pointer;
font-family: var(--font-heading);
font-size: var(--font-base);
line-height: 0;
outline: none;

&:disabled,
&.disabled {
cursor: not-allowed;
}

& span {
font-size: var(--font-lg);
}
}
49 changes: 49 additions & 0 deletions src/components/buttons/play/play.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import { useEffect } from 'react';
import { BiPause, BiPlay } from 'react-icons/bi/index';
import { motion } from 'framer-motion';

import { useSoundStore } from '@/store';
import { usePlay } from '@/contexts/play';
import { cn } from '@/helpers/styles';

import styles from './play.module.css';

export function PlayButton() {
const { isPlaying, pause, toggle } = usePlay();
const noSelected = useSoundStore(state => state.noSelected());

const handleClick = () => {
if (noSelected) return pause();

toggle();
};

useEffect(() => {
if (isPlaying && noSelected) pause();
}, [isPlaying, pause, noSelected]);

return (
<motion.button
className={cn(styles.playButton, noSelected && styles.disabled)}
disabled={noSelected}
layout
onClick={handleClick}
>
{isPlaying ? (
<>
<span>
<BiPause />
</span>{' '}
Pause
</>
) : (
<>
<span>
<BiPlay />
</span>{' '}
Play
</>
)}
</motion.button>
);
}
1 change: 1 addition & 0 deletions src/components/buttons/unselect/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { UnselectButton } from './unselect';
39 changes: 39 additions & 0 deletions src/components/buttons/unselect/unselect.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
.unselectButton {
display: flex;
width: 45px;
height: 45px;
align-items: center;
justify-content: center;
border: none;
border-radius: 100px;
border-top: 2px solid #fb7185;
border-bottom: 3px solid #be123c;
background-color: #f43f5e;
color: var(--color-foreground);
cursor: pointer;
font-family: var(--font-heading);
font-size: var(--font-md);
line-height: 0;
outline: none;
transition: 0.2s;

&:disabled,
&.disabled {
cursor: not-allowed;
}

&.restore {
border-top-color: #34d399;
border-bottom-color: #047857;
background-color: #10b981;
color: var(--color-foreground);
}
}

.tooltip {
padding: 6px 12px;
border: 1px solid var(--color-neutral-200);
border-radius: 100px;
background-color: var(--color-neutral-100);
font-size: var(--font-xsm);
}
Loading

0 comments on commit b117a4b

Please sign in to comment.