2021-01-11 01:06:20 +01:00
|
|
|
// Copyright © 2021 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import Combine
|
|
|
|
import UIKit
|
|
|
|
import ViewModels
|
|
|
|
|
|
|
|
final class CompositionPollView: UIView {
|
|
|
|
private let viewModel: CompositionViewModel
|
2021-01-14 18:49:53 +01:00
|
|
|
private let parentViewModel: NewStatusViewModel
|
2021-01-11 01:06:20 +01:00
|
|
|
private let stackView = UIStackView()
|
|
|
|
private var cancellables = Set<AnyCancellable>()
|
|
|
|
|
2021-01-14 18:49:53 +01:00
|
|
|
init(viewModel: CompositionViewModel, parentViewModel: NewStatusViewModel) {
|
2021-01-11 01:06:20 +01:00
|
|
|
self.viewModel = viewModel
|
2021-01-14 18:49:53 +01:00
|
|
|
self.parentViewModel = parentViewModel
|
2021-01-11 01:06:20 +01:00
|
|
|
|
|
|
|
super.init(frame: .zero)
|
|
|
|
|
|
|
|
initialSetup()
|
|
|
|
}
|
|
|
|
|
|
|
|
@available(*, unavailable)
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
fatalError("init(coder:) has not been implemented")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension CompositionPollView {
|
|
|
|
static let dateComponentsFormatter: DateComponentsFormatter = {
|
|
|
|
let formatter = DateComponentsFormatter()
|
|
|
|
|
|
|
|
formatter.unitsStyle = .full
|
|
|
|
|
|
|
|
return formatter
|
|
|
|
}()
|
|
|
|
|
|
|
|
static func format(expiry: CompositionViewModel.PollExpiry) -> String? {
|
|
|
|
dateComponentsFormatter.string(from: TimeInterval(expiry.rawValue))
|
|
|
|
}
|
|
|
|
|
|
|
|
var pollOptionViews: [CompositionPollOptionView] {
|
|
|
|
stackView.arrangedSubviews.compactMap({ $0 as? CompositionPollOptionView })
|
|
|
|
}
|
|
|
|
|
|
|
|
// swiftlint:disable:next function_body_length
|
|
|
|
func initialSetup() {
|
|
|
|
addSubview(stackView)
|
|
|
|
stackView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
stackView.axis = .vertical
|
|
|
|
stackView.spacing = .defaultSpacing
|
|
|
|
|
|
|
|
let buttonsStackView = UIStackView()
|
|
|
|
|
|
|
|
stackView.addArrangedSubview(buttonsStackView)
|
|
|
|
buttonsStackView.distribution = .fillEqually
|
|
|
|
|
|
|
|
let addChoiceButton = UIButton(primaryAction: UIAction { [weak self] _ in self?.viewModel.addPollOption() })
|
|
|
|
|
|
|
|
buttonsStackView.addArrangedSubview(addChoiceButton)
|
|
|
|
addChoiceButton.setImage(
|
|
|
|
UIImage(systemName: "plus",
|
|
|
|
withConfiguration: UIImage.SymbolConfiguration(scale: .medium)),
|
|
|
|
for: .normal)
|
|
|
|
addChoiceButton.setTitle(NSLocalizedString("compose.poll.add-choice", comment: ""), for: .normal)
|
2021-01-19 20:59:20 +01:00
|
|
|
addChoiceButton.imageEdgeInsets = .init(top: 0, left: 0, bottom: 0, right: .defaultSpacing)
|
2021-01-11 01:06:20 +01:00
|
|
|
|
|
|
|
let expiresInButton = UIButton(type: .system)
|
|
|
|
|
|
|
|
buttonsStackView.addArrangedSubview(expiresInButton)
|
|
|
|
expiresInButton.setImage(
|
|
|
|
UIImage(systemName: "clock",
|
|
|
|
withConfiguration: UIImage.SymbolConfiguration(scale: .medium)),
|
|
|
|
for: .normal)
|
|
|
|
expiresInButton.showsMenuAsPrimaryAction = true
|
|
|
|
expiresInButton.menu = UIMenu(children: CompositionViewModel.PollExpiry.allCases.map { expiry in
|
|
|
|
UIAction(title: Self.format(expiry: expiry) ?? "") { [weak self] _ in
|
|
|
|
self?.viewModel.pollExpiresIn = expiry
|
|
|
|
}
|
|
|
|
})
|
2021-01-19 20:59:20 +01:00
|
|
|
expiresInButton.imageEdgeInsets = .init(top: 0, left: 0, bottom: 0, right: .defaultSpacing)
|
2021-01-11 01:06:20 +01:00
|
|
|
|
|
|
|
let switchStackView = UIStackView()
|
|
|
|
|
|
|
|
switchStackView.spacing = .defaultSpacing
|
|
|
|
|
|
|
|
stackView.addArrangedSubview(switchStackView)
|
|
|
|
|
|
|
|
let allowMultipleLabel = UILabel()
|
|
|
|
|
|
|
|
switchStackView.addArrangedSubview(allowMultipleLabel)
|
|
|
|
allowMultipleLabel.adjustsFontForContentSizeCategory = true
|
|
|
|
allowMultipleLabel.font = .preferredFont(forTextStyle: .callout)
|
|
|
|
allowMultipleLabel.textColor = .secondaryLabel
|
|
|
|
allowMultipleLabel.text = NSLocalizedString("compose.poll.allow-multiple-choices", comment: "")
|
|
|
|
allowMultipleLabel.textAlignment = .right
|
|
|
|
|
|
|
|
let allowMultipleSwitch = UISwitch()
|
|
|
|
|
|
|
|
switchStackView.addArrangedSubview(allowMultipleSwitch)
|
|
|
|
allowMultipleSwitch.addAction(
|
|
|
|
UIAction { [weak self] _ in
|
|
|
|
self?.viewModel.sensitive = allowMultipleSwitch.isOn
|
|
|
|
},
|
|
|
|
for: .valueChanged)
|
|
|
|
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
stackView.leadingAnchor.constraint(equalTo: leadingAnchor),
|
|
|
|
stackView.topAnchor.constraint(equalTo: topAnchor),
|
|
|
|
stackView.trailingAnchor.constraint(equalTo: trailingAnchor),
|
|
|
|
stackView.bottomAnchor.constraint(equalTo: bottomAnchor),
|
|
|
|
buttonsStackView.heightAnchor.constraint(greaterThanOrEqualToConstant: .minimumButtonDimension)
|
|
|
|
])
|
|
|
|
|
|
|
|
viewModel.$pollOptions.sink { [weak self] in
|
|
|
|
guard let self = self else { return }
|
|
|
|
|
|
|
|
addChoiceButton.isEnabled = $0.count < CompositionViewModel.maxPollOptionCount
|
|
|
|
|
|
|
|
for (index, option) in $0.enumerated() {
|
|
|
|
if !self.pollOptionViews.contains(where: { $0.option === option }) {
|
|
|
|
let optionView = CompositionPollOptionView(
|
|
|
|
viewModel: self.viewModel,
|
2021-01-14 18:49:53 +01:00
|
|
|
parentViewModel: self.parentViewModel,
|
|
|
|
option: option)
|
2021-01-11 01:06:20 +01:00
|
|
|
|
2021-01-19 20:59:20 +01:00
|
|
|
optionView.textField.placeholder = String.localizedStringWithFormat(
|
2021-02-02 19:02:30 +01:00
|
|
|
NSLocalizedString("status.poll.option-%ld", comment: ""),
|
2021-01-19 20:59:20 +01:00
|
|
|
index + 1)
|
2021-01-11 01:06:20 +01:00
|
|
|
self.stackView.insertArrangedSubview(optionView, at: index)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (index, optionView) in self.pollOptionViews.enumerated() {
|
2021-02-01 23:11:53 +01:00
|
|
|
optionView.removeButton.isHidden_stackViewSafe = index < CompositionViewModel.minPollOptionCount
|
2021-01-11 01:06:20 +01:00
|
|
|
|
|
|
|
if !$0.contains(where: { $0 === optionView.option }) {
|
2021-01-19 20:59:20 +01:00
|
|
|
if optionView.textField.isFirstResponder {
|
|
|
|
if index > 0 {
|
|
|
|
self.pollOptionViews[index - 1].textField.becomeFirstResponder()
|
|
|
|
} else if self.pollOptionViews.count > index {
|
|
|
|
self.pollOptionViews[index + 1].textField.becomeFirstResponder()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-11 01:06:20 +01:00
|
|
|
optionView.removeFromSuperview()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.store(in: &cancellables)
|
|
|
|
|
|
|
|
viewModel.$pollExpiresIn
|
|
|
|
.sink { expiresInButton.setTitle(Self.format(expiry: $0), for: .normal) }
|
|
|
|
.store(in: &cancellables)
|
|
|
|
|
|
|
|
viewModel.$pollMultipleChoice
|
|
|
|
.sink { allowMultipleSwitch.isEnabled = !$0 }
|
|
|
|
.store(in: &cancellables)
|
|
|
|
}
|
|
|
|
}
|