2021-04-01 08:39:15 +02:00
|
|
|
//
|
|
|
|
// ProfileHeaderViewController.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by MainasuK Cirno on 2021-3-29.
|
|
|
|
//
|
|
|
|
|
|
|
|
import os.log
|
|
|
|
import UIKit
|
2021-04-08 10:53:32 +02:00
|
|
|
import Combine
|
2021-04-09 11:31:43 +02:00
|
|
|
import PhotosUI
|
|
|
|
import AlamofireImage
|
|
|
|
import CropViewController
|
2021-06-29 13:27:40 +02:00
|
|
|
import MastodonMeta
|
2021-07-23 13:10:27 +02:00
|
|
|
import MetaTextKit
|
2022-01-27 14:23:39 +01:00
|
|
|
import MastodonAsset
|
|
|
|
import MastodonLocalization
|
2022-05-13 11:23:35 +02:00
|
|
|
import TabBarPager
|
2021-04-01 08:39:15 +02:00
|
|
|
|
2021-05-08 05:03:34 +02:00
|
|
|
protocol ProfileHeaderViewControllerDelegate: AnyObject {
|
2021-04-01 08:39:15 +02:00
|
|
|
func profileHeaderViewController(_ viewController: ProfileHeaderViewController, viewLayoutDidUpdate view: UIView)
|
|
|
|
}
|
|
|
|
|
|
|
|
final class ProfileHeaderViewController: UIViewController {
|
|
|
|
|
2022-01-27 14:23:39 +01:00
|
|
|
static let segmentedControlHeight: CGFloat = 50
|
|
|
|
static let headerMinHeight: CGFloat = segmentedControlHeight
|
2021-04-01 08:39:15 +02:00
|
|
|
|
2021-04-09 11:31:43 +02:00
|
|
|
var disposeBag = Set<AnyCancellable>()
|
2021-04-01 08:39:15 +02:00
|
|
|
weak var delegate: ProfileHeaderViewControllerDelegate?
|
2022-05-13 11:23:35 +02:00
|
|
|
weak var headerDelegate: TabBarPagerHeaderDelegate?
|
2021-04-01 08:39:15 +02:00
|
|
|
|
2021-04-09 11:31:43 +02:00
|
|
|
var viewModel: ProfileHeaderViewModel!
|
2021-04-08 10:53:32 +02:00
|
|
|
|
2021-04-09 13:44:48 +02:00
|
|
|
let titleView: DoubleTitleLabelNavigationBarTitleView = {
|
|
|
|
let titleView = DoubleTitleLabelNavigationBarTitleView()
|
|
|
|
titleView.titleLabel.textColor = .white
|
2021-07-23 13:10:27 +02:00
|
|
|
titleView.titleLabel.textAttributes[.foregroundColor] = UIColor.white
|
2021-04-09 13:44:48 +02:00
|
|
|
titleView.titleLabel.alpha = 0
|
|
|
|
titleView.subtitleLabel.textColor = .white
|
|
|
|
titleView.subtitleLabel.alpha = 0
|
|
|
|
titleView.layer.masksToBounds = true
|
|
|
|
return titleView
|
|
|
|
}()
|
|
|
|
|
2021-04-02 12:13:45 +02:00
|
|
|
let profileHeaderView = ProfileHeaderView()
|
2022-01-27 14:23:39 +01:00
|
|
|
|
2022-05-13 11:23:35 +02:00
|
|
|
// let buttonBar: TMBar.ButtonBar = {
|
|
|
|
// let buttonBar = TMBar.ButtonBar()
|
|
|
|
// buttonBar.indicator.backgroundColor = Asset.Colors.Label.primary.color
|
|
|
|
// buttonBar.backgroundView.style = .clear
|
|
|
|
// buttonBar.layout.contentInset = .zero
|
|
|
|
// return buttonBar
|
|
|
|
// }()
|
2021-04-01 08:39:15 +02:00
|
|
|
|
2022-05-13 11:23:35 +02:00
|
|
|
// func customizeButtonBarAppearance() {
|
|
|
|
// // The implmention use CATextlayer. Adapt for Dark Mode without dynamic colors
|
|
|
|
// // Needs trigger update when `userInterfaceStyle` chagnes
|
|
|
|
// let userInterfaceStyle = traitCollection.userInterfaceStyle
|
|
|
|
// buttonBar.buttons.customize { button in
|
|
|
|
// switch userInterfaceStyle {
|
|
|
|
// case .dark:
|
|
|
|
// // Asset.Colors.Label.primary.color
|
|
|
|
// button.selectedTintColor = UIColor(red: 238.0/255.0, green: 238.0/255.0, blue: 238.0/255.0, alpha: 1.0)
|
|
|
|
// // Asset.Colors.Label.secondary.color
|
|
|
|
// button.tintColor = UIColor(red: 151.0/255.0, green: 157.0/255.0, blue: 173.0/255.0, alpha: 1.0)
|
|
|
|
// default:
|
|
|
|
// // Asset.Colors.Label.primary.color
|
|
|
|
// button.selectedTintColor = UIColor(red: 40.0/255.0, green: 44.0/255.0, blue: 55.0/255.0, alpha: 1.0)
|
|
|
|
// // Asset.Colors.Label.secondary.color
|
|
|
|
// button.tintColor = UIColor(red: 60.0/255.0, green: 60.0/255.0, blue: 67.0/255.0, alpha: 0.6)
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// button.backgroundColor = .clear
|
|
|
|
// }
|
|
|
|
// }
|
2022-02-10 08:54:19 +01:00
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
private var isBannerPinned = false
|
|
|
|
private var bottomShadowAlpha: CGFloat = 0.0
|
|
|
|
|
2021-04-02 12:13:45 +02:00
|
|
|
// private var isAdjustBannerImageViewForSafeAreaInset = false
|
2021-04-01 08:39:15 +02:00
|
|
|
private var containerSafeAreaInset: UIEdgeInsets = .zero
|
2021-04-08 10:53:32 +02:00
|
|
|
|
2021-04-09 11:31:43 +02:00
|
|
|
private(set) lazy var imagePicker: PHPickerViewController = {
|
|
|
|
var configuration = PHPickerConfiguration()
|
|
|
|
configuration.filter = .images
|
|
|
|
configuration.selectionLimit = 1
|
|
|
|
|
|
|
|
let imagePicker = PHPickerViewController(configuration: configuration)
|
|
|
|
imagePicker.delegate = self
|
|
|
|
return imagePicker
|
|
|
|
}()
|
|
|
|
private(set) lazy var imagePickerController: UIImagePickerController = {
|
|
|
|
let imagePickerController = UIImagePickerController()
|
|
|
|
imagePickerController.sourceType = .camera
|
|
|
|
imagePickerController.delegate = self
|
|
|
|
return imagePickerController
|
|
|
|
}()
|
|
|
|
|
|
|
|
private(set) lazy var documentPickerController: UIDocumentPickerViewController = {
|
|
|
|
let documentPickerController = UIDocumentPickerViewController(forOpeningContentTypes: [.image])
|
|
|
|
documentPickerController.delegate = self
|
|
|
|
return documentPickerController
|
|
|
|
}()
|
2021-04-01 08:39:15 +02:00
|
|
|
|
|
|
|
deinit {
|
|
|
|
os_log("%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
extension ProfileHeaderViewController {
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
2022-02-10 08:54:19 +01:00
|
|
|
|
2022-05-13 11:23:35 +02:00
|
|
|
// customizeButtonBarAppearance()
|
2021-07-05 10:07:17 +02:00
|
|
|
|
2022-01-27 14:23:39 +01:00
|
|
|
view.backgroundColor = ThemeService.shared.currentTheme.value.systemBackgroundColor
|
2021-07-05 10:07:17 +02:00
|
|
|
ThemeService.shared.currentTheme
|
2022-01-27 14:23:39 +01:00
|
|
|
.receive(on: DispatchQueue.main)
|
2021-07-05 10:07:17 +02:00
|
|
|
.sink { [weak self] theme in
|
|
|
|
guard let self = self else { return }
|
2022-01-27 14:23:39 +01:00
|
|
|
self.view.backgroundColor = theme.systemBackgroundColor
|
2021-07-05 10:07:17 +02:00
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
2021-04-01 08:39:15 +02:00
|
|
|
|
2021-04-02 12:13:45 +02:00
|
|
|
profileHeaderView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
view.addSubview(profileHeaderView)
|
2021-04-01 08:39:15 +02:00
|
|
|
NSLayoutConstraint.activate([
|
2021-04-02 12:13:45 +02:00
|
|
|
profileHeaderView.topAnchor.constraint(equalTo: view.topAnchor),
|
|
|
|
profileHeaderView.leadingAnchor.constraint(equalTo: view.leadingAnchor),
|
|
|
|
profileHeaderView.trailingAnchor.constraint(equalTo: view.trailingAnchor),
|
2022-05-13 11:23:35 +02:00
|
|
|
view.bottomAnchor.constraint(equalTo: profileHeaderView.bottomAnchor),
|
2021-04-01 08:39:15 +02:00
|
|
|
])
|
2021-04-02 12:13:45 +02:00
|
|
|
profileHeaderView.preservesSuperviewLayoutMargins = true
|
2022-01-27 14:23:39 +01:00
|
|
|
|
2021-04-09 13:44:48 +02:00
|
|
|
Publishers.CombineLatest(
|
|
|
|
viewModel.viewDidAppear.eraseToAnyPublisher(),
|
|
|
|
viewModel.isTitleViewContentOffsetSet.eraseToAnyPublisher()
|
|
|
|
)
|
|
|
|
.receive(on: DispatchQueue.main)
|
2021-10-29 12:56:58 +02:00
|
|
|
.sink { [weak self] viewDidAppear, isTitleViewContentOffsetDidSet in
|
2021-04-09 13:44:48 +02:00
|
|
|
guard let self = self else { return }
|
2021-10-29 12:56:58 +02:00
|
|
|
self.titleView.titleLabel.alpha = viewDidAppear && isTitleViewContentOffsetDidSet ? 1 : 0
|
|
|
|
self.titleView.subtitleLabel.alpha = viewDidAppear && isTitleViewContentOffsetDidSet ? 1 : 0
|
2021-04-09 13:44:48 +02:00
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
2021-04-08 10:53:32 +02:00
|
|
|
|
2021-04-09 11:31:43 +02:00
|
|
|
viewModel.needsSetupBottomShadow
|
2021-04-08 10:53:32 +02:00
|
|
|
.receive(on: DispatchQueue.main)
|
|
|
|
.sink { [weak self] needsSetupBottomShadow in
|
|
|
|
guard let self = self else { return }
|
|
|
|
self.setupBottomShadow()
|
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
2021-04-09 11:31:43 +02:00
|
|
|
|
|
|
|
Publishers.CombineLatest4(
|
2022-01-27 14:23:39 +01:00
|
|
|
viewModel.$isEditing.eraseToAnyPublisher(),
|
|
|
|
viewModel.displayProfileInfo.$avatarImageResource.eraseToAnyPublisher(),
|
|
|
|
viewModel.editProfileInfo.$avatarImageResource.eraseToAnyPublisher(),
|
2021-04-09 11:31:43 +02:00
|
|
|
viewModel.viewDidAppear.eraseToAnyPublisher()
|
|
|
|
)
|
|
|
|
.receive(on: DispatchQueue.main)
|
2022-01-27 14:23:39 +01:00
|
|
|
.sink { [weak self] isEditing, displayResource, editingResource, _ in
|
2021-04-09 11:31:43 +02:00
|
|
|
guard let self = self else { return }
|
2022-01-27 14:23:39 +01:00
|
|
|
|
|
|
|
let url = displayResource.url
|
|
|
|
let image = editingResource.image
|
|
|
|
|
|
|
|
self.profileHeaderView.avatarButton.avatarImageView.configure(
|
|
|
|
configuration: AvatarImageView.Configuration(
|
|
|
|
url: isEditing && image != nil ? nil : url,
|
|
|
|
placeholder: image ?? UIImage.placeholder(color: Asset.Theme.Mastodon.systemGroupedBackground.color)
|
2021-04-09 11:31:43 +02:00
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
2021-06-29 13:27:40 +02:00
|
|
|
Publishers.CombineLatest4(
|
2022-01-27 14:23:39 +01:00
|
|
|
viewModel.$isEditing,
|
|
|
|
viewModel.displayProfileInfo.$name.removeDuplicates(),
|
|
|
|
viewModel.editProfileInfo.$name.removeDuplicates(),
|
|
|
|
viewModel.$emojiMeta
|
2021-04-09 11:31:43 +02:00
|
|
|
)
|
|
|
|
.receive(on: DispatchQueue.main)
|
2021-07-23 13:10:27 +02:00
|
|
|
.sink { [weak self] isEditing, name, editingName, emojiMeta in
|
2021-04-09 11:31:43 +02:00
|
|
|
guard let self = self else { return }
|
2021-06-29 13:27:40 +02:00
|
|
|
do {
|
2021-07-23 13:10:27 +02:00
|
|
|
let mastodonContent = MastodonContent(content: name ?? " ", emojis: emojiMeta)
|
|
|
|
let metaContent = try MastodonMetaContent.convert(document: mastodonContent)
|
2021-06-29 13:27:40 +02:00
|
|
|
self.profileHeaderView.nameMetaText.configure(content: metaContent)
|
|
|
|
} catch {
|
|
|
|
assertionFailure()
|
|
|
|
}
|
2021-04-09 11:31:43 +02:00
|
|
|
self.profileHeaderView.nameTextField.text = isEditing ? editingName : name
|
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
|
|
|
|
2021-08-05 12:11:00 +02:00
|
|
|
let profileNote = Publishers.CombineLatest3(
|
2022-01-27 14:23:39 +01:00
|
|
|
viewModel.$isEditing.removeDuplicates(),
|
|
|
|
viewModel.displayProfileInfo.$note.removeDuplicates(),
|
2021-08-05 12:11:00 +02:00
|
|
|
viewModel.editProfileInfoDidInitialized
|
|
|
|
)
|
|
|
|
.map { isEditing, displayNote, _ -> String? in
|
|
|
|
if isEditing {
|
2022-01-27 14:23:39 +01:00
|
|
|
return self.viewModel.editProfileInfo.note
|
2021-08-05 12:11:00 +02:00
|
|
|
} else {
|
|
|
|
return displayNote
|
2021-08-05 11:20:03 +02:00
|
|
|
}
|
2021-08-05 12:11:00 +02:00
|
|
|
}
|
|
|
|
.eraseToAnyPublisher()
|
|
|
|
|
2021-08-05 11:20:03 +02:00
|
|
|
Publishers.CombineLatest3(
|
2022-01-27 14:23:39 +01:00
|
|
|
viewModel.$isEditing.removeDuplicates(),
|
2021-08-05 12:11:00 +02:00
|
|
|
profileNote.removeDuplicates(),
|
2022-01-27 14:23:39 +01:00
|
|
|
viewModel.$emojiMeta.removeDuplicates()
|
2021-04-09 11:31:43 +02:00
|
|
|
)
|
|
|
|
.receive(on: DispatchQueue.main)
|
2021-08-05 11:20:03 +02:00
|
|
|
.sink { [weak self] isEditing, note, emojiMeta in
|
2021-04-09 11:31:43 +02:00
|
|
|
guard let self = self else { return }
|
2021-08-05 12:11:00 +02:00
|
|
|
|
|
|
|
self.profileHeaderView.bioMetaText.textView.isEditable = isEditing
|
|
|
|
|
|
|
|
if isEditing {
|
|
|
|
let metaContent = PlaintextMetaContent(string: note ?? "")
|
2021-08-05 11:20:03 +02:00
|
|
|
self.profileHeaderView.bioMetaText.configure(content: metaContent)
|
2021-08-05 12:11:00 +02:00
|
|
|
} else {
|
|
|
|
let mastodonContent = MastodonContent(content: note ?? "", emojis: emojiMeta)
|
|
|
|
do {
|
|
|
|
let metaContent = try MastodonMetaContent.convert(document: mastodonContent)
|
|
|
|
self.profileHeaderView.bioMetaText.configure(content: metaContent)
|
|
|
|
} catch {
|
|
|
|
assertionFailure()
|
|
|
|
self.profileHeaderView.bioMetaText.reset()
|
|
|
|
}
|
2021-07-07 09:39:57 +02:00
|
|
|
}
|
2021-04-09 11:31:43 +02:00
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
2021-08-05 12:11:00 +02:00
|
|
|
|
2021-07-23 13:10:27 +02:00
|
|
|
profileHeaderView.bioMetaText.delegate = self
|
|
|
|
|
2021-04-09 11:31:43 +02:00
|
|
|
NotificationCenter.default.publisher(for: UITextField.textDidChangeNotification, object: profileHeaderView.nameTextField)
|
|
|
|
.receive(on: DispatchQueue.main)
|
|
|
|
.sink { [weak self] notification in
|
|
|
|
guard let self = self else { return }
|
|
|
|
guard let textField = notification.object as? UITextField else { return }
|
2022-01-27 14:23:39 +01:00
|
|
|
self.viewModel.editProfileInfo.name = textField.text
|
2021-04-09 11:31:43 +02:00
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
|
|
|
|
|
|
|
profileHeaderView.editAvatarButton.menu = createAvatarContextMenu()
|
|
|
|
profileHeaderView.editAvatarButton.showsMenuAsPrimaryAction = true
|
2021-04-01 08:39:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override func viewDidAppear(_ animated: Bool) {
|
|
|
|
super.viewDidAppear(animated)
|
|
|
|
|
2021-04-09 13:44:48 +02:00
|
|
|
viewModel.viewDidAppear.value = true
|
2021-06-22 13:33:36 +02:00
|
|
|
|
|
|
|
// set display after view appear
|
|
|
|
profileHeaderView.setupAvatarOverlayViews()
|
2021-04-01 08:39:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override func viewDidLayoutSubviews() {
|
|
|
|
super.viewDidLayoutSubviews()
|
|
|
|
|
2022-05-13 11:23:35 +02:00
|
|
|
switch UIApplication.shared.applicationState {
|
|
|
|
case .active:
|
|
|
|
headerDelegate?.viewLayoutDidUpdate(self)
|
|
|
|
setupBottomShadow()
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
2021-04-01 08:39:15 +02:00
|
|
|
}
|
|
|
|
|
2022-02-10 08:54:19 +01:00
|
|
|
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
|
|
|
|
super.traitCollectionDidChange(previousTraitCollection)
|
|
|
|
|
2022-05-13 11:23:35 +02:00
|
|
|
// customizeButtonBarAppearance()
|
2022-02-10 08:54:19 +01:00
|
|
|
}
|
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
}
|
|
|
|
|
2021-04-09 11:31:43 +02:00
|
|
|
extension ProfileHeaderViewController {
|
|
|
|
private func createAvatarContextMenu() -> UIMenu {
|
|
|
|
var children: [UIMenuElement] = []
|
|
|
|
let photoLibraryAction = UIAction(title: L10n.Scene.Compose.MediaSelection.photoLibrary, image: UIImage(systemName: "rectangle.on.rectangle"), identifier: nil, discoverabilityTitle: nil, attributes: [], state: .off) { [weak self] _ in
|
|
|
|
guard let self = self else { return }
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: mediaSelectionType: .photoLibaray", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
self.present(self.imagePicker, animated: true, completion: nil)
|
|
|
|
}
|
|
|
|
children.append(photoLibraryAction)
|
|
|
|
if UIImagePickerController.isSourceTypeAvailable(.camera) {
|
|
|
|
let cameraAction = UIAction(title: L10n.Scene.Compose.MediaSelection.camera, image: UIImage(systemName: "camera"), identifier: nil, discoverabilityTitle: nil, attributes: [], state: .off, handler: { [weak self] _ in
|
|
|
|
guard let self = self else { return }
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: mediaSelectionType: .camera", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
self.present(self.imagePickerController, animated: true, completion: nil)
|
|
|
|
})
|
|
|
|
children.append(cameraAction)
|
|
|
|
}
|
|
|
|
let browseAction = UIAction(title: L10n.Scene.Compose.MediaSelection.browse, image: UIImage(systemName: "ellipsis"), identifier: nil, discoverabilityTitle: nil, attributes: [], state: .off) { [weak self] _ in
|
|
|
|
guard let self = self else { return }
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: mediaSelectionType: .browse", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
self.present(self.documentPickerController, animated: true, completion: nil)
|
|
|
|
}
|
|
|
|
children.append(browseAction)
|
|
|
|
|
|
|
|
return UIMenu(title: "", image: nil, identifier: nil, options: .displayInline, children: children)
|
|
|
|
}
|
|
|
|
|
|
|
|
private func cropImage(image: UIImage, pickerViewController: UIViewController) {
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
let cropController = CropViewController(croppingStyle: .default, image: image)
|
|
|
|
cropController.delegate = self
|
|
|
|
cropController.setAspectRatioPreset(.presetSquare, animated: true)
|
|
|
|
cropController.aspectRatioPickerButtonHidden = true
|
|
|
|
cropController.aspectRatioLockEnabled = true
|
|
|
|
pickerViewController.dismiss(animated: true, completion: {
|
|
|
|
self.present(cropController, animated: true, completion: nil)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
extension ProfileHeaderViewController {
|
|
|
|
|
|
|
|
func updateHeaderContainerSafeAreaInset(_ inset: UIEdgeInsets) {
|
|
|
|
containerSafeAreaInset = inset
|
|
|
|
}
|
|
|
|
|
2021-04-08 10:53:32 +02:00
|
|
|
func setupBottomShadow() {
|
2021-04-09 11:31:43 +02:00
|
|
|
guard viewModel.needsSetupBottomShadow.value else {
|
2021-04-08 10:53:32 +02:00
|
|
|
view.layer.shadowColor = nil
|
|
|
|
view.layer.shadowRadius = 0
|
|
|
|
return
|
|
|
|
}
|
|
|
|
view.layer.setupShadow(color: UIColor.black.withAlphaComponent(0.12), alpha: Float(bottomShadowAlpha), x: 0, y: 2, blur: 2, spread: 0, roundedRect: view.bounds, byRoundingCorners: .allCorners, cornerRadii: .zero)
|
|
|
|
}
|
|
|
|
|
2021-04-01 08:39:15 +02:00
|
|
|
private func updateHeaderBottomShadow(progress: CGFloat) {
|
|
|
|
let alpha = min(max(0, 10 * progress - 9), 1)
|
|
|
|
if bottomShadowAlpha != alpha {
|
|
|
|
bottomShadowAlpha = alpha
|
|
|
|
view.setNeedsLayout()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-13 11:23:35 +02:00
|
|
|
// func updateHeaderScrollProgress(_ progress: CGFloat, throttle: CGFloat) {
|
|
|
|
// // os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: progress: %.2f", ((#file as NSString).lastPathComponent), #line, #function, progress)
|
|
|
|
// updateHeaderBottomShadow(progress: progress)
|
|
|
|
//
|
|
|
|
// let bannerImageView = profileHeaderView.bannerImageView
|
|
|
|
// guard bannerImageView.bounds != .zero else {
|
|
|
|
// // wait layout finish
|
|
|
|
// return
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// let bannerContainerInWindow = profileHeaderView.convert(profileHeaderView.bannerContainerView.frame, to: nil)
|
|
|
|
// let bannerContainerBottomOffset = bannerContainerInWindow.origin.y + bannerContainerInWindow.height
|
|
|
|
//
|
|
|
|
// // scroll from bottom to top: 1 -> 2 -> 3
|
|
|
|
// if bannerContainerInWindow.origin.y > containerSafeAreaInset.top {
|
|
|
|
// // 1
|
|
|
|
// // banner top pin to window top and expand
|
|
|
|
// bannerImageView.frame.origin.y = -bannerContainerInWindow.origin.y
|
|
|
|
// bannerImageView.frame.size.height = bannerContainerInWindow.origin.y + bannerContainerInWindow.size.height
|
|
|
|
// } else if bannerContainerBottomOffset < containerSafeAreaInset.top {
|
|
|
|
// // 3
|
|
|
|
// // banner bottom pin to navigation bar bottom and
|
|
|
|
// // the `progress` growth to 1 then segmented control pin to top
|
|
|
|
// bannerImageView.frame.origin.y = -containerSafeAreaInset.top
|
|
|
|
// let bannerImageHeight = bannerContainerInWindow.size.height + containerSafeAreaInset.top + (containerSafeAreaInset.top - bannerContainerBottomOffset)
|
|
|
|
// bannerImageView.frame.size.height = bannerImageHeight
|
|
|
|
// } else {
|
|
|
|
// // 2
|
|
|
|
// // banner move with scrolling from bottom to top until the
|
|
|
|
// // banner bottom higher than navigation bar bottom
|
|
|
|
// bannerImageView.frame.origin.y = -containerSafeAreaInset.top
|
|
|
|
// bannerImageView.frame.size.height = bannerContainerInWindow.size.height + containerSafeAreaInset.top
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// // set title view offset
|
|
|
|
// let nameTextFieldInWindow = profileHeaderView.nameTextField.superview!.convert(profileHeaderView.nameTextField.frame, to: nil)
|
|
|
|
// let nameTextFieldTopToNavigationBarBottomOffset = containerSafeAreaInset.top - nameTextFieldInWindow.origin.y
|
|
|
|
// let titleViewContentOffset: CGFloat = titleView.frame.height - nameTextFieldTopToNavigationBarBottomOffset
|
|
|
|
// let transformY = max(0, titleViewContentOffset)
|
|
|
|
// titleView.containerView.transform = CGAffineTransform(translationX: 0, y: transformY)
|
|
|
|
// viewModel.isTitleViewDisplaying.value = transformY < titleView.containerView.frame.height
|
|
|
|
//
|
|
|
|
// if viewModel.viewDidAppear.value {
|
|
|
|
// viewModel.isTitleViewContentOffsetSet.value = true
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// // set avatar fade
|
|
|
|
// if progress > 0 {
|
|
|
|
// setProfileAvatar(alpha: 0)
|
|
|
|
// } else if progress > -abs(throttle) {
|
|
|
|
// // y = -(1/0.8T)x
|
|
|
|
// let alpha = -1 / abs(0.8 * throttle) * progress
|
|
|
|
// setProfileAvatar(alpha: alpha)
|
|
|
|
// } else {
|
|
|
|
// setProfileAvatar(alpha: 1)
|
|
|
|
// }
|
|
|
|
// }
|
2021-06-24 10:50:20 +02:00
|
|
|
|
2022-01-27 14:23:39 +01:00
|
|
|
private func setProfileAvatar(alpha: CGFloat) {
|
2021-04-29 11:13:13 +02:00
|
|
|
profileHeaderView.avatarImageViewBackgroundView.alpha = alpha
|
2022-01-27 14:23:39 +01:00
|
|
|
profileHeaderView.avatarButton.alpha = alpha
|
2021-04-09 13:44:48 +02:00
|
|
|
profileHeaderView.editAvatarBackgroundView.alpha = alpha
|
2021-04-01 08:39:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-04-09 11:31:43 +02:00
|
|
|
|
2021-07-23 13:10:27 +02:00
|
|
|
// MARK: - MetaTextDelegate
|
|
|
|
extension ProfileHeaderViewController: MetaTextDelegate {
|
|
|
|
func metaText(_ metaText: MetaText, processEditing textStorage: MetaTextStorage) -> MetaContent? {
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: text: %s", ((#file as NSString).lastPathComponent), #line, #function, metaText.backedString)
|
2021-08-05 11:20:03 +02:00
|
|
|
|
|
|
|
switch metaText {
|
|
|
|
case profileHeaderView.bioMetaText:
|
2022-01-27 14:23:39 +01:00
|
|
|
guard viewModel.isEditing else { break }
|
|
|
|
viewModel.editProfileInfo.note = metaText.backedString
|
2021-08-05 11:20:03 +02:00
|
|
|
let metaContent = PlaintextMetaContent(string: metaText.backedString)
|
|
|
|
return metaContent
|
|
|
|
default:
|
|
|
|
assertionFailure()
|
2021-07-23 13:10:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2021-04-09 11:31:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - PHPickerViewControllerDelegate
|
|
|
|
extension ProfileHeaderViewController: PHPickerViewControllerDelegate {
|
|
|
|
func picker(_ picker: PHPickerViewController, didFinishPicking results: [PHPickerResult]) {
|
|
|
|
picker.dismiss(animated: true, completion: nil)
|
|
|
|
guard let result = results.first else { return }
|
2021-07-19 11:12:45 +02:00
|
|
|
ItemProviderLoader.loadImageData(from: result)
|
2021-04-09 11:31:43 +02:00
|
|
|
.sink { [weak self] completion in
|
|
|
|
guard let _ = self else { return }
|
|
|
|
switch completion {
|
|
|
|
case .failure:
|
|
|
|
// TODO: handle error
|
|
|
|
break
|
|
|
|
case .finished:
|
|
|
|
break
|
|
|
|
}
|
2021-05-31 10:42:49 +02:00
|
|
|
} receiveValue: { [weak self] file in
|
2021-04-09 11:31:43 +02:00
|
|
|
guard let self = self else { return }
|
2021-05-31 10:42:49 +02:00
|
|
|
guard let imageData = file?.data else { return }
|
2021-04-09 11:31:43 +02:00
|
|
|
guard let image = UIImage(data: imageData) else { return }
|
|
|
|
self.cropImage(image: image, pickerViewController: picker)
|
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - UIImagePickerControllerDelegate
|
|
|
|
extension ProfileHeaderViewController: UIImagePickerControllerDelegate & UINavigationControllerDelegate {
|
|
|
|
|
|
|
|
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
|
|
|
|
picker.dismiss(animated: true, completion: nil)
|
|
|
|
|
|
|
|
guard let image = info[.originalImage] as? UIImage else { return }
|
|
|
|
cropImage(image: image, pickerViewController: picker)
|
|
|
|
}
|
|
|
|
|
|
|
|
func imagePickerControllerDidCancel(_ picker: UIImagePickerController) {
|
|
|
|
os_log("%{public}s[%{public}ld], %{public}s", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
picker.dismiss(animated: true, completion: nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - UIDocumentPickerDelegate
|
|
|
|
extension ProfileHeaderViewController: UIDocumentPickerDelegate {
|
|
|
|
func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentsAt urls: [URL]) {
|
|
|
|
guard let url = urls.first else { return }
|
|
|
|
|
|
|
|
do {
|
|
|
|
guard url.startAccessingSecurityScopedResource() else { return }
|
|
|
|
defer { url.stopAccessingSecurityScopedResource() }
|
|
|
|
let imageData = try Data(contentsOf: url)
|
|
|
|
guard let image = UIImage(data: imageData) else { return }
|
|
|
|
cropImage(image: image, pickerViewController: controller)
|
|
|
|
} catch {
|
|
|
|
os_log("%{public}s[%{public}ld], %{public}s: %s", ((#file as NSString).lastPathComponent), #line, #function, error.localizedDescription)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - CropViewControllerDelegate
|
|
|
|
extension ProfileHeaderViewController: CropViewControllerDelegate {
|
|
|
|
public func cropViewController(_ cropViewController: CropViewController, didCropToImage image: UIImage, withRect cropRect: CGRect, angle: Int) {
|
2022-01-27 14:23:39 +01:00
|
|
|
viewModel.editProfileInfo.avatarImage = image
|
2021-04-09 11:31:43 +02:00
|
|
|
cropViewController.dismiss(animated: true, completion: nil)
|
|
|
|
}
|
|
|
|
}
|
2022-05-13 11:23:35 +02:00
|
|
|
|
|
|
|
// MARK: - TabBarPagerHeader
|
|
|
|
extension ProfileHeaderViewController: TabBarPagerHeader { }
|