커뮤니티 댓글, 팬토크, 콘텐츠 댓글
- 프로필 이미지 터치시 차단, 신고가 가능한 유저 프로필 표시
This commit is contained in:
		@@ -20,6 +20,9 @@ struct AudioContentListReplyView: View {
 | 
			
		||||
    @State private var commentId: Int = 0
 | 
			
		||||
    @State private var isShowDeletePopup: Bool = false
 | 
			
		||||
    
 | 
			
		||||
    @State private var memberId: Int = 0
 | 
			
		||||
    @State private var isShowMemberProfilePopup: Bool = false
 | 
			
		||||
    
 | 
			
		||||
    var body: some View {
 | 
			
		||||
        ZStack {
 | 
			
		||||
            VStack(spacing: 0) {
 | 
			
		||||
@@ -98,7 +101,11 @@ struct AudioContentListReplyView: View {
 | 
			
		||||
                    isReplyComment: true,
 | 
			
		||||
                    isShowPopupMenuButton: false,
 | 
			
		||||
                    modifyComment: { _, _ in },
 | 
			
		||||
                    onClickDelete: { _ in }
 | 
			
		||||
                    onClickDelete: { _ in },
 | 
			
		||||
                    onClickProfile: {
 | 
			
		||||
                        memberId = $0
 | 
			
		||||
                        isShowMemberProfilePopup = true
 | 
			
		||||
                    }
 | 
			
		||||
                )
 | 
			
		||||
                    .padding(.horizontal, 26.7)
 | 
			
		||||
                    .padding(.bottom, 13.3)
 | 
			
		||||
@@ -120,6 +127,10 @@ struct AudioContentListReplyView: View {
 | 
			
		||||
                                onClickDelete: {
 | 
			
		||||
                                    commentId = $0
 | 
			
		||||
                                    isShowDeletePopup = true
 | 
			
		||||
                                },
 | 
			
		||||
                                onClickProfile: {
 | 
			
		||||
                                    memberId = $0
 | 
			
		||||
                                    isShowMemberProfilePopup = true
 | 
			
		||||
                                }
 | 
			
		||||
                            )
 | 
			
		||||
                                .padding(.horizontal, 40)
 | 
			
		||||
@@ -153,6 +164,10 @@ struct AudioContentListReplyView: View {
 | 
			
		||||
                )
 | 
			
		||||
            }
 | 
			
		||||
            
 | 
			
		||||
            if isShowMemberProfilePopup {
 | 
			
		||||
                MemberProfileDialog(isShowing: $isShowMemberProfilePopup, memberId: memberId)
 | 
			
		||||
            }
 | 
			
		||||
            
 | 
			
		||||
            if viewModel.isLoading {
 | 
			
		||||
                LoadingView()
 | 
			
		||||
            }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user