mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-24 02:22:44 +02:00
Merge branch 'master' of https://github.com/vector-im/element-ios into feature/3269_merge_element_1_8_18
# Conflicts: # Config/AppIdentifiers.xcconfig # Config/AppVersion.xcconfig # Podfile # Podfile.lock # Riot/Assets/de.lproj/Vector.strings # Riot/Generated/Images.swift # Riot/Modules/Analytics/DecryptionFailureTracker.m # Riot/Modules/Application/LegacyAppDelegate.h # Riot/Modules/Onboarding/OnboardingCoordinator.swift # Riot/Modules/Room/RoomInfo/RoomInfoList/RoomInfoListViewController.swift # Riot/Modules/Room/RoomViewController.m # Riot/SupportingFiles/Info.plist # Riot/Utils/EventFormatter.m # Riot/Utils/Tools.h # Riot/Utils/Tools.m # Riot/target.yml # RiotSwiftUI/Modules/Common/Mock/MockAppScreens.swift # fastlane/Fastfile # project.yml
This commit is contained in:
@@ -48,6 +48,7 @@
|
||||
self.lastEventDescription.textColor = ThemeService.shared.theme.textSecondaryColor;
|
||||
self.lastEventDate.textColor = ThemeService.shared.theme.textSecondaryColor;
|
||||
self.missedNotifAndUnreadBadgeLabel.textColor = ThemeService.shared.theme.baseTextPrimaryColor;
|
||||
self.presenceIndicatorView.borderColor = ThemeService.shared.theme.backgroundColor;
|
||||
|
||||
self.roomAvatar.defaultBackgroundColor = [UIColor clearColor];
|
||||
}
|
||||
@@ -128,11 +129,15 @@
|
||||
roomId:roomCellData.roomIdentifier
|
||||
displayName:roomCellData.roomDisplayname
|
||||
mediaManager:roomCellData.mxSession.mediaManager];
|
||||
|
||||
// Presence indicator
|
||||
self.presenceIndicatorView.borderColor = ThemeService.shared.theme.backgroundColor;
|
||||
self.presenceIndicatorView.presence = roomCellData.presence;
|
||||
self.presenceIndicatorView.hidden = roomCellData.presence == MXPresenceUnknown;
|
||||
|
||||
if (roomCellData.directUserId)
|
||||
{
|
||||
[self.presenceIndicatorView configureWithUserId:roomCellData.directUserId presence:roomCellData.presence];
|
||||
}
|
||||
else
|
||||
{
|
||||
[self.presenceIndicatorView stopListeningPresenceUpdates];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -140,6 +145,13 @@
|
||||
}
|
||||
}
|
||||
|
||||
- (void)prepareForReuse
|
||||
{
|
||||
[super prepareForReuse];
|
||||
|
||||
[self.presenceIndicatorView stopListeningPresenceUpdates];
|
||||
}
|
||||
|
||||
+ (CGFloat)heightForCellData:(MXKCellData *)cellData withMaximumWidth:(CGFloat)maxWidth
|
||||
{
|
||||
// The height is fixed
|
||||
|
||||
Reference in New Issue
Block a user