metatext-app-ios-iphone-ipad/Views/CompositionInputAccessoryVi...

171 lines
6.3 KiB
Swift
Raw Normal View History

2020-12-16 02:39:38 +01:00
// Copyright © 2020 Metabolist. All rights reserved.
2021-01-02 00:31:39 +01:00
import AVFoundation
2020-12-16 02:39:38 +01:00
import Combine
2021-01-01 01:49:59 +01:00
import Mastodon
2020-12-16 02:39:38 +01:00
import UIKit
import ViewModels
2021-01-01 01:49:59 +01:00
final class CompositionInputAccessoryView: UIView {
let visibilityButton = UIButton()
let addButton = UIButton()
let contentWarningButton = UIButton(type: .system)
2020-12-16 02:39:38 +01:00
private let viewModel: CompositionViewModel
2021-01-01 01:49:59 +01:00
private let parentViewModel: NewStatusViewModel
private let stackView = UIStackView()
2020-12-16 02:39:38 +01:00
private var cancellables = Set<AnyCancellable>()
2021-01-01 01:49:59 +01:00
init(viewModel: CompositionViewModel, parentViewModel: NewStatusViewModel) {
2020-12-16 02:39:38 +01:00
self.viewModel = viewModel
2021-01-01 01:49:59 +01:00
self.parentViewModel = parentViewModel
2020-12-16 02:39:38 +01:00
super.init(frame: .zero)
initialSetup()
}
@available(*, unavailable)
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override var intrinsicContentSize: CGSize {
stackView.systemLayoutSizeFitting(UIView.layoutFittingCompressedSize)
}
}
private extension CompositionInputAccessoryView {
2021-01-01 01:49:59 +01:00
// swiftlint:disable:next function_body_length
2020-12-16 02:39:38 +01:00
func initialSetup() {
autoresizingMask = .flexibleHeight
backgroundColor = .secondarySystemFill
addSubview(stackView)
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.spacing = .defaultSpacing
2021-01-10 08:08:45 +01:00
var attachmentActions = [
UIAction(
title: NSLocalizedString("compose.browse", comment: ""),
image: UIImage(systemName: "ellipsis")) { [weak self] _ in
guard let self = self else { return }
2021-01-01 01:49:59 +01:00
2021-01-10 08:08:45 +01:00
self.parentViewModel.presentDocumentPicker(viewModel: self.viewModel)
},
UIAction(
title: NSLocalizedString("compose.photo-library", comment: ""),
image: UIImage(systemName: "rectangle.on.rectangle")) { [weak self] _ in
guard let self = self else { return }
2020-12-16 02:39:38 +01:00
2021-01-10 08:08:45 +01:00
self.parentViewModel.presentMediaPicker(viewModel: self.viewModel)
}
]
2021-01-03 23:37:06 +01:00
2021-01-02 00:31:39 +01:00
#if !IS_SHARE_EXTENSION
2021-01-10 08:08:45 +01:00
attachmentActions.insert(UIAction(
title: NSLocalizedString("compose.take-photo-or-video", comment: ""),
image: UIImage(systemName: "camera.fill")) { [weak self] _ in
guard let self = self else { return }
2021-01-02 00:31:39 +01:00
2021-01-10 08:08:45 +01:00
self.parentViewModel.presentCamera(viewModel: self.viewModel)
},
at: 1)
2021-01-02 00:31:39 +01:00
#endif
2021-01-10 08:08:45 +01:00
let attachmentButton = UIButton()
stackView.addArrangedSubview(attachmentButton)
attachmentButton.setImage(
UIImage(
systemName: "paperclip",
withConfiguration: UIImage.SymbolConfiguration(scale: .medium)),
for: .normal)
attachmentButton.showsMenuAsPrimaryAction = true
attachmentButton.menu = UIMenu(children: attachmentActions)
2021-01-11 01:06:20 +01:00
let pollButton = UIButton(primaryAction: UIAction { [weak self] _ in self?.viewModel.displayPoll.toggle() })
2020-12-16 02:39:38 +01:00
stackView.addArrangedSubview(pollButton)
pollButton.setImage(
UIImage(
systemName: "chart.bar.xaxis",
withConfiguration: UIImage.SymbolConfiguration(scale: .medium)),
for: .normal)
2021-01-01 01:49:59 +01:00
stackView.addArrangedSubview(visibilityButton)
visibilityButton.showsMenuAsPrimaryAction = true
visibilityButton.menu = UIMenu(children: Status.Visibility.allCasesExceptUnknown.reversed().map { visibility in
UIAction(
title: visibility.title ?? "",
image: UIImage(systemName: visibility.systemImageName),
discoverabilityTitle: visibility.description) { [weak self] _ in
self?.parentViewModel.visibility = visibility
}
})
stackView.addArrangedSubview(contentWarningButton)
contentWarningButton.setTitle(
NSLocalizedString("status.content-warning-abbreviation", comment: ""),
for: .normal)
contentWarningButton.addAction(
UIAction { [weak self] _ in self?.viewModel.displayContentWarning.toggle() },
for: .touchUpInside)
2020-12-16 02:39:38 +01:00
2021-01-01 01:49:59 +01:00
stackView.addArrangedSubview(UIView())
2020-12-16 02:39:38 +01:00
2021-01-04 02:15:50 +01:00
let charactersLabel = UILabel()
stackView.addArrangedSubview(charactersLabel)
charactersLabel.font = .preferredFont(forTextStyle: .callout)
2020-12-16 02:39:38 +01:00
stackView.addArrangedSubview(addButton)
addButton.setImage(
UIImage(
systemName: "plus.circle.fill",
withConfiguration: UIImage.SymbolConfiguration(scale: .medium)),
for: .normal)
2021-01-01 01:49:59 +01:00
addButton.addAction(UIAction { [weak self] _ in
guard let self = self else { return }
self.parentViewModel.insert(after: self.viewModel)
}, for: .touchUpInside)
2021-01-10 08:08:45 +01:00
viewModel.$canAddAttachment
.sink { attachmentButton.isEnabled = $0 }
.store(in: &cancellables)
2021-01-04 02:15:50 +01:00
2021-01-11 01:06:20 +01:00
viewModel.$attachmentViewModels
.combineLatest(viewModel.$attachmentUpload)
.sink { pollButton.isEnabled = $0.isEmpty && $1 == nil }
.store(in: &cancellables)
2021-01-04 02:15:50 +01:00
viewModel.$remainingCharacters.sink {
charactersLabel.text = String($0)
charactersLabel.textColor = $0 < 0 ? .systemRed : .label
}
.store(in: &cancellables)
2021-01-03 23:37:06 +01:00
2021-01-01 01:49:59 +01:00
viewModel.$isPostable
.sink { [weak self] in self?.addButton.isEnabled = $0 }
.store(in: &cancellables)
2020-12-16 02:39:38 +01:00
2021-01-01 01:49:59 +01:00
parentViewModel.$visibility
.sink { [weak self] in
self?.visibilityButton.setImage(UIImage(systemName: $0.systemImageName), for: .normal)
}
.store(in: &cancellables)
2021-01-10 08:08:45 +01:00
for button in [attachmentButton, pollButton, visibilityButton, contentWarningButton, addButton] {
2020-12-16 02:39:38 +01:00
button.heightAnchor.constraint(greaterThanOrEqualToConstant: .minimumButtonDimension).isActive = true
button.widthAnchor.constraint(greaterThanOrEqualToConstant: .minimumButtonDimension).isActive = true
}
NSLayoutConstraint.activate([
2021-01-01 01:49:59 +01:00
stackView.leadingAnchor.constraint(equalTo: safeAreaLayoutGuide.leadingAnchor),
2020-12-16 02:39:38 +01:00
stackView.topAnchor.constraint(equalTo: topAnchor),
2021-01-01 01:49:59 +01:00
stackView.trailingAnchor.constraint(equalTo: safeAreaLayoutGuide.trailingAnchor),
2020-12-16 02:39:38 +01:00
stackView.bottomAnchor.constraint(equalTo: bottomAnchor)
])
}
}