mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-23 01:52:44 +02:00
dc747fec93
Note - DirectoryServerTableViewCell: Presently the thirdPartyProtocolInstance.icon is not a Matrix Content URI. We could not use here MXKImageView setImageURI method without breaking the instance icon rendering. We use the deprecated interface until this point is fixed on the server side.
77 lines
2.3 KiB
Objective-C
77 lines
2.3 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 "RiotDesignValues.h"
|
|
|
|
@implementation DirectoryServerTableViewCell
|
|
|
|
#pragma mark - Class methods
|
|
|
|
- (void)customizeTableViewCellRendering
|
|
{
|
|
[super customizeTableViewCellRendering];
|
|
|
|
self.descLabel.textColor = kRiotPrimaryTextColor;
|
|
}
|
|
|
|
- (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. We could not use here MXKImageView setImageURI method
|
|
// without breaking the instance icon rendering. We use the deprecated interface until this point is fixed on the server side.
|
|
// TODO: MEDIA: remove the deprecated interface use.
|
|
[self.iconImageView setImageURL:cellData.thirdPartyProtocolInstance.icon withType:nil andImageOrientation:UIImageOrientationUp previewImage:[UIImage imageNamed:@"placeholder"]];
|
|
// [self.iconImageView setImageURI:cellData.thirdPartyProtocolInstance.icon
|
|
// withType:nil
|
|
// andImageOrientation:UIImageOrientationUp
|
|
// previewImage:[UIImage imageNamed:@"placeholder"]
|
|
// mediaManager:cellData.mediaManager];
|
|
}
|
|
else
|
|
{
|
|
self.iconImageView.hidden = YES;
|
|
}
|
|
|
|
self.descLabel.text = cellData.desc;
|
|
}
|
|
|
|
+ (CGFloat)cellHeight
|
|
{
|
|
return 74;
|
|
}
|
|
|
|
@end
|