Fixed a couple of issues found during internal testing

• Fixed an issue where leaving a group from the settings screen would just sit there until you successfully left
• Fixed an issue where admin display pictures didn't have the crown icon in the conversation screen
pull/1061/head
Morgan Pretty 1 month ago
parent 6a144633d2
commit 22f3974968

@ -7915,7 +7915,7 @@
CLANG_WARN__ARC_BRIDGE_CAST_NONARC = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
CURRENT_PROJECT_VERSION = 549;
CURRENT_PROJECT_VERSION = 550;
ENABLE_BITCODE = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
@ -7991,7 +7991,7 @@
CLANG_WARN__ARC_BRIDGE_CAST_NONARC = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Distribution";
CURRENT_PROJECT_VERSION = 549;
CURRENT_PROJECT_VERSION = 550;
ENABLE_BITCODE = NO;
ENABLE_MODULE_VERIFIER = YES;
ENABLE_STRICT_OBJC_MSGSEND = YES;

@ -754,11 +754,21 @@ public class ConversationViewModel: OWSAudioPlayerDelegate, NavigatableStateHold
body: interaction.body,
expiresStartedAtMs: interaction.expiresStartedAtMs,
expiresInSeconds: interaction.expiresInSeconds,
isSenderOpenGroupModerator: dependencies[singleton: .openGroupManager].isUserModeratorOrAdmin(
isSenderModeratorOrAdmin: {
switch threadData.threadVariant {
case .group, .legacyGroup:
return (threadData.currentUserIsClosedGroupAdmin == true)
case .community:
return dependencies[singleton: .openGroupManager].isUserModeratorOrAdmin(
publicKey: threadData.currentUserSessionId,
for: threadData.openGroupRoomToken,
on: threadData.openGroupServer
),
)
default: return false
}
}(),
currentUserProfile: currentUserProfile,
quote: quoteModel.map { model in
// Don't care about this optimistic quote (the proper one will be generated in the database)

@ -310,7 +310,7 @@ final class VisibleMessageCell: MessageCell, TappableLabelDelegate {
threadVariant: .contact, // Always show the display picture in 'contact' mode
displayPictureFilename: nil,
profile: cellViewModel.profile,
profileIcon: (cellViewModel.isSenderOpenGroupModerator ? .crown : .none),
profileIcon: (cellViewModel.isSenderModeratorOrAdmin ? .crown : .none),
using: dependencies
)

@ -540,7 +540,7 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigatableStateHolder, Ob
confirmStyle: .danger,
cancelStyle: .alert_text
),
onTap: { [dependencies] in
onTap: { [weak self, dependencies] in
dependencies[singleton: .storage].write { db in
try SessionThread.deleteOrLeave(
db,
@ -550,6 +550,8 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigatableStateHolder, Ob
using: dependencies
)
}
self?.dismissScreen(type: .popToRoot)
}
)
),

