-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #223 from sopt-makers/feat/#219_dropdown
- Loading branch information
Showing
19 changed files
with
261 additions
and
471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import useOutsideClickListener from '@src/hooks/useOutsideClickListener'; | ||
import { LabelKeyType } from '@src/lib/types/universal'; | ||
import { useCallback, useRef, useState } from 'react'; | ||
import { S } from './style'; | ||
|
||
interface SelectProps<T extends LabelKeyType> { | ||
options: T[]; | ||
baseValue: T; | ||
baseLabel: string; | ||
selectedValue: T; | ||
setSelectedValue: React.Dispatch<React.SetStateAction<T>>; | ||
labels: Record<T, string>; | ||
} | ||
|
||
export default function Select<T extends LabelKeyType>({ | ||
options, | ||
selectedValue, | ||
setSelectedValue, | ||
baseValue, | ||
baseLabel, | ||
labels, | ||
}: SelectProps<T>) { | ||
const [isOpen, setIsOpen] = useState(false); | ||
|
||
const toggleSelect = () => setIsOpen(!isOpen); | ||
|
||
const handleSelect = (value: T) => { | ||
setSelectedValue(value); | ||
}; | ||
|
||
const closeSelectItem = useCallback(() => setIsOpen(false), []); | ||
|
||
const selectItemWrapperRef = useRef<HTMLDivElement>(null); | ||
const selectTriggerRef = useRef<HTMLButtonElement>(null); | ||
useOutsideClickListener([selectItemWrapperRef, selectTriggerRef], closeSelectItem); | ||
|
||
return ( | ||
<div> | ||
<S.SelectTrigger | ||
ref={selectTriggerRef} | ||
onClick={toggleSelect} | ||
isSelectionExist={selectedValue !== baseValue} | ||
isOpened={isOpen} | ||
> | ||
{selectedValue === baseValue ? baseLabel : labels[selectedValue]} | ||
</S.SelectTrigger> | ||
{isOpen && ( | ||
<S.SelectItemWrapper ref={selectItemWrapperRef}> | ||
{options.map((option, index) => ( | ||
<S.SelectItem | ||
key={index} | ||
isSelected={selectedValue === option} | ||
onClick={() => handleSelect(option)} | ||
> | ||
{labels[option]} | ||
</S.SelectItem> | ||
))} | ||
</S.SelectItemWrapper> | ||
)} | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import styled from '@emotion/styled'; | ||
import arrowDown from '@src/assets/icons/arrow_down.svg'; | ||
import { colors } from '@src/lib/styles/colors'; | ||
|
||
const SelectWrapper = styled.div` | ||
position: relative; | ||
`; | ||
|
||
const SelectTrigger = styled.button<{ isSelectionExist: boolean; isOpened: boolean }>` | ||
cursor: pointer; | ||
position: relative; | ||
width: 110px; | ||
font-size: 16px; | ||
font-weight: 500; | ||
padding: 9px 22px; | ||
text-align: left; | ||
color: white; | ||
border-radius: 20px; | ||
background-color: ${({ isSelectionExist }) => | ||
isSelectionExist ? colors.gray700 : colors.gray600}; | ||
border: 1px solid; | ||
border-color: ${({ isSelectionExist }) => (isSelectionExist ? colors.gray200 : colors.gray700)}; | ||
&::after { | ||
content: ''; | ||
background-repeat: no-repeat; | ||
background-position: center; | ||
position: absolute; | ||
right: 22px; | ||
top: 9px; | ||
transition: 0.2s; | ||
width: 10px; | ||
height: 18px; | ||
background-image: url(${arrowDown}); | ||
transform: ${({ isOpened }) => (isOpened ? 'rotate(180deg)' : 'none')}; | ||
} | ||
`; | ||
|
||
const SelectItem = styled.div<{ isSelected: boolean }>` | ||
background-color: ${({ isSelected }) => (isSelected ? colors.gray400 : 'transparent')}; | ||
padding: 6px 10px; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
transition: 0.1s; | ||
color: ${colors.gray30}; | ||
`; | ||
|
||
const SelectItemWrapper = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
position: absolute; | ||
background-color: ${colors.gray600}; | ||
z-index: 200; | ||
width: 110px; | ||
border-radius: 20px; | ||
padding: 9px 12px; | ||
margin-top: 8px; | ||
gap: 8px; | ||
&:hover { | ||
${SelectItem} { | ||
background-color: transparent; | ||
&:hover { | ||
background-color: ${colors.gray400}; | ||
} | ||
} | ||
} | ||
`; | ||
|
||
export const S = { SelectWrapper, SelectTrigger, SelectItem, SelectItemWrapper }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { useEffect } from 'react'; | ||
|
||
const useOutsideClickListener = (targetRefs: React.RefObject<Node>[], callback: () => void) => { | ||
useEffect(() => { | ||
const handleClickOutside = (event: MouseEvent) => { | ||
const target = event.target; | ||
if (target instanceof Node) { | ||
const isOutsideClick = targetRefs.every( | ||
(targetRef: React.RefObject<Node>) => | ||
targetRef.current === null || !targetRef.current.contains(target), | ||
); | ||
if (isOutsideClick) { | ||
callback(); | ||
} | ||
} | ||
}; | ||
|
||
document.addEventListener('mousedown', handleClickOutside); | ||
|
||
return () => { | ||
document.removeEventListener('mousedown', handleClickOutside); | ||
}; | ||
}, [targetRefs, callback]); | ||
}; | ||
|
||
export default useOutsideClickListener; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
import { ProjectCategoryType } from '@src/lib/types/project'; | ||
|
||
export const projectCategoryList: { | ||
type: ProjectCategoryType; | ||
name: string; | ||
}[] = [ | ||
{ type: ProjectCategoryType.ALL, name: '전체' }, | ||
{ type: ProjectCategoryType.APPJAM, name: '🎊 앱잼' }, | ||
{ type: ProjectCategoryType.SOPKATHON, name: '💡 솝커톤' }, | ||
{ type: ProjectCategoryType.SOPTERM, name: '🛎 솝텀 프로젝트' }, | ||
{ type: ProjectCategoryType.STUDY, name: '📖 스터디' }, | ||
{ type: ProjectCategoryType.JOINTSEMINAR, name: '👥 합동 세미나' }, | ||
{ type: ProjectCategoryType.ETC, name: '💬 기타' }, | ||
export const activeProjectCategoryList: ProjectCategoryType[] = [ | ||
ProjectCategoryType.ALL, | ||
ProjectCategoryType.APPJAM, | ||
ProjectCategoryType.SOPKATHON, | ||
ProjectCategoryType.SOPTERM, | ||
]; | ||
|
||
export const projectCategoryLabel: Record<ProjectCategoryType, string> = { | ||
[ProjectCategoryType.ALL]: '전체', | ||
[ProjectCategoryType.APPJAM]: '앱잼', | ||
[ProjectCategoryType.SOPKATHON]: '솝커톤', | ||
[ProjectCategoryType.SOPTERM]: '솝텀', | ||
[ProjectCategoryType.STUDY]: '스터디', | ||
[ProjectCategoryType.JOINTSEMINAR]: '합동 세미나', | ||
[ProjectCategoryType.ETC]: '기타', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
55 changes: 0 additions & 55 deletions
55
src/views/ProjectPage/components/filter/MobileFilterModal.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.