mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-24 08:54:10 +08:00
* PR patch files use base list VC * white bg on cell * remove dead code, update schema, thread file count
80 lines
2.5 KiB
Swift
80 lines
2.5 KiB
Swift
//
|
|
// IssueFileCell.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 8/12/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import SnapKit
|
|
|
|
final class IssueFileCell: SelectableCell {
|
|
|
|
private let changeLabel = UILabel()
|
|
private let pathLabel = UILabel()
|
|
private let disclosure = UIImageView(image: UIImage(named: "chevron-right")?.withRenderingMode(.alwaysTemplate))
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
|
|
backgroundColor = .white
|
|
|
|
disclosure.tintColor = Styles.Colors.Gray.light.color
|
|
disclosure.contentMode = .scaleAspectFit
|
|
contentView.addSubview(disclosure)
|
|
disclosure.snp.makeConstraints { make in
|
|
make.right.equalTo(-Styles.Sizes.gutter)
|
|
make.centerY.equalTo(contentView)
|
|
make.size.equalTo(Styles.Sizes.icon)
|
|
}
|
|
|
|
contentView.addSubview(changeLabel)
|
|
changeLabel.snp.makeConstraints { make in
|
|
make.left.equalTo(Styles.Sizes.gutter)
|
|
make.bottom.equalTo(contentView.snp.centerY)
|
|
make.right.lessThanOrEqualTo(disclosure.snp.left).offset(-Styles.Sizes.rowSpacing)
|
|
}
|
|
|
|
pathLabel.font = Styles.Fonts.body
|
|
pathLabel.textColor = Styles.Colors.Gray.dark.color
|
|
pathLabel.lineBreakMode = .byTruncatingHead
|
|
contentView.addSubview(pathLabel)
|
|
pathLabel.snp.makeConstraints { make in
|
|
make.left.equalTo(Styles.Sizes.gutter)
|
|
make.top.equalTo(changeLabel.snp.bottom)
|
|
make.right.lessThanOrEqualTo(disclosure.snp.left).offset(-Styles.Sizes.rowSpacing)
|
|
}
|
|
|
|
addBorder(.bottom, left: Styles.Sizes.gutter)
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
// MARK: Public API
|
|
|
|
func configure(path: String, additions: Int, deletions: Int) {
|
|
let changeString = NSMutableAttributedString()
|
|
var attributes: [NSAttributedStringKey: Any] = [
|
|
.font: Styles.Fonts.secondaryBold
|
|
]
|
|
|
|
if additions > 0 {
|
|
attributes[.foregroundColor] = Styles.Colors.Green.medium.color
|
|
changeString.append(NSAttributedString(string: "+\(additions) ", attributes: attributes))
|
|
}
|
|
|
|
if deletions > 0 {
|
|
attributes[.foregroundColor] = Styles.Colors.Red.medium.color
|
|
changeString.append(NSAttributedString(string: "-\(deletions)", attributes: attributes))
|
|
}
|
|
|
|
changeLabel.attributedText = changeString
|
|
|
|
pathLabel.text = path
|
|
}
|
|
|
|
}
|