@ -245,7 +245,7 @@ struct MessageInfoScreen: View {
threadVariant: .contact, // Always show the display picture in 'contact' mode
displayPictureFilename: nil,
profile: messageViewModel.profile,
profileIcon: (messageViewModel.isSenderOpenGroupModerator ? .crown : .none),
profileIcon: (messageViewModel.isSenderModeratorOrAdmin ? .crown : .none),
using: dependencies
)
@ -591,7 +591,7 @@ struct MessageInfoView_Previews: PreviewProvider {
expiresStartedAtMs: nil,
expiresInSeconds: nil,
state: .failed,
isSenderOpenGroupModerator: false,
isSenderModeratorOrAdmin: false,
currentUserProfile: Profile.fetchOrCreateCurrentUser(using: dependencies),
quote: nil,
quoteAttachment: nil,

@ -45,7 +45,7 @@ public struct MessageViewModel: FetchableRecordWithRowId, Decodable, Equatable,
case state
case hasBeenReadByRecipient
case mostRecentFailureText
case isSenderOpenGroupModerator
case isSenderModeratorOrAdmin
case isTypingIndicator
case profile
case quote
@ -129,7 +129,7 @@ public struct MessageViewModel: FetchableRecordWithRowId, Decodable, Equatable,
public let state: Interaction.State
public let hasBeenReadByRecipient: Bool
public let mostRecentFailureText: String?
public let isSenderOpenGroupModerator: Bool
public let isSenderModeratorOrAdmin: Bool
public let isTypingIndicator: Bool?
public let profile: Profile?
public let quote: Quote?
@ -240,7 +240,7 @@ public struct MessageViewModel: FetchableRecordWithRowId, Decodable, Equatable,
state: (state ?? self.state),
hasBeenReadByRecipient: self.hasBeenReadByRecipient,
mostRecentFailureText: (mostRecentFailureText ?? self.mostRecentFailureText),
isSenderOpenGroupModerator: self.isSenderOpenGroupModerator,
isSenderModeratorOrAdmin: self.isSenderModeratorOrAdmin,
isTypingIndicator: self.isTypingIndicator,
profile: self.profile,
quote: (quote ?? self.quote),
@ -302,7 +302,7 @@ public struct MessageViewModel: FetchableRecordWithRowId, Decodable, Equatable,
state: self.state,
hasBeenReadByRecipient: self.hasBeenReadByRecipient,
mostRecentFailureText: self.mostRecentFailureText,
isSenderOpenGroupModerator: self.isSenderOpenGroupModerator,
isSenderModeratorOrAdmin: self.isSenderModeratorOrAdmin,
isTypingIndicator: self.isTypingIndicator,
profile: self.profile,
quote: self.quote,
@ -492,7 +492,7 @@ public struct MessageViewModel: FetchableRecordWithRowId, Decodable, Equatable,
state: self.state,
hasBeenReadByRecipient: self.hasBeenReadByRecipient,
mostRecentFailureText: self.mostRecentFailureText,
isSenderOpenGroupModerator: self.isSenderOpenGroupModerator,
isSenderModeratorOrAdmin: self.isSenderModeratorOrAdmin,
isTypingIndicator: self.isTypingIndicator,
profile: self.profile,
quote: self.quote,
@ -745,7 +745,7 @@ public extension MessageViewModel {
self.state = .sent
self.hasBeenReadByRecipient = false
self.mostRecentFailureText = nil
self.isSenderOpenGroupModerator = false
self.isSenderModeratorOrAdmin = false
self.isTypingIndicator = isTypingIndicator
self.profile = nil
self.quote = quote
@ -794,7 +794,7 @@ public extension MessageViewModel {
expiresStartedAtMs: Double?,
expiresInSeconds: TimeInterval?,
state: Interaction.State = .sending,
isSenderOpenGroupModerator: Bool,
isSenderModeratorOrAdmin: Bool,
currentUserProfile: Profile,
quote: Quote?,
quoteAttachment: Attachment?,
@ -830,7 +830,7 @@ public extension MessageViewModel {
self.state = state
self.hasBeenReadByRecipient = false
self.mostRecentFailureText = nil
self.isSenderOpenGroupModerator = isSenderOpenGroupModerator
self.isSenderModeratorOrAdmin = isSenderModeratorOrAdmin
self.isTypingIndicator = false
self.profile = currentUserProfile
self.quote = quote
@ -985,10 +985,9 @@ public extension MessageViewModel {
WHERE (
\(groupMember[.groupId]) = \(interaction[.threadId]) AND
\(groupMember[.profileId]) = \(interaction[.authorId]) AND
\(SQL("\(thread[.variant]) = \(SessionThread.Variant.community)")) AND
\(SQL("\(groupMember[.role]) IN \([GroupMember.Role.moderator, GroupMember.Role.admin])"))
)
) AS \(ViewModel.Columns.isSenderOpenGroupModerator),
) AS \(ViewModel.Columns.isSenderModeratorOrAdmin),
\(profile.allColumns),
\(quote[.interactionId]),

Loading…
Cancel
Save