Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

하단 모달 슬라이드 컴포넌트 구현 #38

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions src/components/shared/ModalBottomSheet/ModalBottomSheet.styles.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import styled from '@emotion/styled';

export const StyledDeemBackground = styled.div`
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: ${({ theme }) => theme.PALETTE.GRAY_900};
opacity: 0.5;
`;

export const StyledBottomSheet = styled.div`
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 75%;
${({ theme }) => theme.STYLES.FLEX_CENTER};
flex-direction: column;
background-color: white;
border-top-left-radius: 0.75rem;
border-top-right-radius: 0.75rem;
animation: bottom-sheet-up 0.2s ease-in-out;
`;

export const StyledModalHeader = styled.div`
position: absolute;
top: 0.69rem;
width: 3.125rem;
height: 0.1875rem;
background-color: ${({ theme }) => theme.PALETTE.GRAY_300};
`;

export const StyledModalBottom = styled.div`
@keyframes bottom-sheet-up {
0% {
transform: translateY(100%);
}
100% {
transform: translateY(0);
}
}

@keyframes bottom-sheet-down {
0% {
transform: translateY(0);
}
100% {
transform: translateY(100%);
}
}
`;

export const BottomSheetContainer = styled.div``;
92 changes: 92 additions & 0 deletions src/components/shared/ModalBottomSheet/ModalBottomSheet.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
import React, { useEffect, useRef, useState } from 'react';

import { useBottomSheet } from '@hooks/useBottomSheet';

import {
BottomSheetContainer,
StyledBottomSheet,
StyledDeemBackground,
StyledModalBottom,
StyledModalHeader,
} from './ModalBottomSheet.styles';

type ModalBottomSheetProps = {
children: React.ReactNode;
setShowModal: React.Dispatch<React.SetStateAction<boolean>>;
};

const BottomSheet = ({ children }: { children: React.ReactNode }) => (
<StyledBottomSheet>{children}</StyledBottomSheet>
);

export const ModalBottomSheet = (props: ModalBottomSheetProps) => {
const [isModalVisible, setIsModalVisible] = useState(true);
const modalRef = useRef<HTMLDivElement>(null);

useEffect(() => {
document.body.style.overflow = 'hidden';

const handleScroll = () => {
if (window.scrollY < 0) {
setIsModalVisible(false);
}
};

const handleClickOutside = (event: MouseEvent) => {
if (
modalRef.current &&
!modalRef.current.contains(event.target as Node)
) {
setIsModalVisible(false);
props.setShowModal(false);

if (modalRef.current.style) {
modalRef.current.style.animation =
'bottom-sheet-down 0.2s ease-in-out';
modalRef.current.style.transform = 'translateY(100%)';
}

setTimeout(() => {
setIsModalVisible(false);
}, 200);
}
};

window.addEventListener('scroll', handleScroll);
document.addEventListener('mousedown', handleClickOutside);

return () => {
window.removeEventListener('scroll', handleScroll);
document.removeEventListener('mousedown', handleClickOutside);
document.body.style.overflow = 'unset';
};
}, [props]);

const { handleTouchStart, handleTouchMove, handleTouchEnd } = useBottomSheet(
() => {
setIsModalVisible(false);
props.setShowModal(false);
}
);

return (
<StyledModalBottom>
{isModalVisible && (
<>
<StyledDeemBackground />
<BottomSheetContainer
ref={modalRef}
onTouchStart={handleTouchStart}
onTouchMove={handleTouchMove}
onTouchEnd={handleTouchEnd}
>
<BottomSheet {...props}>
<StyledModalHeader />
{props.children}
</BottomSheet>
</BottomSheetContainer>
</>
)}
</StyledModalBottom>
);
};
1 change: 1 addition & 0 deletions src/components/shared/ModalBottomSheet/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './ModalBottomSheet';
30 changes: 30 additions & 0 deletions src/hooks/useBottomSheet.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { useCallback, useRef } from 'react';

export const useBottomSheet = (closeModal: () => void) => {
const record = useRef({
first: 0,
move: 0,
});

const handleTouchStart = (event: React.TouchEvent) => {
record.current.first = event.touches[0].screenY;
};

const handleTouchMove = useCallback((event: React.TouchEvent) => {
if (!record.current.move) {
record.current.move = event.touches[0].screenY;
}
}, []);

const handleTouchEnd = () => {
if (record.current.first !== null && record.current.move !== null) {
if (record.current.first < record.current.move) {
closeModal();
}
}
record.current.first = 0;
record.current.move = 0;
};

return { handleTouchStart, handleTouchMove, handleTouchEnd };
};