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

feat-fe: Switch Toggle 컴포넌트 구현 #230

Merged
merged 5 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
import { useArgs } from '@storybook/preview-api';
import type { Meta, StoryObj } from '@storybook/react';
import ToggleSwitch from './index';

const meta: Meta<typeof ToggleSwitch> = {
title: 'Components/ToggleSwitch',
component: ToggleSwitch,
parameters: {
layout: 'centered',
docs: {
description: {
component: 'ToggleSwitch 컴포넌트는 스위치를 토글할 수 있는 기능을 제공합니다.',
},
},
},
tags: ['autodocs'],
argTypes: {
isChecked: {
description: '스위치의 체크 상태를 나타냅니다.',
control: { type: 'boolean' },
table: {
type: { summary: 'boolean' },
},
},
isDisabled: {
description: '스위치의 활성화 상태를 나타냅니다.',
control: { type: 'boolean' },
table: {
type: { summary: 'boolean' },
},
},
onChange: {
description: '스위치 상태 변경 시 호출되는 콜백 함수입니다.',
action: 'changed',
table: {
type: { summary: '() => void' },
},
},
},
decorators: [
(Child, context) => {
const [args, updateArgs] = useArgs();

const handleChange = () => {
updateArgs({ isChecked: !context.args.isChecked });
};

return (
<Child
args={{
...args,
onChange: handleChange,
}}
/>
);
},
],
};

export default meta;
type Story = StoryObj<typeof meta>;

export const Default: Story = {
args: {
isChecked: false,
},
};

export const Disabled: Story = {
args: {
isChecked: false,
isDisabled: true,
},
};

Default.parameters = {
docs: {
description: {
story: 'ToggleSwitch 컴포넌트의 기본 상태입니다.',
},
},
};
20 changes: 20 additions & 0 deletions frontend/src/components/common/ToggleSwitch/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import S, { StyleProps } from './style';

interface ToggleSwitchProps extends StyleProps {
onChange: () => void;
}

export default function ToggleSwitch({ isChecked, isDisabled, onChange }: ToggleSwitchProps) {
return (
<S.Switch
isChecked={isChecked}
isDisabled={isDisabled}
onClick={onChange}
>
<S.Knob
isChecked={isChecked}
isDisabled={isDisabled}
/>
</S.Switch>
);
}
60 changes: 60 additions & 0 deletions frontend/src/components/common/ToggleSwitch/style.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import { css } from '@emotion/react';
import styled from '@emotion/styled';

export interface StyleProps {
isChecked: boolean;
isDisabled: boolean;
}

const Switch = styled.div<StyleProps>`
width: 5rem;
--parent-width: 5rem;
Copy link
Contributor

Choose a reason for hiding this comment

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

사소한 건데 변수는 잘 보이게 최상단으로 끌어 올려주는 거 어떨까요? 가독성에 대한 거라서 필수는 아닙니다.

aspect-ratio: 5/3;

background-color: ${({ isChecked, theme }) =>
isChecked ? theme.baseColors.purplescale[600] : theme.baseColors.grayscale[100]};
outline: 0.2rem solid
${({ isChecked, theme }) => (isChecked ? theme.baseColors.purplescale[600] : theme.baseColors.grayscale[700])};
border-radius: 99rem;

display: flex;
align-items: center;

padding: 0.3rem;
--parent-padding: 0.3rem;

cursor: pointer;
transition: background-color 0.3s;

${({ isDisabled, theme }) =>
isDisabled &&
css({
backgroundColor: theme.baseColors.grayscale[400],
outline: `0.2rem solid ${theme.baseColors.grayscale[500]}`,
})}
`;

const Knob = styled.div<StyleProps>`
height: 100%;
aspect-ratio: 1/1;
background-color: ${({ isChecked, theme }) =>
isChecked ? theme.baseColors.grayscale[200] : theme.baseColors.grayscale[700]};
border-radius: 50%;

transform: ${({ isChecked }) =>
isChecked ? 'translate(calc(var(--parent-width) - var(--parent-padding)*2 - 100%))' : 'translate(0)'};
transition: transform 0.2s;
Comment on lines +45 to +47
Copy link
Contributor

Choose a reason for hiding this comment

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

👍


${({ isDisabled, theme }) =>
isDisabled &&
css({
backgroundColor: theme.baseColors.grayscale[700],
})}
`;

const S = {
Switch,
Knob,
};

export default S;
Loading