115 lines
4.4 KiB
Mathematica
115 lines
4.4 KiB
Mathematica
|
|
//
|
||
|
|
// TCommonContactCell.m
|
||
|
|
// TXIMSDK_TUIKit_iOS
|
||
|
|
//
|
||
|
|
// Created by annidyfeng on 2019/5/5.
|
||
|
|
// Copyright © 2023 Tencent. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "TUICommonContactCell.h"
|
||
|
|
#import <TIMCommon/TIMCommonModel.h>
|
||
|
|
#import <TIMCommon/TIMDefine.h>
|
||
|
|
#import <TUICore/TUIThemeManager.h>
|
||
|
|
#import "TUICommonContactCellData.h"
|
||
|
|
|
||
|
|
#define kScale UIScreen.mainScreen.bounds.size.width / 375.0
|
||
|
|
|
||
|
|
@interface TUICommonContactCell ()
|
||
|
|
@property TUICommonContactCellData *contactData;
|
||
|
|
@end
|
||
|
|
|
||
|
|
@implementation TUICommonContactCell
|
||
|
|
|
||
|
|
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
|
||
|
|
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
|
||
|
|
if (self) {
|
||
|
|
self.contentView.backgroundColor = TIMCommonDynamicColor(@"form_bg_color", @"#FFFFFF");
|
||
|
|
self.avatarView = [[UIImageView alloc] initWithImage:DefaultAvatarImage];
|
||
|
|
[self.contentView addSubview:self.avatarView];
|
||
|
|
|
||
|
|
self.titleLabel = [[UILabel alloc] initWithFrame:CGRectZero];
|
||
|
|
[self.contentView addSubview:self.titleLabel];
|
||
|
|
self.titleLabel.textColor = TIMCommonDynamicColor(@"form_title_color", @"#000000");
|
||
|
|
|
||
|
|
self.onlineStatusIcon = [[UIImageView alloc] init];
|
||
|
|
[self.contentView addSubview:self.onlineStatusIcon];
|
||
|
|
|
||
|
|
[self setSelectionStyle:UITableViewCellSelectionStyleNone];
|
||
|
|
|
||
|
|
self.changeColorWhenTouched = YES;
|
||
|
|
}
|
||
|
|
return self;
|
||
|
|
}
|
||
|
|
|
||
|
|
- (void)fillWithData:(TUICommonContactCellData *)contactData {
|
||
|
|
[super fillWithData:contactData];
|
||
|
|
self.contactData = contactData;
|
||
|
|
|
||
|
|
self.titleLabel.text = contactData.title;
|
||
|
|
[self.avatarView sd_setImageWithURL:contactData.avatarUrl placeholderImage:contactData.avatarImage ?: DefaultAvatarImage];
|
||
|
|
|
||
|
|
@weakify(self);
|
||
|
|
[[RACObserve(TUIConfig.defaultConfig, displayOnlineStatusIcon) takeUntil:self.rac_prepareForReuseSignal] subscribeNext:^(id _Nullable x) {
|
||
|
|
@strongify(self);
|
||
|
|
if (contactData.onlineStatus == TUIContactOnlineStatusOnline && TUIConfig.defaultConfig.displayOnlineStatusIcon) {
|
||
|
|
self.onlineStatusIcon.hidden = NO;
|
||
|
|
self.onlineStatusIcon.image = TIMCommonDynamicImage(@"icon_online_status", [UIImage imageNamed:TIMCommonImagePath(@"icon_online_status")]);
|
||
|
|
} else if (contactData.onlineStatus == TUIContactOnlineStatusOffline && TUIConfig.defaultConfig.displayOnlineStatusIcon) {
|
||
|
|
self.onlineStatusIcon.hidden = NO;
|
||
|
|
self.onlineStatusIcon.image = TIMCommonDynamicImage(@"icon_offline_status", [UIImage imageNamed:TIMCommonImagePath(@"icon_offline_status")]);
|
||
|
|
} else {
|
||
|
|
self.onlineStatusIcon.hidden = YES;
|
||
|
|
self.onlineStatusIcon.image = nil;
|
||
|
|
}
|
||
|
|
}];
|
||
|
|
// tell constraints they need updating
|
||
|
|
[self setNeedsUpdateConstraints];
|
||
|
|
|
||
|
|
// update constraints now so we can animate the change
|
||
|
|
[self updateConstraintsIfNeeded];
|
||
|
|
|
||
|
|
[self layoutIfNeeded];
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
+ (BOOL)requiresConstraintBasedLayout {
|
||
|
|
return YES;
|
||
|
|
}
|
||
|
|
|
||
|
|
// this is Apple's recommended place for adding/updating constraints
|
||
|
|
- (void)updateConstraints {
|
||
|
|
|
||
|
|
[super updateConstraints];
|
||
|
|
CGFloat imgWidth = kScale390(34);
|
||
|
|
|
||
|
|
[self.avatarView mas_remakeConstraints:^(MASConstraintMaker *make) {
|
||
|
|
make.width.height.mas_equalTo(imgWidth);
|
||
|
|
make.centerY.mas_equalTo(self.contentView.mas_centerY);
|
||
|
|
make.leading.mas_equalTo(kScale390(12));
|
||
|
|
}];
|
||
|
|
if ([TUIConfig defaultConfig].avatarType == TAvatarTypeRounded) {
|
||
|
|
self.avatarView.layer.masksToBounds = YES;
|
||
|
|
self.avatarView.layer.cornerRadius = imgWidth / 2;
|
||
|
|
} else if ([TUIConfig defaultConfig].avatarType == TAvatarTypeRadiusCorner) {
|
||
|
|
self.avatarView.layer.masksToBounds = YES;
|
||
|
|
self.avatarView.layer.cornerRadius = [TUIConfig defaultConfig].avatarCornerRadius;
|
||
|
|
}
|
||
|
|
|
||
|
|
[self.titleLabel mas_remakeConstraints:^(MASConstraintMaker *make) {
|
||
|
|
make.centerY.mas_equalTo(self.avatarView.mas_centerY);
|
||
|
|
make.leading.mas_equalTo(self.avatarView.mas_trailing).mas_offset(12);
|
||
|
|
make.height.mas_equalTo(20);
|
||
|
|
make.trailing.mas_greaterThanOrEqualTo(self.contentView.mas_trailing);
|
||
|
|
|
||
|
|
}];
|
||
|
|
|
||
|
|
[self.onlineStatusIcon mas_remakeConstraints:^(MASConstraintMaker *make) {
|
||
|
|
make.width.height.mas_equalTo(kScale375(15));
|
||
|
|
make.trailing.mas_equalTo(self.avatarView.mas_trailing).mas_offset(kScale375(5));
|
||
|
|
make.bottom.mas_equalTo(self.avatarView.mas_bottom);
|
||
|
|
}];
|
||
|
|
self.onlineStatusIcon.layer.cornerRadius = 0.5 * kScale375(15);
|
||
|
|
}
|
||
|
|
|
||
|
|
@end
|