element-ios/Riot/Modules/Room/Views/BubbleCells/RoomOutgoingAttachmentBubbleCell.m

78 lines
2.2 KiB
Mathematica
Raw Normal View History

2015-08-18 08:04:30 +00:00
/*
Copyright 2015 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
2015-08-18 08:04:30 +00:00
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
2015-08-18 08:04:30 +00:00
http://www.apache.org/licenses/LICENSE-2.0
2015-08-18 08:04:30 +00:00
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 "RoomOutgoingAttachmentBubbleCell.h"
2015-08-18 08:04:30 +00:00
#import "ThemeService.h"
#import "Riot-Swift.h"
#import "MXKRoomBubbleTableViewCell+Riot.h"
@implementation RoomOutgoingAttachmentBubbleCell
- (void)customizeTableViewCellRendering
{
[super customizeTableViewCellRendering];
[self updateUserNameColor];
2019-01-11 10:45:27 +00:00
self.messageTextView.tintColor = ThemeService.shared.theme.tintColor;
}
- (void)render:(MXKCellData *)cellData
{
[super render:cellData];
[self updateUserNameColor];
[RoomOutgoingAttachmentBubbleCell render:cellData inBubbleCell:self];
}
2015-08-18 08:04:30 +00:00
- (void)didEndDisplay
{
[super didEndDisplay];
}
+ (void)render:(MXKCellData *)cellData inBubbleCell:(MXKRoomOutgoingAttachmentBubbleCell *)bubbleCell
{
if (bubbleCell.attachmentView && bubbleCell->bubbleData.isAttachmentWithThumbnail)
{
// Show a red border when the attachment sending failed
if (bubbleCell->bubbleData.attachment.eventSentState == MXEventSentStateFailed)
{
bubbleCell.attachmentView.layer.borderColor = ThemeService.shared.theme.warningColor.CGColor;
bubbleCell.attachmentView.layer.borderWidth = 1;
}
else
{
bubbleCell.attachmentView.layer.borderWidth = 0;
}
}
}
+ (CGFloat)heightForCellData:(MXKCellData*)cellData withMaximumWidth:(CGFloat)maxWidth
{
CGFloat rowHeight = [self attachmentBubbleCellHeightForCellData:cellData withMaximumWidth:maxWidth];
if (rowHeight <= 0)
{
rowHeight = [super heightForCellData:cellData withMaximumWidth:maxWidth];
}
return rowHeight;
}
@end