forked from zelo72/mastodon-ios
148 lines
7.8 KiB
Swift
148 lines
7.8 KiB
Swift
//
|
|
// NotificationSection.swift
|
|
// Mastodon
|
|
//
|
|
// Created by sxiaojian on 2021/4/13.
|
|
//
|
|
|
|
import Combine
|
|
import CoreData
|
|
import CoreDataStack
|
|
import Foundation
|
|
import MastodonSDK
|
|
import UIKit
|
|
import Nuke
|
|
|
|
enum NotificationSection: Equatable, Hashable {
|
|
case main
|
|
}
|
|
|
|
extension NotificationSection {
|
|
static func tableViewDiffableDataSource(
|
|
for tableView: UITableView,
|
|
timestampUpdatePublisher: AnyPublisher<Date, Never>,
|
|
managedObjectContext: NSManagedObjectContext,
|
|
delegate: NotificationTableViewCellDelegate,
|
|
dependency: NeedsDependency
|
|
) -> UITableViewDiffableDataSource<NotificationSection, NotificationItem> {
|
|
UITableViewDiffableDataSource(tableView: tableView) {
|
|
[weak delegate, weak dependency]
|
|
(tableView, indexPath, notificationItem) -> UITableViewCell? in
|
|
guard let dependency = dependency else { return nil }
|
|
switch notificationItem {
|
|
case .notification(let objectID, let attribute):
|
|
guard let notification = try? managedObjectContext.existingObject(with: objectID) as? MastodonNotification else {
|
|
return UITableViewCell()
|
|
}
|
|
guard let type = Mastodon.Entity.Notification.NotificationType(rawValue: notification.typeRaw) else {
|
|
// filter out invalid type using predicate
|
|
assertionFailure()
|
|
return UITableViewCell()
|
|
}
|
|
|
|
let createAt = notification.createAt
|
|
let timeText = createAt.timeAgoSinceNow
|
|
|
|
let actionText = type.actionText
|
|
let actionImageName = type.actionImageName
|
|
let color = type.color
|
|
|
|
if let status = notification.status {
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: NotificationStatusTableViewCell.self), for: indexPath) as! NotificationStatusTableViewCell
|
|
cell.delegate = delegate
|
|
let activeMastodonAuthenticationBox = dependency.context.authenticationService.activeMastodonAuthenticationBox.value
|
|
let requestUserID = activeMastodonAuthenticationBox?.userID ?? ""
|
|
let frame = CGRect(x: 0, y: 0, width: tableView.readableContentGuide.layoutFrame.width - NotificationStatusTableViewCell.statusPadding.left - NotificationStatusTableViewCell.statusPadding.right, height: tableView.readableContentGuide.layoutFrame.height)
|
|
StatusSection.configure(
|
|
cell: cell,
|
|
tableView: tableView,
|
|
dependency: dependency,
|
|
readableLayoutFrame: frame,
|
|
status: status,
|
|
requestUserID: requestUserID,
|
|
statusItemAttribute: attribute
|
|
)
|
|
cell.actionImageBackground.backgroundColor = color
|
|
cell.nameLabel.configure(content: notification.account.displayNameWithFallback, emojiDict: notification.account.emojiDict)
|
|
cell.actionLabel.text = actionText + " · " + timeText
|
|
timestampUpdatePublisher
|
|
.sink { [weak cell] _ in
|
|
guard let cell = cell else { return }
|
|
let timeText = createAt.timeAgoSinceNow
|
|
cell.actionLabel.text = actionText + " · " + timeText
|
|
}
|
|
.store(in: &cell.disposeBag)
|
|
if let url = notification.account.avatarImageURL() {
|
|
cell.avatarImageViewTask = Nuke.loadImage(
|
|
with: url,
|
|
options: ImageLoadingOptions(
|
|
placeholder: UIImage.placeholder(color: .systemFill),
|
|
transition: .fadeIn(duration: 0.2)
|
|
),
|
|
into: cell.avatarImageView
|
|
)
|
|
}
|
|
cell.avatarImageView.gesture().sink { [weak cell] _ in
|
|
cell?.delegate?.userAvatarDidPressed(notification: notification)
|
|
}
|
|
.store(in: &cell.disposeBag)
|
|
if let actionImage = UIImage(systemName: actionImageName, withConfiguration: UIImage.SymbolConfiguration(pointSize: 12, weight: .semibold))?.withRenderingMode(.alwaysTemplate) {
|
|
cell.actionImageView.image = actionImage
|
|
}
|
|
return cell
|
|
|
|
} else {
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: NotificationTableViewCell.self), for: indexPath) as! NotificationTableViewCell
|
|
cell.delegate = delegate
|
|
timestampUpdatePublisher
|
|
.sink { [weak cell] _ in
|
|
guard let cell = cell else { return }
|
|
let timeText = createAt.timeAgoSinceNow
|
|
cell.actionLabel.text = actionText + " · " + timeText
|
|
}
|
|
.store(in: &cell.disposeBag)
|
|
cell.acceptButton.publisher(for: .touchUpInside)
|
|
.sink { [weak cell] _ in
|
|
guard let cell = cell else { return }
|
|
cell.delegate?.notificationTableViewCell(cell, notification: notification, acceptButtonDidPressed: cell.acceptButton)
|
|
}
|
|
.store(in: &cell.disposeBag)
|
|
cell.rejectButton.publisher(for: .touchUpInside)
|
|
.sink { [weak cell] _ in
|
|
guard let cell = cell else { return }
|
|
cell.delegate?.notificationTableViewCell(cell, notification: notification, rejectButtonDidPressed: cell.rejectButton)
|
|
}
|
|
.store(in: &cell.disposeBag)
|
|
cell.actionImageBackground.backgroundColor = color
|
|
cell.actionLabel.text = actionText + " · " + timeText
|
|
cell.nameLabel.configure(content: notification.account.displayNameWithFallback, emojiDict: notification.account.emojiDict)
|
|
if let url = notification.account.avatarImageURL() {
|
|
cell.avatarImageViewTask = Nuke.loadImage(
|
|
with: url,
|
|
options: ImageLoadingOptions(
|
|
placeholder: UIImage.placeholder(color: .systemFill),
|
|
transition: .fadeIn(duration: 0.2)
|
|
),
|
|
into: cell.avatarImageView
|
|
)
|
|
}
|
|
cell.avatarImageView.gesture().sink { [weak cell] _ in
|
|
cell?.delegate?.userAvatarDidPressed(notification: notification)
|
|
}
|
|
.store(in: &cell.disposeBag)
|
|
if let actionImage = UIImage(systemName: actionImageName, withConfiguration: UIImage.SymbolConfiguration(pointSize: 12, weight: .semibold))?.withRenderingMode(.alwaysTemplate) {
|
|
cell.actionImageView.image = actionImage
|
|
}
|
|
cell.buttonStackView.isHidden = (type != .followRequest)
|
|
return cell
|
|
}
|
|
case .bottomLoader:
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: TimelineBottomLoaderTableViewCell.self)) as! TimelineBottomLoaderTableViewCell
|
|
cell.startAnimating()
|
|
return cell
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|