Merge pull request #995 from RyanRory/observing-sogs-permission-change

Show message input box when permission changed in a convo
pull/1006/head
Morgan Pretty 8 months ago committed by GitHub
commit 009c017ca2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -804,8 +804,10 @@ extension ConversationVC:
}
func hideInputAccessoryView() {
self.inputAccessoryView?.isHidden = true
self.inputAccessoryView?.alpha = 0
DispatchQueue.main.async {
self.inputAccessoryView?.isHidden = true
self.inputAccessoryView?.alpha = 0
}
}
func showInputAccessoryView() {

@ -74,9 +74,11 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
}
override var inputAccessoryView: UIView? {
guard viewModel.threadData.canWrite else { return nil }
return (isShowingSearchUI ? searchController.resultsBar : snInputView)
return (
(viewModel.threadData.canWrite && isShowingSearchUI) ?
searchController.resultsBar :
snInputView
)
}
/// The height of the visible part of the table view, i.e. the distance from the navigation bar (where the table view's origin is)
@ -750,6 +752,12 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa
viewModel.threadData.threadIsMessageRequest != updatedThreadData.threadIsMessageRequest ||
viewModel.threadData.threadRequiresApproval != updatedThreadData.threadRequiresApproval
{
if updatedThreadData.canWrite {
self.showInputAccessoryView()
} else {
self.hideInputAccessoryView()
}
let messageRequestsViewWasVisible: Bool = (self.messageRequestFooterView.isHidden == false)
UIView.animate(withDuration: 0.3) { [weak self] in

@ -491,14 +491,12 @@ extension OpenGroupAPI {
return true
}
// Note: This might need to be updated in the future when we start tracking
// user permissions if changes to permissions don't trigger a change to
// the 'infoUpdates'
return (
responseBody.activeUsers != existingOpenGroup.userCount || (
responseBody.details != nil &&
responseBody.details?.infoUpdates != existingOpenGroup.infoUpdates
)
) ||
OpenGroup.Permissions(roomInfo: responseBody) != existingOpenGroup.permissions
)
default: return true

Loading…
Cancel
Save