mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-09 06:38:24 +08:00
114 lines
3.8 KiB
Swift
114 lines
3.8 KiB
Swift
//
|
|
// IssueStatusEventCell.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 6/7/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import SnapKit
|
|
|
|
protocol IssueStatusEventCellDelegate: class {
|
|
func didTapActor(cell: IssueStatusEventCell)
|
|
func didTapHash(cell: IssueStatusEventCell)
|
|
}
|
|
|
|
final class IssueStatusEventCell: UICollectionViewCell {
|
|
|
|
weak var delegate: IssueStatusEventCellDelegate?
|
|
|
|
private let actorButton = UIButton()
|
|
private let hashButton = UIButton()
|
|
private let statusButton = UIButton()
|
|
private let dateLabel = ShowMoreDetailsLabel()
|
|
|
|
private var dateConstraint: Constraint?
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
|
|
actorButton.addTarget(self, action: #selector(IssueStatusEventCell.onActor), for: .touchUpInside)
|
|
contentView.addSubview(actorButton)
|
|
actorButton.snp.makeConstraints { make in
|
|
make.left.equalTo(Styles.Sizes.eventGutter)
|
|
make.centerY.equalTo(contentView)
|
|
}
|
|
|
|
statusButton.setupAsLabel()
|
|
contentView.addSubview(statusButton)
|
|
statusButton.snp.makeConstraints { make in
|
|
make.left.equalTo(actorButton.snp.right).offset(Styles.Sizes.inlineSpacing)
|
|
make.centerY.equalTo(contentView)
|
|
}
|
|
|
|
// courier has a little bit of a different kerning, manually adjust
|
|
hashButton.titleLabel?.font = Styles.Fonts.secondaryCode
|
|
hashButton.setTitleColor(Styles.Colors.Gray.dark.color, for: .normal)
|
|
hashButton.addTarget(self, action: #selector(IssueStatusEventCell.onHash), for: .touchUpInside)
|
|
contentView.addSubview(hashButton)
|
|
hashButton.snp.makeConstraints { make in
|
|
make.left.equalTo(statusButton.snp.right).offset(Styles.Sizes.inlineSpacing)
|
|
make.centerY.equalTo(contentView).offset(1)
|
|
}
|
|
|
|
dateLabel.font = Styles.Fonts.secondary
|
|
dateLabel.textColor = Styles.Colors.Gray.medium.color
|
|
dateLabel.backgroundColor = .clear
|
|
contentView.addSubview(dateLabel)
|
|
dateLabel.snp.makeConstraints { make in
|
|
self.dateConstraint = make.left.equalTo(hashButton.snp.right).offset(Styles.Sizes.inlineSpacing).constraint
|
|
make.centerY.equalTo(contentView)
|
|
}
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
layoutContentViewForSafeAreaInsets()
|
|
}
|
|
|
|
// MARK: Private API
|
|
|
|
@objc
|
|
func onActor() {
|
|
delegate?.didTapActor(cell: self)
|
|
}
|
|
|
|
@objc
|
|
func onHash() {
|
|
delegate?.didTapHash(cell: self)
|
|
}
|
|
|
|
// MARK: Public API
|
|
|
|
func configure(_ model: IssueStatusEventModel) {
|
|
let actorAttributes = [
|
|
NSAttributedStringKey.foregroundColor: Styles.Colors.Gray.dark.color,
|
|
NSAttributedStringKey.font: Styles.Fonts.secondaryBold
|
|
]
|
|
actorButton.setAttributedTitle(NSAttributedString(string: model.actor, attributes: actorAttributes), for: .normal)
|
|
|
|
let title: String
|
|
switch model.status {
|
|
case .reopened: title = Constants.Strings.reopened // open event only happens when RE-opening
|
|
case .closed: title = Constants.Strings.closed
|
|
case .locked: title = Constants.Strings.locked
|
|
case .unlocked: title = NSLocalizedString("Unlocked", comment: "")
|
|
case .merged: title = Constants.Strings.merged
|
|
}
|
|
statusButton.setTitle(title, for: .normal)
|
|
statusButton.config(pullRequest: model.pullRequest, state: model.status.buttonState)
|
|
|
|
let hash = model.commitHash?.hashDisplay
|
|
hashButton.setTitle(hash, for: .normal)
|
|
|
|
dateConstraint?.update(offset: hash == nil ? -30 : Styles.Sizes.inlineSpacing)
|
|
dateLabel.setText(date: model.date)
|
|
}
|
|
|
|
}
|