






#import "PromisedSignGatewaysYiddishCommandCell.h"
#import "MainMinimal.h"
#import "Masonry.h"

@implementation PromisedSignGatewaysYiddishCommandCell

-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if(self){
        
        self.backgroundColor = UIColor.whiteColor;
        self.contentView.backgroundColor = UIColor.whiteColor;
        self.selectionStyle = UITableViewCellSelectionStyleNone;
        
        
        self.busyRedoneView = [UIImageView new];
        self.busyRedoneView.tintColor = [MainMinimal anyUpsideColor];
        self.busyRedoneView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.busyRedoneView];
        [self.busyRedoneView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(MainMinimal.nordicPubTen.metricFolder);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(MainMinimal.nordicPubTen.ropeBaseline);
        }];
        
        
        self.concludeName = [UILabel new];
        self.concludeName.font = [UIFont boldSystemFontOfSize:16];
        self.concludeName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.concludeName];
        [self.concludeName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.busyRedoneView.mas_right).offset(MainMinimal.nordicPubTen.metricFolder);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.tamilCutLawTime = [UILabel new];
        self.tamilCutLawTime.font =  [UIFont systemFontOfSize:11];
        self.tamilCutLawTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.tamilCutLawTime];
        [self.tamilCutLawTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(MainMinimal.nordicPubTen.ownOurValue);
            make.left.equalTo(self.concludeName);
        }];
    }
    return self;
}

@end
