element-ios/Riot/Modules/Rooms/DirectoryPicker/Views/DirectoryServerTableViewCell.m
aringenbach 94dab7ad4b
Add objective C support to SwiftGen assets helpers (#5533)
* Add objective C support to SwiftGen assets helpers

* Use dot notation in ObjC & fix minor issues

Co-authored-by: Arnaud Ringenbach <arnaud.ringenbach@niji.fr>
2022-02-10 17:13:23 +01:00

83 lines
2.6 KiB
Objective-C

/*
Copyright 2017 Vector Creations Ltd
Copyright 2018 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#import "DirectoryServerTableViewCell.h"
#import "AvatarGenerator.h"
#import "ThemeService.h"
#import "GeneratedInterface-Swift.h"
@implementation DirectoryServerTableViewCell
#pragma mark - Class methods
- (void)customizeTableViewCellRendering
{
[super customizeTableViewCellRendering];
self.descLabel.textColor = ThemeService.shared.theme.textPrimaryColor;
}
- (void)layoutSubviews
{
[super layoutSubviews];
// Round image view
self.iconImageView.clipsToBounds = YES;
self.iconImageView.defaultBackgroundColor = [UIColor clearColor];
}
- (void)render:(id<MXKDirectoryServerCellDataStoring>)cellData
{
self.iconImageView.hidden = NO;
if (cellData.icon)
{
self.iconImageView.image = cellData.icon;
}
else if (cellData.thirdPartyProtocolInstance.icon)
{
// Presently the thirdPartyProtocolInstance.icon is not a Matrix Content URI (https://github.com/matrix-org/synapse/issues/4175).
// Patch: We extract the expected URI from the URL
NSString *iconURL = cellData.thirdPartyProtocolInstance.icon;
NSString *mxMediaPrefix = [NSString stringWithFormat:@"/%@/download/", kMXContentPrefixPath];
NSRange range = [iconURL rangeOfString:mxMediaPrefix];
if (range.location != NSNotFound)
{
iconURL = [NSString stringWithFormat:@"%@%@", kMXContentUriScheme, [iconURL substringFromIndex:range.location + range.length]];
}
[self.iconImageView setImageURI:iconURL
withType:nil
andImageOrientation:UIImageOrientationUp
previewImage:[MXKTools paintImage:AssetImages.placeholder.image
withColor:ThemeService.shared.theme.tintColor]
mediaManager:cellData.mediaManager];
}
else
{
self.iconImageView.hidden = YES;
}
self.descLabel.text = cellData.desc;
}
+ (CGFloat)cellHeight
{
return 74;
}
@end