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

impl multi prop into select #23

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from
Open
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
Binary file modified packages/web/src/app/favicon.ico
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React, { useState, useRef, useEffect } from "react";
import styled, { css } from "styled-components";
import { KeyboardArrowDown, KeyboardArrowUp } from "@mui/icons-material";
import Label from "./_atomic/Label";
import ErrorMessage from "./_atomic/ErrorMessage";
import Label from "../Forms/_atomic/Label";
import ErrorMessage from "../Forms/_atomic/ErrorMessage";
import Dropdown from "./Dropdown";

export interface SelectItem {
label: string;
Expand All @@ -15,8 +16,9 @@ interface SelectProps {
label?: string;
errorMessage?: string;
disabled?: boolean;
selectedValue?: string;
onSelect?: (value: string) => void;
selectedValue?: string | string[];
multi?: boolean; // 다중 선택 여부 추가
onSelect?: (value: string | string[]) => void;
setErrorStatus?: (hasError: boolean) => void;
}

Expand Down Expand Up @@ -61,21 +63,7 @@ const StyledSelect = styled.div<{
${({ disabled }) => disabled && disabledStyle}
`;

const Dropdown = styled.div`
position: absolute;
display: flex;
flex-direction: column;
width: 100%;
margin-top: 4px;
padding: 8px;
border: 1px solid ${({ theme }) => theme.colors.GRAY[100]};
border-radius: 4px;
background-color: ${({ theme }) => theme.colors.WHITE};
gap: 4px;
z-index: 1000; // Ensure the dropdown appears above other content
`;

const Option = styled.div<{ selectable?: boolean }>`
const Option = styled.div<{ selectable?: boolean; isSelected?: boolean }>`
gap: 10px;
border-radius: 4px;
padding: 4px 12px;
Expand All @@ -85,6 +73,8 @@ const Option = styled.div<{ selectable?: boolean }>`
font-weight: ${({ theme }) => theme.fonts.WEIGHT.REGULAR};
color: ${({ theme, selectable }) =>
selectable ? theme.colors.BLACK : theme.colors.GRAY[100]};
background-color: ${({ theme, isSelected }) =>
isSelected ? theme.colors.GREEN[100] : theme.colors.WHITE};
${({ selectable }) =>
selectable &&
css`
Expand Down Expand Up @@ -136,6 +126,7 @@ const Select: React.FC<SelectProps> = ({
label = "",
disabled = false,
selectedValue = "",
multi = false, // 기본값을 false로 설정
onSelect = () => {},
setErrorStatus = () => {},
}) => {
Expand All @@ -144,8 +135,11 @@ const Select: React.FC<SelectProps> = ({
const containerRef = useRef<HTMLDivElement>(null);

useEffect(() => {
setErrorStatus(!!errorMessage || (!selectedValue && items.length > 0));
}, [errorMessage, selectedValue, items.length, setErrorStatus]);
const hasError =
(multi && Array.isArray(selectedValue) && selectedValue.length === 0) ||
(!multi && !selectedValue && items.length > 0);
setErrorStatus(!!errorMessage || hasError);
}, [errorMessage, selectedValue, items.length, multi, setErrorStatus]);

useEffect(() => {
function handleClickOutside(event: MouseEvent) {
Expand Down Expand Up @@ -175,14 +169,40 @@ const Select: React.FC<SelectProps> = ({

const handleOptionClick = (item: SelectItem) => {
if (item.selectable) {
onSelect(item.value);
if (multi) {
let newSelectedValue = Array.isArray(selectedValue)
? [...selectedValue]
: [];
if (newSelectedValue.includes(item.value)) {
newSelectedValue = newSelectedValue.filter(val => val !== item.value);
} else {
newSelectedValue.push(item.value);
}
onSelect(newSelectedValue);
} else {
onSelect(item.value);
}
}
if (!multi) {
setIsOpen(false);
}
};

const selectedLabel =
items.find(item => item.value === selectedValue)?.label ||
"항목을 선택해주세요";
let selectedLabel: string;

if (multi) {
if (Array.isArray(selectedValue) && selectedValue.length > 0) {
selectedLabel = items
.filter(item => selectedValue.includes(item.value))
.map(item => item.label)
.join(", ");
} else {
selectedLabel = "항목을 선택해주세요";
}
} else {
const foundItem = items.find(item => item.value === selectedValue);
selectedLabel = foundItem ? foundItem.label : "항목을 선택해주세요";
}

return (
<SelectWrapper>
Expand All @@ -191,13 +211,19 @@ const Select: React.FC<SelectProps> = ({
<DropdownContainer ref={containerRef}>
<StyledSelect
hasError={
hasOpenedOnce && !selectedValue && items.length > 0 && !isOpen
hasOpenedOnce &&
multi &&
Array.isArray(selectedValue) &&
selectedValue.length === 0 &&
!isOpen
}
disabled={disabled}
onClick={handleSelectClick}
isOpen={isOpen}
>
<SelectValue isSelected={!!selectedValue}>
<SelectValue
isSelected={multi ? selectedValue.length > 0 : !!selectedValue}
>
{selectedLabel}
</SelectValue>
<IconWrapper>
Expand All @@ -215,6 +241,12 @@ const Select: React.FC<SelectProps> = ({
<Option
key={item.value}
selectable={item.selectable}
isSelected={
multi
? Array.isArray(selectedValue) &&
selectedValue.includes(item.value)
: selectedValue === item.value
}
onClick={() => handleOptionClick(item)}
>
{item.label}
Expand All @@ -226,11 +258,14 @@ const Select: React.FC<SelectProps> = ({
</Dropdown>
)}
</DropdownContainer>
{hasOpenedOnce && !selectedValue && items.length > 0 && (
<ErrorMessage>
{errorMessage || "필수로 선택해야 하는 항목입니다"}
</ErrorMessage>
)}
{hasOpenedOnce &&
multi &&
Array.isArray(selectedValue) &&
selectedValue.length === 0 && (
<ErrorMessage>
{errorMessage || "필수로 선택해야 하는 항목입니다"}
</ErrorMessage>
)}
</SelectWrapper>
</SelectWrapper>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
}
Loading