2022-04-02 14:39:03 +00:00
|
|
|
//
|
|
|
|
// TrendingStatusesViewController.swift
|
|
|
|
// Tusker
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 4/1/22.
|
|
|
|
// Copyright © 2022 Shadowfacts. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import Pachyderm
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
class TrendingStatusesViewController: UIViewController {
|
2022-04-02 14:39:03 +00:00
|
|
|
|
|
|
|
weak var mastodonController: MastodonController!
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
private var collectionView: UICollectionView {
|
|
|
|
view as! UICollectionView
|
|
|
|
}
|
|
|
|
private var dataSource: UICollectionViewDiffableDataSource<Section, Item>!
|
2022-04-02 14:39:03 +00:00
|
|
|
|
|
|
|
init(mastodonController: MastodonController) {
|
|
|
|
self.mastodonController = mastodonController
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
super.init(nibName: nil, bundle: nil)
|
2022-04-02 14:39:03 +00:00
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
title = NSLocalizedString("Trending Posts", comment: "trending posts screen title")
|
2022-04-02 14:39:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
fatalError("init(coder:) has not been implemented")
|
|
|
|
}
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
override func loadView() {
|
|
|
|
var config = UICollectionLayoutListConfiguration(appearance: .plain)
|
|
|
|
config.leadingSwipeActionsConfigurationProvider = { [unowned self] in
|
|
|
|
(collectionView.cellForItem(at: $0) as? TimelineStatusCollectionViewCell)?.leadingSwipeActions()
|
|
|
|
}
|
|
|
|
config.trailingSwipeActionsConfigurationProvider = { [unowned self] in
|
|
|
|
(collectionView.cellForItem(at: $0) as? TimelineStatusCollectionViewCell)?.trailingSwipeActions()
|
|
|
|
}
|
|
|
|
config.itemSeparatorHandler = { [unowned self] indexPath, sectionSeparatorConfiguration in
|
|
|
|
guard let item = self.dataSource.itemIdentifier(for: indexPath) else {
|
|
|
|
return sectionSeparatorConfiguration
|
|
|
|
}
|
|
|
|
var config = sectionSeparatorConfiguration
|
|
|
|
if item.hideSeparators {
|
|
|
|
config.topSeparatorVisibility = .hidden
|
|
|
|
config.bottomSeparatorVisibility = .hidden
|
|
|
|
}
|
|
|
|
if case .status(_, _) = item {
|
|
|
|
config.topSeparatorInsets = TimelineStatusCollectionViewCell.separatorInsets
|
|
|
|
config.bottomSeparatorInsets = TimelineStatusCollectionViewCell.separatorInsets
|
|
|
|
}
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
let layout = UICollectionViewCompositionalLayout.list(using: config)
|
|
|
|
view = UICollectionView(frame: .zero, collectionViewLayout: layout)
|
|
|
|
collectionView.delegate = self
|
|
|
|
collectionView.dragDelegate = self
|
2022-04-02 14:39:03 +00:00
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
dataSource = createDataSource()
|
|
|
|
}
|
|
|
|
|
|
|
|
private func createDataSource() -> UICollectionViewDiffableDataSource<Section, Item> {
|
|
|
|
let statusCell = UICollectionView.CellRegistration<TimelineStatusCollectionViewCell, (String, StatusState)> { [unowned self] cell, indexPath, item in
|
2022-04-02 14:39:03 +00:00
|
|
|
cell.delegate = self
|
2022-11-05 19:11:00 +00:00
|
|
|
cell.updateUI(statusID: item.0, state: item.1)
|
|
|
|
}
|
|
|
|
let loadingCell = UICollectionView.CellRegistration<LoadingCollectionViewCell, Void> { cell, _, _ in
|
|
|
|
cell.indicator.startAnimating()
|
|
|
|
}
|
|
|
|
return UICollectionViewDiffableDataSource(collectionView: collectionView) { collectionView, indexPath, itemIdentifier in
|
|
|
|
switch itemIdentifier {
|
|
|
|
case .status(id: let id, state: let state):
|
|
|
|
return collectionView.dequeueConfiguredReusableCell(using: statusCell, for: indexPath, item: (id, state))
|
|
|
|
case .loadingIndicator:
|
|
|
|
return collectionView.dequeueConfiguredReusableCell(using: loadingCell, for: indexPath, item: ())
|
|
|
|
}
|
|
|
|
}
|
2022-04-02 14:39:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
|
|
super.viewWillAppear(animated)
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
var snapshot = NSDiffableDataSourceSnapshot<Section, Item>()
|
|
|
|
snapshot.appendSections([.statuses])
|
|
|
|
snapshot.appendItems([.loadingIndicator])
|
|
|
|
dataSource.apply(snapshot, animatingDifferences: false)
|
|
|
|
|
2022-04-02 14:39:03 +00:00
|
|
|
Task {
|
2022-11-05 19:11:00 +00:00
|
|
|
await loadTrendingStatuses()
|
2022-04-02 14:39:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
private func loadTrendingStatuses() async {
|
|
|
|
let statuses: [Status]
|
|
|
|
do {
|
|
|
|
statuses = try await mastodonController.run(Client.getTrendingStatuses()).0
|
|
|
|
} catch {
|
2022-11-19 01:49:15 +00:00
|
|
|
let snapshot = NSDiffableDataSourceSnapshot<Section, Item>()
|
2022-11-05 19:11:00 +00:00
|
|
|
await dataSource.apply(snapshot)
|
|
|
|
let config = ToastConfiguration(from: error, with: "Loading Trending Posts", in: self) { toast in
|
|
|
|
toast.dismissToast(animated: true)
|
|
|
|
await self.loadTrendingStatuses()
|
|
|
|
}
|
|
|
|
showToast(configuration: config, animated: true)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
await mastodonController.persistentContainer.addAll(statuses: statuses)
|
|
|
|
var snapshot = NSDiffableDataSourceSnapshot<Section, Item>()
|
|
|
|
snapshot.appendSections([.statuses])
|
|
|
|
snapshot.appendItems(statuses.map { .status(id: $0.id, state: .unknown) })
|
|
|
|
await dataSource.apply(snapshot)
|
|
|
|
}
|
2022-04-02 14:39:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extension TrendingStatusesViewController {
|
|
|
|
enum Section {
|
|
|
|
case statuses
|
|
|
|
}
|
2022-11-05 19:11:00 +00:00
|
|
|
enum Item: Hashable {
|
|
|
|
case status(id: String, state: StatusState)
|
|
|
|
case loadingIndicator
|
2022-04-02 14:39:03 +00:00
|
|
|
|
2022-11-22 16:47:57 +00:00
|
|
|
static func ==(lhs: Item, rhs: Item) -> Bool {
|
|
|
|
switch (lhs, rhs) {
|
|
|
|
case (.status(id: let a, state: _), .status(id: let b, state: _)):
|
|
|
|
return a == b
|
|
|
|
case (.loadingIndicator, .loadingIndicator):
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func hash(into hasher: inout Hasher) {
|
|
|
|
switch self {
|
|
|
|
case .status(id: let id, state: _):
|
|
|
|
hasher.combine(0)
|
|
|
|
hasher.combine(id)
|
|
|
|
case .loadingIndicator:
|
|
|
|
hasher.combine(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
var hideSeparators: Bool {
|
|
|
|
if case .loadingIndicator = self {
|
|
|
|
return true
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
2022-04-02 14:39:03 +00:00
|
|
|
}
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
var isSelectable: Bool {
|
|
|
|
if case .status(id: _, state: _) = self {
|
|
|
|
return true
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
2022-04-02 14:39:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
extension TrendingStatusesViewController: UICollectionViewDelegate {
|
|
|
|
func collectionView(_ collectionView: UICollectionView, shouldSelectItemAt indexPath: IndexPath) -> Bool {
|
|
|
|
return dataSource.itemIdentifier(for: indexPath)?.isSelectable ?? false
|
|
|
|
}
|
|
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
|
|
|
|
guard case .status(id: let id, state: let state) = dataSource.itemIdentifier(for: indexPath) else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
selected(status: id, state: state.copy())
|
|
|
|
}
|
|
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, contextMenuConfigurationForItemAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {
|
|
|
|
return (collectionView.cellForItem(at: indexPath) as? TimelineStatusCollectionViewCell)?.contextMenuConfiguration()
|
|
|
|
}
|
|
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, willPerformPreviewActionForMenuWith configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionCommitAnimating) {
|
|
|
|
MenuPreviewHelper.willPerformPreviewAction(animator: animator, presenter: self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension TrendingStatusesViewController: UICollectionViewDragDelegate {
|
|
|
|
func collectionView(_ collectionView: UICollectionView, itemsForBeginning session: UIDragSession, at indexPath: IndexPath) -> [UIDragItem] {
|
|
|
|
(collectionView.cellForItem(at: indexPath) as? TimelineStatusCollectionViewCell)?.dragItemsForBeginning(session: session) ?? []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 14:39:03 +00:00
|
|
|
extension TrendingStatusesViewController: TuskerNavigationDelegate {
|
2022-10-31 20:27:13 +00:00
|
|
|
var apiController: MastodonController! { mastodonController }
|
2022-04-02 14:39:03 +00:00
|
|
|
}
|
|
|
|
|
2022-05-02 03:04:56 +00:00
|
|
|
extension TrendingStatusesViewController: ToastableViewController {
|
|
|
|
}
|
|
|
|
|
|
|
|
extension TrendingStatusesViewController: MenuActionProvider {
|
|
|
|
}
|
|
|
|
|
2022-11-05 19:11:00 +00:00
|
|
|
extension TrendingStatusesViewController: StatusCollectionViewCellDelegate {
|
|
|
|
func statusCellNeedsReconfigure(_ cell: StatusCollectionViewCell, animated: Bool, completion: (() -> Void)?) {
|
|
|
|
if let indexPath = collectionView.indexPath(for: cell) {
|
|
|
|
var snapshot = dataSource.snapshot()
|
|
|
|
snapshot.reconfigureItems([dataSource.itemIdentifier(for: indexPath)!])
|
|
|
|
dataSource.apply(snapshot, animatingDifferences: animated, completion: completion)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension TrendingStatusesViewController: StatusBarTappableViewController {
|
|
|
|
func handleStatusBarTapped(xPosition: CGFloat) -> StatusBarTapActionResult {
|
|
|
|
collectionView.scrollToTop()
|
|
|
|
return .stop
|
2022-04-02 14:39:03 +00:00
|
|
|
}
|
|
|
|
}
|