Files
2026-07-13 12:35:01 +08:00

193 lines
5.9 KiB
Objective-C

//
// TLExpressionItemCell.m
// TLChat
//
// Created by 李伯坤 on 16/4/4.
// Copyright © 2016年 李伯坤. All rights reserved.
//
#import "TLExpressionItemCell.h"
#import "TLExpressionGroupModel+Download.h"
#import "TLExpressionDownloadButton.h"
#import "TLExpressionGroupModel.h"
@interface TLExpressionItemCell ()
@property (nonatomic, strong) UIImageView *iconView;
@property (nonatomic, strong) UILabel *titleLabel;
@property (nonatomic, strong) UILabel *detailLabel;
@property (nonatomic, strong) UIImageView *tagView;
@property (nonatomic, strong) TLExpressionDownloadButton *downloadButton;
@property (nonatomic, copy) id (^eventAction)(NSInteger eventType, id data);
@end
@implementation TLExpressionItemCell
+ (CGFloat)viewHeightByDataModel:(id)dataModel
{
return 80;
}
- (void)setViewDataModel:(id)dataModel
{
[self setGroupModel:dataModel];
}
- (void)setViewEventAction:(id (^)(NSInteger, id))eventAction
{
[self setEventAction:eventAction];
}
- (void)viewIndexPath:(NSIndexPath *)indexPath sectionItemCount:(NSInteger)count
{
self.addSeparator(ZZSeparatorPositionBottom).beginAt(15);
}
#pragma mark - # Public Methods
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
[self.contentView addSubview:self.iconView];
[self.contentView addSubview:self.titleLabel];
[self.contentView addSubview:self.detailLabel];
[self.contentView addSubview:self.tagView];
[self.contentView addSubview:self.downloadButton];
[self p_addMasonry];
}
return self;
}
- (void)setGroupModel:(TLExpressionGroupModel *)groupModel
{
_groupModel = groupModel;
UIImage *image = [UIImage imageNamed:groupModel.path];
if (image) {
[self.iconView setImage:image];
}
else {
[self.iconView tt_setImageWithURL:TLURL(groupModel.iconURL)];
}
[self.titleLabel setText:groupModel.name];
[self.detailLabel setText:groupModel.detail];
if (groupModel.status == TLExpressionGroupStatusLocal) {
[self.downloadButton setStatus:TLExpressionDownloadButtonStatusDownloaded];
}
else if (groupModel.status == TLExpressionGroupStatusDownloading) {
[self.downloadButton setStatus:TLExpressionDownloadButtonStatusDownloading];
}
else {
[self.downloadButton setStatus:TLExpressionDownloadButtonStatusNet];
}
@weakify(self);
[self.downloadButton setProgress:groupModel.downloadProgress];
[groupModel setDownloadProgressAction:^(TLExpressionGroupModel *groupModel, CGFloat progress) {
@strongify(self);
[self.downloadButton setProgress:progress];
}];
[groupModel setDownloadCompleteAction:^(TLExpressionGroupModel *groupModel, BOOL success, id data) {
@strongify(self);
[self setGroupModel:groupModel];
}];
}
#pragma mark - # Private Methods
- (void)p_addMasonry
{
[self.iconView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.mas_equalTo(self.contentView).mas_offset(15);
make.top.mas_equalTo(self.contentView).mas_offset(10);
make.bottom.mas_equalTo(self.contentView).mas_offset(-10);
make.width.mas_equalTo(self.iconView.mas_height);
}];
[self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.bottom.mas_equalTo(self.iconView.mas_centerY).mas_offset(-2.0f);
make.left.mas_equalTo(self.iconView.mas_right).mas_offset(13.0f);
make.right.mas_lessThanOrEqualTo(self.downloadButton.mas_left).mas_offset(-15);
}];
[self.detailLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.mas_equalTo(self.iconView.mas_centerY).mas_offset(5.0);
make.left.mas_equalTo(self.titleLabel);
make.right.mas_lessThanOrEqualTo(self.downloadButton.mas_left).mas_offset(-15);
}];
[self.tagView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.and.top.mas_equalTo(self.contentView);
}];
[self.downloadButton mas_makeConstraints:^(MASConstraintMaker *make) {
make.right.mas_equalTo(self.contentView).mas_offset(-15);
make.centerY.mas_equalTo(self.contentView);
make.size.mas_equalTo(CGSizeMake(70, 27));
}];
}
#pragma mark - # Getter
- (UIImageView *)iconView
{
if (_iconView == nil) {
_iconView = [[UIImageView alloc] init];
[_iconView setBackgroundColor:[UIColor clearColor]];
[_iconView.layer setMasksToBounds:YES];
[_iconView.layer setCornerRadius:5.0f];
}
return _iconView;
}
- (UILabel *)titleLabel
{
if (_titleLabel == nil) {
_titleLabel = [[UILabel alloc] init];
[_titleLabel setFont:[UIFont systemFontOfSize:16.0f]];
[_titleLabel setBackgroundColor:[UIColor whiteColor]];
[_titleLabel setClipsToBounds:YES];
}
return _titleLabel;
}
- (UILabel *)detailLabel
{
if (_detailLabel == nil) {
_detailLabel = [[UILabel alloc] init];
[_detailLabel setFont:[UIFont systemFontOfSize:13.0f]];
[_detailLabel setTextColor:[UIColor grayColor]];
[_detailLabel setBackgroundColor:[UIColor whiteColor]];
[_detailLabel setClipsToBounds:YES];
}
return _detailLabel;
}
- (UIImageView *)tagView
{
if (_tagView == nil) {
_tagView = [[UIImageView alloc] init];
[_tagView setImage:[UIImage imageNamed:@"icon_corner_new"]];
[_tagView setHidden:YES];
}
return _tagView;
}
- (TLExpressionDownloadButton *)downloadButton
{
if (_downloadButton == nil) {
_downloadButton = [[TLExpressionDownloadButton alloc] init];
@weakify(self);
[_downloadButton setDownloadButtonClick:^{
@strongify(self);
if (self.groupModel.status == TLExpressionGroupStatusNet) {
[self.groupModel startDownload];
[self setGroupModel:self.groupModel];
}
}];
}
return _downloadButton;
}
@end