feat: update app workflows and permissions

This commit is contained in:
2026-07-09 17:34:00 +08:00
parent 43e6133c21
commit 8e356973bd
44 changed files with 2944 additions and 307 deletions

View File

@ -9,19 +9,44 @@ import UIKit
/// chip
final class OrderTypeChipView: UIView {
private enum Metrics {
static let contentInsets = UIEdgeInsets(top: 4, left: 8, bottom: 4, right: 8)
}
private let pillView = UIView()
private let label = UILabel()
override var intrinsicContentSize: CGSize {
let labelSize = label.intrinsicContentSize
return CGSize(
width: labelSize.width + Metrics.contentInsets.left + Metrics.contentInsets.right,
height: labelSize.height + Metrics.contentInsets.top + Metrics.contentInsets.bottom
)
}
override init(frame: CGRect) {
super.init(frame: frame)
backgroundColor = OrderTokens.chipBackground
layer.cornerRadius = OrderTokens.pillRadius
clipsToBounds = true
backgroundColor = .clear
setContentHuggingPriority(.required, for: .horizontal)
setContentHuggingPriority(.required, for: .vertical)
pillView.backgroundColor = OrderTokens.chipBackground
pillView.layer.cornerRadius = OrderTokens.pillRadius
pillView.clipsToBounds = true
label.font = .app(.caption)
label.textColor = AppColor.primary
addSubview(label)
label.lineBreakMode = .byTruncatingTail
label.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
addSubview(pillView)
pillView.addSubview(label)
pillView.snp.makeConstraints { make in
make.top.bottom.leading.equalToSuperview()
make.trailing.lessThanOrEqualToSuperview()
}
label.snp.makeConstraints { make in
make.edges.equalToSuperview().inset(UIEdgeInsets(top: 0, left: AppSpacing.xxs, bottom: 0, right: AppSpacing.xxs))
make.edges.equalToSuperview().inset(Metrics.contentInsets)
}
}
@ -33,5 +58,6 @@ final class OrderTypeChipView: UIView {
func apply(text: String) {
label.text = text
isHidden = text.isEmpty
invalidateIntrinsicContentSize()
}
}