metatext-app-ios-iphone-ipad/Views/Status/StatusAttachmentsView.swift

152 lines
6.8 KiB
Swift
Raw Normal View History

2020-08-28 21:56:28 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
2020-09-01 09:33:49 +02:00
import ViewModels
2020-08-28 21:56:28 +02:00
2020-10-11 23:03:25 +02:00
final class StatusAttachmentsView: UIView {
2020-08-28 21:56:28 +02:00
private let containerStackView = UIStackView()
private let leftStackView = UIStackView()
private let rightStackView = UIStackView()
2020-10-14 02:03:01 +02:00
private let curtain = UIVisualEffectView(effect: UIBlurEffect(style: .systemMaterial))
private let curtainButton = UIButton(type: .system)
private let hideButtonBackground = UIVisualEffectView(effect: UIBlurEffect(style: .systemMaterial))
private let hideButton = UIButton()
2020-10-12 07:37:34 +02:00
private var aspectRatioConstraint: NSLayoutConstraint?
2020-08-28 21:56:28 +02:00
2020-10-13 22:18:49 +02:00
var viewModel: StatusViewModel? {
2020-08-28 21:56:28 +02:00
didSet {
for stackView in [leftStackView, rightStackView] {
for view in stackView.arrangedSubviews {
stackView.removeArrangedSubview(view)
view.removeFromSuperview()
}
}
2020-10-13 22:18:49 +02:00
let attachmentViewModels = viewModel?.attachmentViewModels ?? []
2020-08-28 21:56:28 +02:00
let attachmentCount = attachmentViewModels.count
rightStackView.isHidden = attachmentCount == 1
for (index, viewModel) in attachmentViewModels.enumerated() {
2020-10-11 23:03:25 +02:00
let attachmentView = StatusAttachmentView(viewModel: viewModel)
2020-08-28 21:56:28 +02:00
if attachmentCount == 2 && index == 1
|| attachmentCount == 3 && index != 0
|| attachmentCount > 3 && index % 2 != 0 {
2020-10-11 23:03:25 +02:00
rightStackView.addArrangedSubview(attachmentView)
2020-08-28 21:56:28 +02:00
} else {
2020-10-11 23:03:25 +02:00
leftStackView.addArrangedSubview(attachmentView)
2020-08-28 21:56:28 +02:00
}
}
2020-10-12 07:37:34 +02:00
let newAspectRatio: CGFloat
2020-10-13 22:18:49 +02:00
if attachmentCount == 1, let aspectRatio = attachmentViewModels.first?.aspectRatio {
2020-10-12 07:37:34 +02:00
newAspectRatio = max(CGFloat(aspectRatio), 16 / 9)
} else {
newAspectRatio = 16 / 9
}
aspectRatioConstraint?.isActive = false
aspectRatioConstraint = widthAnchor.constraint(equalTo: heightAnchor, multiplier: newAspectRatio)
aspectRatioConstraint?.priority = .justBelowMax
aspectRatioConstraint?.isActive = true
2020-10-14 02:03:01 +02:00
curtain.isHidden = viewModel?.shouldShowAttachments ?? false
curtainButton.setTitle(
NSLocalizedString((viewModel?.sensitive ?? false)
? "attachment.sensitive-content"
: "attachment.media-hidden",
comment: ""),
for: .normal)
hideButtonBackground.isHidden = !(viewModel?.shouldShowHideAttachmentsButton ?? false)
2020-08-28 21:56:28 +02:00
}
}
override init(frame: CGRect) {
super.init(frame: frame)
2020-10-13 22:11:27 +02:00
initialSetup()
2020-08-28 21:56:28 +02:00
}
2020-10-13 22:11:27 +02:00
@available(*, unavailable)
2020-08-28 21:56:28 +02:00
required init?(coder: NSCoder) {
2020-10-13 22:11:27 +02:00
fatalError("init(coder:) has not been implemented")
2020-08-28 21:56:28 +02:00
}
}
2020-10-11 23:03:25 +02:00
private extension StatusAttachmentsView {
2020-10-14 02:03:01 +02:00
// swiftlint:disable:next function_body_length
2020-10-13 22:11:27 +02:00
func initialSetup() {
2020-08-28 21:56:28 +02:00
backgroundColor = .clear
layoutMargins = .zero
clipsToBounds = true
2020-09-29 03:32:28 +02:00
layer.cornerRadius = .defaultCornerRadius
2020-08-28 21:56:28 +02:00
addSubview(containerStackView)
containerStackView.translatesAutoresizingMaskIntoConstraints = false
containerStackView.distribution = .fillEqually
2020-09-29 03:32:28 +02:00
containerStackView.spacing = .compactSpacing
2020-08-28 21:56:28 +02:00
leftStackView.distribution = .fillEqually
2020-09-29 03:32:28 +02:00
leftStackView.spacing = .compactSpacing
2020-08-28 21:56:28 +02:00
leftStackView.axis = .vertical
rightStackView.distribution = .fillEqually
2020-09-29 03:32:28 +02:00
rightStackView.spacing = .compactSpacing
2020-08-28 21:56:28 +02:00
rightStackView.axis = .vertical
containerStackView.addArrangedSubview(leftStackView)
containerStackView.addArrangedSubview(rightStackView)
2020-09-29 03:32:28 +02:00
2020-10-14 02:03:01 +02:00
let toggleShowAttachmentsAction = UIAction { [weak self] _ in
self?.viewModel?.toggleShowAttachments()
}
addSubview(hideButtonBackground)
hideButtonBackground.translatesAutoresizingMaskIntoConstraints = false
hideButtonBackground.clipsToBounds = true
hideButtonBackground.layer.cornerRadius = .defaultCornerRadius
hideButton.addAction(toggleShowAttachmentsAction, for: .touchUpInside)
hideButtonBackground.contentView.addSubview(hideButton)
hideButton.translatesAutoresizingMaskIntoConstraints = false
hideButton.setImage(
UIImage(systemName: "eye.slash", withConfiguration: UIImage.SymbolConfiguration(scale: .medium)),
for: .normal)
addSubview(curtain)
curtain.translatesAutoresizingMaskIntoConstraints = false
curtain.contentView.addSubview(curtainButton)
curtainButton.addAction(toggleShowAttachmentsAction, for: .touchUpInside)
curtainButton.translatesAutoresizingMaskIntoConstraints = false
curtainButton.titleLabel?.font = .preferredFont(forTextStyle: .headline)
curtainButton.titleLabel?.adjustsFontForContentSizeCategory = true
2020-09-29 03:32:28 +02:00
NSLayoutConstraint.activate([
2020-10-14 02:03:01 +02:00
containerStackView.leadingAnchor.constraint(equalTo: leadingAnchor),
containerStackView.trailingAnchor.constraint(equalTo: trailingAnchor),
containerStackView.topAnchor.constraint(equalTo: topAnchor),
containerStackView.bottomAnchor.constraint(equalTo: bottomAnchor),
hideButtonBackground.topAnchor.constraint(equalTo: topAnchor, constant: .defaultSpacing),
hideButtonBackground.leadingAnchor.constraint(equalTo: leadingAnchor, constant: .defaultSpacing),
hideButton.topAnchor.constraint(
equalTo: hideButtonBackground.contentView.topAnchor,
constant: .compactSpacing),
hideButton.leadingAnchor.constraint(
equalTo: hideButtonBackground.contentView.leadingAnchor,
constant: .compactSpacing),
hideButtonBackground.contentView.trailingAnchor.constraint(
equalTo: hideButton.trailingAnchor,
constant: .compactSpacing),
hideButtonBackground.contentView.bottomAnchor.constraint(
equalTo: hideButton.bottomAnchor,
constant: .compactSpacing),
curtain.topAnchor.constraint(equalTo: topAnchor),
curtain.leadingAnchor.constraint(equalTo: leadingAnchor),
curtain.trailingAnchor.constraint(equalTo: trailingAnchor),
curtain.bottomAnchor.constraint(equalTo: bottomAnchor),
curtainButton.topAnchor.constraint(equalTo: curtain.contentView.topAnchor),
curtainButton.leadingAnchor.constraint(equalTo: curtain.contentView.leadingAnchor),
curtainButton.trailingAnchor.constraint(equalTo: curtain.contentView.trailingAnchor),
curtainButton.bottomAnchor.constraint(equalTo: curtain.contentView.bottomAnchor)
2020-09-29 03:32:28 +02:00
])
2020-08-28 21:56:28 +02:00
}
}