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

[GGFE-243] 관리자 - 확성기 버튼 비활성화 추가 + 거래내역 테이블 수정 #994

Merged
merged 8 commits into from
Sep 11, 2023

Conversation

PHJoon
Copy link
Contributor

@PHJoon PHJoon commented Sep 10, 2023

📌 개요

  • 관리자 - 확성기 버튼 비활성화 추가 + 거래내역 테이블 수정

💻 작업사항

  • 확성기 사용내역에서 삭제할 수 없는 경우(사용 중, 사용 전이 아닌 상태)에는 버튼을 비활성화 시켰습니다.
  • 거래내역 테이블에서 구매하기와 선물하기가 구분이 잘 안되는 것 같아서 선물하기인 경우에만 받는 사람을 표시하게 했는데 피드백 부탁드립니다.
  • 구매내역에서 아이템 상태를 한글로 바꿨습니다.

✅ 변경로직

@PHJoon PHJoon self-assigned this Sep 10, 2023
Copy link
Member

@yoouyeon yoouyeon left a comment

Choose a reason for hiding this comment

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

확인했습니다! 선물한 경우에만 받는 사람 인트라 아이디 보여주는 것도 저는 괜찮은 것 같아요! 수고하셨습니당 😆👍

Comment on lines +145 to +148
{megaphone.status === '삭제' ||
megaphone.status === '사용 완료'
? 'X'
: '삭제'}
Copy link
Member

Choose a reason for hiding this comment

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

megaphone.status 타입이 '삭제', '사용 완료', '사용 중', '사용 대기' 이렇게 4가지인건가요??
지금은 Imegaphonestatusstring 타입인데 리터럴 타입으로 바꾸면 더 좋을 것 같아요!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

타입이 4가지로 고정되어 있으니 리터럴 타입이 더 좋겠군요. 감사합니다! 수정하겠습니다!

@@ -41,6 +41,14 @@ function ReceiptList() {
const [intraId, setIntraId] = useState<string>('');
const setSnackBar = useSetRecoilState(toastState);

const itemStatus: { [key: string]: string } = {
Copy link
Member

Choose a reason for hiding this comment

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

key를 string 대신 type ItemStatus = 'BEFORE' | 'WAITING' | 'USING' | 'USED' | 'DELETED' 이렇게 스트링 리터럴 타입으로 지정하면 좋을 것 같아요!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

여기도 있었네요! 감사합니다! 여기도 스트링 리터럴 타입으로 적용하겠습니다!

@@ -45,6 +45,10 @@
border-radius: 8px;
justify-content: center;
align-items: center;
&:disabled {
cursor: not-allowed;
Copy link
Member

Choose a reason for hiding this comment

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

커서 속성에도 여러가지가 있네요! 새로운 것 배워갑니다👍

Copy link
Member

@hyobb109 hyobb109 left a comment

Choose a reason for hiding this comment

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

선물에만 받은 사람 나오니까 훨씬 보기 편한 것 같아요! 확성기 버튼 비활성화도 잘 적용되어있네요. 고생하셨습니다!!!😃

@PHJoon PHJoon merged commit b9d7566 into main Sep 11, 2023
1 check passed
@PHJoon PHJoon deleted the GGFE-243-관리자-확성기-버튼-비활성화-추가 branch September 11, 2023 03:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants