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

ToggleButton 공통 컴포넌트 구현 #33

Merged
merged 3 commits into from
Oct 30, 2023
Merged

Conversation

1g2g
Copy link
Member

@1g2g 1g2g commented Oct 29, 2023

⚙️ PR 타입

  • Feature
  • Hotfix

✨ 기능 설명 or 🚨 문제 상황

공통으로 사용되는 토글 버튼과 관련 훅을 만들었습니다.

👨‍💻 구현 내용 or 👍 해결 내용

단일 토글 버튼

image
<ToggleButton
  label="버튼 레이블" // 버튼에 표시될 레이블
  value="button1" // 버튼의 값
  isActive={true} // 버튼의 활성화 상태
  width={200} // 버튼의 너비 (기본값: '100%')
  height="50px" // 버튼의 높이 (기본값: '60px')
  fontSize="16px" // 버튼의 글꼴 크기 (기본값: theme.FONT_SIZE.MD)
  border="none" // border 속성 (기본값: `1px solid ${isActive ? theme.PALETTE.RED_400 : theme.PALETTE.GRAY_400}`)
  onToggle={(value) => {
    // 버튼이 토글될 때 호출되는 콜백 함수
    console.log(`버튼 "${value}"이(가) 토글되었습니다.`);
  }}
/>

둘 중 하나 선택

image
예시 코드
  const ReviewComponent = () => {
  const items: any = [
    { value: 'GOOD', label: '좋아요' },
    { value: 'BAD', label: '별로에요' },
  ];

  const [review, setReview] = useState<string[]>();

  const handledToggle = (value: string[]) => {
    setReview(value);
  };

  const { handleToggle, selectedItems } = useToggleButtons({
    onToggle: handledToggle,
    isMultipleSelect: false,
  });
  return (
    <>
      {items.map((item: any) => (
        <ToggleButton
          key={item.value}
          value={item.value}
          label={item.label}
          isActive={selectedItems.includes(item.value)}
          onToggle={handleToggle}
        />
      ))}
      선택된 값 : {review}
    </>
  );
};

다중 선택

image
예시 코드
const PositionComponent = () => {
  const positions = ['C', 'PF', 'SF', 'PG', 'SG', '없음'];

  const [selectedPosition, setSelectedPosition] = useState<string[]>();

  const handledToggle = (value: string[]) => {
    setSelectedPosition(value);
  };

  const { handleToggle, selectedItems } = useToggleButtons({
    onToggle: handledToggle,
    isMultipleSelect: true,
  });
  return (
    <StyledButtonGroup>
      {positions.map((position) => (
        <ToggleButton
          key={position}
          value={position}
          isActive={selectedItems.includes(position)}
          onToggle={handleToggle}
        />
      ))}
      {JSON.stringify(selectedPosition)}
    </StyledButtonGroup>
  );
};

🎯 PR 포인트

📝 참고 사항

  • Button 컴포넌트 머지되면 반영하겠습니다.
  • 토글 버튼으로 셀렉트 박스 만들 예정입니다.
  • border 속성을 추가했습니다.

❓ 궁금한 점

  • 부족한 부분이 있으면 알려주세요!

@1g2g 1g2g added the 기능 코드의 기능이 추가되거나 바뀌었습니다. label Oct 29, 2023
@1g2g 1g2g added this to the 1차 스프린트 milestone Oct 29, 2023
@1g2g 1g2g self-assigned this Oct 29, 2023
@1g2g 1g2g linked an issue Oct 29, 2023 that may be closed by this pull request
@1eecan
Copy link
Contributor

1eecan commented Oct 29, 2023

🎉 @imb96 님 랜덤 리뷰어로 당첨되셨습니다! 리뷰를 부탁드립니다. 🙏

@1eecan 1eecan requested a review from imb96 October 29, 2023 09:16
Copy link
Member

@dlwl98 dlwl98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@1g2g 1g2g merged commit 9ddc3f7 into dev Oct 30, 2023
@1g2g 1g2g deleted the feat/#22-togglebutton-component branch October 30, 2023 07:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
기능 코드의 기능이 추가되거나 바뀌었습니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Toggle 버튼 공통 컴포넌트 구현
3 participants