chore: remove navigationBar newPostsView when loadmore

This commit is contained in:
sunxiaojian 2021-03-16 14:41:32 +08:00
parent b60fe36b25
commit 1abe550745
3 changed files with 10 additions and 12 deletions

View File

@ -9,7 +9,6 @@ import Combine
import Foundation import Foundation
import UIKit import UIKit
final class HomeTimelineNavigationBarState { final class HomeTimelineNavigationBarState {
static let errorCountMax: Int = 3 static let errorCountMax: Int = 3
var disposeBag = Set<AnyCancellable>() var disposeBag = Set<AnyCancellable>()
@ -149,7 +148,7 @@ extension HomeTimelineNavigationBarState {
if newContent { if newContent {
self.showNewPostsInNavigationBar() self.showNewPostsInNavigationBar()
} }
if (newContent) { if newContent {
self.newTopContent.value = false self.newTopContent.value = false
} }
} }
@ -173,7 +172,10 @@ extension HomeTimelineNavigationBarState {
networkErrorCountSubject.send(false) networkErrorCountSubject.send(false)
case .finished: case .finished:
reCountdown() reCountdown()
showPublishingNewPostInNavigationBar() let isShowingOfflineView = viewController?.navigationItem.titleView === HomeTimelineNavigationBarView.offlineView
if isShowingOfflineView {
showMastodonLogoInNavigationBar()
}
} }
} }
} }

View File

@ -8,7 +8,6 @@
import UIKit import UIKit
final class HomeTimelineNavigationBarView { final class HomeTimelineNavigationBarView {
static let mastodonLogoTitleView: UIImageView = { static let mastodonLogoTitleView: UIImageView = {
let imageView = UIImageView(image: Asset.Asset.mastodonTextLogo.image.withRenderingMode(.alwaysTemplate)) let imageView = UIImageView(image: Asset.Asset.mastodonTextLogo.image.withRenderingMode(.alwaysTemplate))
imageView.tintColor = Asset.Colors.Label.primary.color imageView.tintColor = Asset.Colors.Label.primary.color
@ -80,4 +79,3 @@ final class HomeTimelineNavigationBarView {
return label return label
} }
} }

View File

@ -71,10 +71,8 @@ extension HomeTimelineViewModel.LoadOldestState {
// enter no more state when no new toots // enter no more state when no new toots
if toots.isEmpty || (toots.count == 1 && toots[0].id == maxID) { if toots.isEmpty || (toots.count == 1 && toots[0].id == maxID) {
stateMachine.enter(NoMore.self) stateMachine.enter(NoMore.self)
viewModel.homeTimelineNavigationBarState.newBottomContent.value = false
} else { } else {
stateMachine.enter(Idle.self) stateMachine.enter(Idle.self)
viewModel.homeTimelineNavigationBarState.newBottomContent.value = true
} }
} }
.store(in: &viewModel.disposeBag) .store(in: &viewModel.disposeBag)