mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-15 13:01:26 +00:00
35 lines
1.1 KiB
Swift
35 lines
1.1 KiB
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Combine
|
|
import UIKit
|
|
import ViewModels
|
|
|
|
final class ProfileViewController: TableViewController {
|
|
private let viewModel: ProfileViewModel
|
|
private var cancellables = Set<AnyCancellable>()
|
|
|
|
required init(viewModel: ProfileViewModel, identification: Identification) {
|
|
self.viewModel = viewModel
|
|
|
|
super.init(viewModel: viewModel, identification: identification)
|
|
}
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Initial size is to avoid unsatisfiable constraint warning
|
|
let accountHeaderView = AccountHeaderView(frame: .init(origin: .zero, size: .init(width: 100, height: 100)))
|
|
|
|
accountHeaderView.viewModel = viewModel
|
|
|
|
viewModel.$accountViewModel
|
|
.receive(on: DispatchQueue.main)
|
|
.sink { [weak self] _ in
|
|
accountHeaderView.viewModel = self?.viewModel
|
|
self?.sizeTableHeaderFooterViews()
|
|
}
|
|
.store(in: &cancellables)
|
|
|
|
tableView.tableHeaderView = accountHeaderView
|
|
}
|
|
}
|