응원글 삭제 기능 추가
This commit is contained in:
parent
b31933715d
commit
5d95c0f1c9
|
@ -15,7 +15,7 @@ enum ExplorerApi {
|
||||||
case getFollowerList(userId: Int, page: Int, size: Int)
|
case getFollowerList(userId: Int, page: Int, size: Int)
|
||||||
case getCreatorProfileCheers(userId: Int, page: Int, size: Int)
|
case getCreatorProfileCheers(userId: Int, page: Int, size: Int)
|
||||||
case writeCheers(parentCheersId: Int?, creatorId: Int, content: String)
|
case writeCheers(parentCheersId: Int?, creatorId: Int, content: String)
|
||||||
case modifyCheers(cheersId: Int, content: String)
|
case modifyCheers(request: PutModifyCheersRequest)
|
||||||
case writeCreatorNotice(request: PostCreatorNoticeRequest)
|
case writeCreatorNotice(request: PostCreatorNoticeRequest)
|
||||||
case getCreatorProfileDonationRanking(userId: Int, page: Int, size: Int)
|
case getCreatorProfileDonationRanking(userId: Int, page: Int, size: Int)
|
||||||
}
|
}
|
||||||
|
@ -102,8 +102,7 @@ extension ExplorerApi: TargetType {
|
||||||
let request = PostWriteCheersRequest(parentId: parentCheersId, creatorId: creatorId, content: content)
|
let request = PostWriteCheersRequest(parentId: parentCheersId, creatorId: creatorId, content: content)
|
||||||
return .requestJSONEncodable(request)
|
return .requestJSONEncodable(request)
|
||||||
|
|
||||||
case .modifyCheers(let cheersId, let content):
|
case .modifyCheers(let request):
|
||||||
let request = PutModifyCheersRequest(cheersId: cheersId, content: content)
|
|
||||||
return .requestJSONEncodable(request)
|
return .requestJSONEncodable(request)
|
||||||
|
|
||||||
case .writeCreatorNotice(let request):
|
case .writeCreatorNotice(let request):
|
||||||
|
|
|
@ -37,8 +37,9 @@ final class ExplorerRepository {
|
||||||
return api.requestPublisher(.writeCheers(parentCheersId: parentCheersId, creatorId: creatorId, content: content))
|
return api.requestPublisher(.writeCheers(parentCheersId: parentCheersId, creatorId: creatorId, content: content))
|
||||||
}
|
}
|
||||||
|
|
||||||
func modifyCheers(cheersId: Int, content: String) -> AnyPublisher<Response, MoyaError> {
|
func modifyCheers(cheersId: Int, content: String?, isActive: Bool?) -> AnyPublisher<Response, MoyaError> {
|
||||||
return api.requestPublisher(.modifyCheers(cheersId: cheersId, content: content))
|
let request = PutModifyCheersRequest(cheersId: cheersId, content: content, isActive: isActive)
|
||||||
|
return api.requestPublisher(.modifyCheers(request: request))
|
||||||
}
|
}
|
||||||
|
|
||||||
func writeCreatorNotice(notice: String) -> AnyPublisher<Response, MoyaError> {
|
func writeCreatorNotice(notice: String) -> AnyPublisher<Response, MoyaError> {
|
||||||
|
|
|
@ -15,5 +15,6 @@ struct PostWriteCheersRequest: Encodable {
|
||||||
|
|
||||||
struct PutModifyCheersRequest: Encodable {
|
struct PutModifyCheersRequest: Encodable {
|
||||||
let cheersId: Int
|
let cheersId: Int
|
||||||
let content: String
|
let content: String?
|
||||||
|
let isActive: Bool?
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,17 +81,18 @@ struct UserProfileFanTalkAllView: View {
|
||||||
let cheer = viewModel.cheersList[index]
|
let cheer = viewModel.cheersList[index]
|
||||||
UserProfileFanTalkCheersItemView(
|
UserProfileFanTalkCheersItemView(
|
||||||
userId: userId,
|
userId: userId,
|
||||||
cheer: cheer,
|
cheersItem: cheer,
|
||||||
writeCheerReply: { cheersReplyContent in
|
writeCheerReply: { cheersReplyContent in
|
||||||
viewModel.writeCheersReply(parentCheersId: cheer.cheersId, creatorId: userId, cheersReplyContent: cheersReplyContent)
|
viewModel.writeCheersReply(parentCheersId: cheer.cheersId, creatorId: userId, cheersReplyContent: cheersReplyContent)
|
||||||
},
|
},
|
||||||
modifyCheer: { cheersId, cheersReplyContent in
|
modifyCheer: { cheersId, cheersReplyContent in
|
||||||
viewModel.modifyCheersReply(cheersId: cheersId, creatorId: userId, cheersReplyContent: cheersReplyContent)
|
viewModel.modifyCheers(cheersId: cheersId, creatorId: userId, cheersReplyContent: cheersReplyContent)
|
||||||
},
|
},
|
||||||
reportPopup: { cheersId in
|
reportPopup: { cheersId in
|
||||||
viewModel.reportCheersId = cheersId
|
viewModel.reportCheersId = cheersId
|
||||||
viewModel.isShowCheersReportMenu = true
|
viewModel.isShowCheersReportMenu = true
|
||||||
}
|
},
|
||||||
|
onClickDelete: { _ in }
|
||||||
)
|
)
|
||||||
.onAppear {
|
.onAppear {
|
||||||
if index == viewModel.cheersList.count - 1 {
|
if index == viewModel.cheersList.count - 1 {
|
||||||
|
|
|
@ -11,18 +11,24 @@ import Kingfisher
|
||||||
struct UserProfileFanTalkCheersItemView: View {
|
struct UserProfileFanTalkCheersItemView: View {
|
||||||
|
|
||||||
let userId: Int
|
let userId: Int
|
||||||
let cheer: GetCheersResponseItem
|
let cheersItem: GetCheersResponseItem
|
||||||
let writeCheerReply: (String) -> Void
|
let writeCheerReply: (String) -> Void
|
||||||
let modifyCheer: (Int, String) -> Void
|
let modifyCheer: (Int, String) -> Void
|
||||||
let reportPopup: (Int) -> Void
|
let reportPopup: (Int) -> Void
|
||||||
|
let onClickDelete: (Int) -> Void
|
||||||
|
|
||||||
@State var replyContent: String = ""
|
@State var replyContent: String = ""
|
||||||
@State var isShowInputReply = false
|
@State var isShowInputReply = false
|
||||||
|
|
||||||
|
@State var isShowPopupMenu: Bool = false
|
||||||
|
@State var isModeModify: Bool = false
|
||||||
|
@State var cheers: String = ""
|
||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
|
ZStack(alignment: .topTrailing) {
|
||||||
VStack(alignment: .leading, spacing: 0) {
|
VStack(alignment: .leading, spacing: 0) {
|
||||||
HStack(alignment: .top, spacing: 6.7) {
|
HStack(alignment: .top, spacing: 6.7) {
|
||||||
KFImage(URL(string: cheer.profileUrl))
|
KFImage(URL(string: cheersItem.profileUrl))
|
||||||
.cancelOnDisappear(true)
|
.cancelOnDisappear(true)
|
||||||
.downsampling(size: CGSize(width: 33.3, height: 33.3))
|
.downsampling(size: CGSize(width: 33.3, height: 33.3))
|
||||||
.resizable()
|
.resizable()
|
||||||
|
@ -30,16 +36,16 @@ struct UserProfileFanTalkCheersItemView: View {
|
||||||
.clipShape(Circle())
|
.clipShape(Circle())
|
||||||
|
|
||||||
VStack(alignment: .leading, spacing: 0) {
|
VStack(alignment: .leading, spacing: 0) {
|
||||||
Text("\(cheer.nickname)")
|
Text("\(cheersItem.nickname)")
|
||||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||||
.foregroundColor(Color(hex: "eeeeee"))
|
.foregroundColor(Color(hex: "eeeeee"))
|
||||||
|
|
||||||
Text("\(cheer.date)")
|
Text("\(cheersItem.date)")
|
||||||
.font(.custom(Font.medium.rawValue, size: 10.7))
|
.font(.custom(Font.medium.rawValue, size: 10.7))
|
||||||
.foregroundColor(Color(hex: "525252"))
|
.foregroundColor(Color(hex: "525252"))
|
||||||
.padding(.top, 8.3)
|
.padding(.top, 8.3)
|
||||||
|
|
||||||
Text("\(cheer.content)")
|
Text("\(cheersItem.content)")
|
||||||
.font(.custom(Font.medium.rawValue, size: 12))
|
.font(.custom(Font.medium.rawValue, size: 12))
|
||||||
.foregroundColor(Color(hex: "777777"))
|
.foregroundColor(Color(hex: "777777"))
|
||||||
.padding(.top, 13.3)
|
.padding(.top, 13.3)
|
||||||
|
@ -69,8 +75,8 @@ struct UserProfileFanTalkCheersItemView: View {
|
||||||
.background(Color(hex: "9970ff"))
|
.background(Color(hex: "9970ff"))
|
||||||
.cornerRadius(6.7)
|
.cornerRadius(6.7)
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
if cheer.replyList.count > 0 {
|
if cheersItem.replyList.count > 0 {
|
||||||
modifyCheer(cheer.replyList[0].cheersId, replyContent)
|
modifyCheer(cheersItem.replyList[0].cheersId, replyContent)
|
||||||
} else {
|
} else {
|
||||||
writeCheerReply(replyContent)
|
writeCheerReply(replyContent)
|
||||||
}
|
}
|
||||||
|
@ -78,7 +84,7 @@ struct UserProfileFanTalkCheersItemView: View {
|
||||||
}
|
}
|
||||||
.padding(.top, 10)
|
.padding(.top, 10)
|
||||||
} else {
|
} else {
|
||||||
if cheer.replyList.count <= 0 {
|
if cheersItem.replyList.count <= 0 {
|
||||||
if userId == UserDefaults.int(forKey: .userId) {
|
if userId == UserDefaults.int(forKey: .userId) {
|
||||||
Text("답글쓰기")
|
Text("답글쓰기")
|
||||||
.font(.custom(Font.medium.rawValue, size: 12))
|
.font(.custom(Font.medium.rawValue, size: 12))
|
||||||
|
@ -89,7 +95,7 @@ struct UserProfileFanTalkCheersItemView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let reply = cheer.replyList[0]
|
let reply = cheersItem.replyList[0]
|
||||||
VStack(alignment: .leading, spacing: 8.3) {
|
VStack(alignment: .leading, spacing: 8.3) {
|
||||||
Text(reply.content)
|
Text(reply.content)
|
||||||
.font(.custom(Font.medium.rawValue, size: 12))
|
.font(.custom(Font.medium.rawValue, size: 12))
|
||||||
|
@ -124,7 +130,7 @@ struct UserProfileFanTalkCheersItemView: View {
|
||||||
Spacer()
|
Spacer()
|
||||||
|
|
||||||
Image("ic_seemore_vertical")
|
Image("ic_seemore_vertical")
|
||||||
.onTapGesture { reportPopup(cheer.cheersId) }
|
.onTapGesture { isShowPopupMenu = true }
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle()
|
Rectangle()
|
||||||
|
@ -133,5 +139,48 @@ struct UserProfileFanTalkCheersItemView: View {
|
||||||
.padding(.top, 13.3)
|
.padding(.top, 13.3)
|
||||||
}
|
}
|
||||||
.frame(width: screenSize().width - 26.7)
|
.frame(width: screenSize().width - 26.7)
|
||||||
|
|
||||||
|
if isShowPopupMenu {
|
||||||
|
VStack(spacing: 10) {
|
||||||
|
if cheersItem.memberId != UserDefaults.int(forKey: .userId) {
|
||||||
|
Text("신고하기")
|
||||||
|
.font(.custom(Font.medium.rawValue, size: 14))
|
||||||
|
.foregroundColor(Color(hex: "777777"))
|
||||||
|
.onTapGesture {
|
||||||
|
reportPopup(cheersItem.cheersId)
|
||||||
|
isShowPopupMenu = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if cheersItem.memberId == UserDefaults.int(forKey: .userId) {
|
||||||
|
Text("수정")
|
||||||
|
.font(.custom(Font.medium.rawValue, size: 14))
|
||||||
|
.foregroundColor(Color(hex: "777777"))
|
||||||
|
.onTapGesture {
|
||||||
|
isModeModify = true
|
||||||
|
isShowPopupMenu = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if userId == UserDefaults.int(forKey: .userId) ||
|
||||||
|
cheersItem.memberId == UserDefaults.int(forKey: .userId)
|
||||||
|
{
|
||||||
|
Text("삭제")
|
||||||
|
.font(.custom(Font.medium.rawValue, size: 14))
|
||||||
|
.foregroundColor(Color(hex: "777777"))
|
||||||
|
.onTapGesture {
|
||||||
|
onClickDelete(cheersItem.cheersId)
|
||||||
|
isShowPopupMenu = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.padding(10)
|
||||||
|
.background(Color(hex: "222222"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.contentShape(Rectangle())
|
||||||
|
.onTapGesture {
|
||||||
|
isShowPopupMenu = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,7 @@ struct UserProfileFanTalkView: View {
|
||||||
let cheers: GetCheersResponse
|
let cheers: GetCheersResponse
|
||||||
let errorPopup: (String) -> Void
|
let errorPopup: (String) -> Void
|
||||||
let reportPopup: (Int) -> Void
|
let reportPopup: (Int) -> Void
|
||||||
|
let deletePopup: (Int) -> Void
|
||||||
|
|
||||||
@Binding var isLoading: Bool
|
@Binding var isLoading: Bool
|
||||||
@State private var cheersContent: String = ""
|
@State private var cheersContent: String = ""
|
||||||
|
@ -97,15 +98,18 @@ struct UserProfileFanTalkView: View {
|
||||||
let cheer = viewModel.cheersList[$0]
|
let cheer = viewModel.cheersList[$0]
|
||||||
UserProfileFanTalkCheersItemView(
|
UserProfileFanTalkCheersItemView(
|
||||||
userId: userId,
|
userId: userId,
|
||||||
cheer: cheer,
|
cheersItem: cheer,
|
||||||
writeCheerReply: { cheersReplyContent in
|
writeCheerReply: { cheersReplyContent in
|
||||||
viewModel.writeCheersReply(parentCheersId: cheer.cheersId, creatorId: userId, cheersReplyContent: cheersReplyContent)
|
viewModel.writeCheersReply(parentCheersId: cheer.cheersId, creatorId: userId, cheersReplyContent: cheersReplyContent)
|
||||||
},
|
},
|
||||||
modifyCheer: { cheersId, cheersReplyContent in
|
modifyCheer: { cheersId, cheersReplyContent in
|
||||||
viewModel.modifyCheersReply(cheersId: cheersId, creatorId: userId, cheersReplyContent: cheersReplyContent)
|
viewModel.modifyCheers(cheersId: cheersId, creatorId: userId, cheersReplyContent: cheersReplyContent)
|
||||||
},
|
},
|
||||||
reportPopup: { cheersId in
|
reportPopup: { cheersId in
|
||||||
reportPopup(cheersId)
|
reportPopup(cheersId)
|
||||||
|
},
|
||||||
|
onClickDelete: { cheersId in
|
||||||
|
deletePopup(cheersId)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
|
|
|
@ -224,7 +224,7 @@ final class UserProfileFanTalkViewModel: ObservableObject {
|
||||||
.store(in: &subscription)
|
.store(in: &subscription)
|
||||||
}
|
}
|
||||||
|
|
||||||
func modifyCheersReply(cheersId: Int, creatorId: Int, cheersReplyContent: String) {
|
func modifyCheers(cheersId: Int, creatorId: Int, cheersReplyContent: String) {
|
||||||
if cheersReplyContent.trimmingCharacters(in: .whitespaces).isEmpty {
|
if cheersReplyContent.trimmingCharacters(in: .whitespaces).isEmpty {
|
||||||
if let errorPopup = errorPopup {
|
if let errorPopup = errorPopup {
|
||||||
errorPopup("내용을 입력하세요")
|
errorPopup("내용을 입력하세요")
|
||||||
|
@ -241,7 +241,7 @@ final class UserProfileFanTalkViewModel: ObservableObject {
|
||||||
}
|
}
|
||||||
isLoading = true
|
isLoading = true
|
||||||
|
|
||||||
repository.modifyCheers(cheersId: cheersId, content: cheersReplyContent)
|
repository.modifyCheers(cheersId: cheersId, content: cheersReplyContent, isActive: nil)
|
||||||
.sink { result in
|
.sink { result in
|
||||||
switch result {
|
switch result {
|
||||||
case .finished:
|
case .finished:
|
||||||
|
|
|
@ -14,6 +14,7 @@ struct GetCheersResponse: Decodable {
|
||||||
|
|
||||||
struct GetCheersResponseItem: Decodable {
|
struct GetCheersResponseItem: Decodable {
|
||||||
let cheersId: Int
|
let cheersId: Int
|
||||||
|
let memberId: Int
|
||||||
let nickname: String
|
let nickname: String
|
||||||
let profileUrl: String
|
let profileUrl: String
|
||||||
let content: String
|
let content: String
|
||||||
|
|
|
@ -174,8 +174,12 @@ struct UserProfileView: View {
|
||||||
viewModel.isShowPopup = true
|
viewModel.isShowPopup = true
|
||||||
},
|
},
|
||||||
reportPopup: { cheerId in
|
reportPopup: { cheerId in
|
||||||
viewModel.reportCheersId = cheerId
|
viewModel.cheersId = cheerId
|
||||||
viewModel.isShowCheersReportMenu = true
|
viewModel.isShowCheersReportView = true
|
||||||
|
},
|
||||||
|
deletePopup: { cheerId in
|
||||||
|
viewModel.cheersId = cheerId
|
||||||
|
viewModel.isShowCheersDeleteView = true
|
||||||
},
|
},
|
||||||
isLoading: $viewModel.isLoading
|
isLoading: $viewModel.isLoading
|
||||||
)
|
)
|
||||||
|
@ -220,20 +224,18 @@ struct UserProfileView: View {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
if viewModel.isShowCheersReportMenu {
|
if viewModel.isShowCheersDeleteView {
|
||||||
VStack(spacing: 0) {
|
SodaDialog(
|
||||||
CheersReportMenuView(
|
title: "응원글 삭제",
|
||||||
isShowing: $viewModel.isShowCheersReportMenu,
|
desc: "삭제하시겠습니까?",
|
||||||
onClickReport: { viewModel.isShowCheersReportView = true }
|
confirmButtonTitle: "삭제",
|
||||||
|
confirmButtonAction: {
|
||||||
|
viewModel.deleteCheers(creatorId: userId)
|
||||||
|
viewModel.isShowCheersDeleteView = false
|
||||||
|
},
|
||||||
|
cancelButtonTitle: "취소",
|
||||||
|
cancelButtonAction: { viewModel.isShowCheersDeleteView = false }
|
||||||
)
|
)
|
||||||
|
|
||||||
if proxy.safeAreaInsets.bottom > 0 {
|
|
||||||
Rectangle()
|
|
||||||
.foregroundColor(Color(hex: "222222"))
|
|
||||||
.frame(width: proxy.size.width, height: 15.3)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.ignoresSafeArea()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if viewModel.isShowCheersReportView {
|
if viewModel.isShowCheersReportView {
|
||||||
|
|
|
@ -47,10 +47,9 @@ final class UserProfileViewModel: ObservableObject {
|
||||||
@Published var isShowUesrReportView = false
|
@Published var isShowUesrReportView = false
|
||||||
@Published var isShowProfileReportConfirm = false
|
@Published var isShowProfileReportConfirm = false
|
||||||
|
|
||||||
@Published var reportCheersId = 0
|
@Published var cheersId = 0
|
||||||
@Published var isShowCheersReportMenu = false
|
|
||||||
@Published var isShowCheersReportView = false
|
@Published var isShowCheersReportView = false
|
||||||
|
@Published var isShowCheersDeleteView = false
|
||||||
|
|
||||||
let paymentDialogCancelTitle = "취소"
|
let paymentDialogCancelTitle = "취소"
|
||||||
|
|
||||||
|
@ -488,7 +487,7 @@ final class UserProfileViewModel: ObservableObject {
|
||||||
func report(type: ReportType, userId: Int? = nil, reason: String = "프로필 신고") {
|
func report(type: ReportType, userId: Int? = nil, reason: String = "프로필 신고") {
|
||||||
isLoading = true
|
isLoading = true
|
||||||
|
|
||||||
let request = ReportRequest(type: type, reason: reason, reportedMemberId: userId, cheersId: reportCheersId > 0 && type == .CHEERS ? reportCheersId : nil, audioContentId: nil)
|
let request = ReportRequest(type: type, reason: reason, reportedMemberId: userId, cheersId: cheersId > 0 && type == .CHEERS ? cheersId : nil, audioContentId: nil)
|
||||||
reportRepository.report(request: request)
|
reportRepository.report(request: request)
|
||||||
.sink { result in
|
.sink { result in
|
||||||
switch result {
|
switch result {
|
||||||
|
@ -501,7 +500,7 @@ final class UserProfileViewModel: ObservableObject {
|
||||||
self.isLoading = false
|
self.isLoading = false
|
||||||
let responseData = response.data
|
let responseData = response.data
|
||||||
|
|
||||||
self.reportCheersId = 0
|
self.cheersId = 0
|
||||||
|
|
||||||
do {
|
do {
|
||||||
let jsonDecoder = JSONDecoder()
|
let jsonDecoder = JSONDecoder()
|
||||||
|
@ -521,4 +520,43 @@ final class UserProfileViewModel: ObservableObject {
|
||||||
}
|
}
|
||||||
.store(in: &subscription)
|
.store(in: &subscription)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func deleteCheers(creatorId: Int) {
|
||||||
|
isLoading = true
|
||||||
|
|
||||||
|
repository.modifyCheers(cheersId: cheersId, content: nil, isActive: false)
|
||||||
|
.sink { result in
|
||||||
|
switch result {
|
||||||
|
case .finished:
|
||||||
|
DEBUG_LOG("finish")
|
||||||
|
case .failure(let error):
|
||||||
|
ERROR_LOG(error.localizedDescription)
|
||||||
|
}
|
||||||
|
} receiveValue: { [unowned self] response in
|
||||||
|
self.cheersId = 0
|
||||||
|
self.isLoading = false
|
||||||
|
let responseData = response.data
|
||||||
|
|
||||||
|
do {
|
||||||
|
let jsonDecoder = JSONDecoder()
|
||||||
|
let decoded = try jsonDecoder.decode(ApiResponseWithoutData.self, from: responseData)
|
||||||
|
|
||||||
|
if decoded.success {
|
||||||
|
self.getCreatorProfile(userId: creatorId)
|
||||||
|
} else {
|
||||||
|
if let message = decoded.message {
|
||||||
|
self.errorMessage = message
|
||||||
|
} else {
|
||||||
|
self.errorMessage = "다시 시도해 주세요.\n계속 같은 문제가 발생할 경우 고객센터로 문의 주시기 바랍니다."
|
||||||
|
}
|
||||||
|
|
||||||
|
self.isShowPopup = true
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
self.errorMessage = "다시 시도해 주세요.\n계속 같은 문제가 발생할 경우 고객센터로 문의 주시기 바랍니다."
|
||||||
|
self.isShowPopup = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.store(in: &subscription)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue