mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
- Forum improvements
- Global autoremove settings
This commit is contained in:
@@ -0,0 +1,407 @@
|
||||
import Foundation
|
||||
import UIKit
|
||||
import Display
|
||||
import SwiftSignalKit
|
||||
import Postbox
|
||||
import TelegramCore
|
||||
import TelegramPresentationData
|
||||
import TelegramUIPreferences
|
||||
import ItemListUI
|
||||
import PresentationDataUtils
|
||||
import AccountContext
|
||||
import AuthTransferUI
|
||||
import ItemListPeerActionItem
|
||||
import DeviceAccess
|
||||
import QrCodeUI
|
||||
import ChatTimerScreen
|
||||
import UndoUI
|
||||
|
||||
private final class GlobalAutoremoveScreenArguments {
|
||||
let context: AccountContext
|
||||
let updateValue: (Int32) -> Void
|
||||
let openCustomValue: () -> Void
|
||||
let infoLinkAction: () -> Void
|
||||
|
||||
init(
|
||||
context: AccountContext,
|
||||
updateValue: @escaping (Int32) -> Void,
|
||||
openCustomValue: @escaping () -> Void,
|
||||
infoLinkAction: @escaping () -> Void
|
||||
) {
|
||||
self.context = context
|
||||
self.updateValue = updateValue
|
||||
self.openCustomValue = openCustomValue
|
||||
self.infoLinkAction = infoLinkAction
|
||||
}
|
||||
}
|
||||
|
||||
private enum GlobalAutoremoveSection: Int32 {
|
||||
case header
|
||||
case general
|
||||
}
|
||||
|
||||
private enum GlobalAutoremoveEntry: ItemListNodeEntry {
|
||||
case header
|
||||
case sectionHeader(String)
|
||||
case timerOption(value: Int32, text: String, isSelected: Bool)
|
||||
case customAction(String)
|
||||
case info(String)
|
||||
|
||||
var section: ItemListSectionId {
|
||||
switch self {
|
||||
case .header:
|
||||
return GlobalAutoremoveSection.header.rawValue
|
||||
case .sectionHeader, .timerOption, .customAction, .info:
|
||||
return GlobalAutoremoveSection.general.rawValue
|
||||
}
|
||||
}
|
||||
|
||||
var stableId: Int {
|
||||
return self.sortIndex
|
||||
}
|
||||
|
||||
var sortIndex: Int {
|
||||
switch self {
|
||||
case .header:
|
||||
return 0
|
||||
case .sectionHeader:
|
||||
return 1
|
||||
case let .timerOption(value, _, _):
|
||||
return 1000 + Int(value)
|
||||
case .customAction:
|
||||
return Int.max - 1000 + 0
|
||||
case .info:
|
||||
return Int.max - 1000 + 1
|
||||
}
|
||||
}
|
||||
|
||||
static func ==(lhs: GlobalAutoremoveEntry, rhs: GlobalAutoremoveEntry) -> Bool {
|
||||
switch lhs {
|
||||
case .header:
|
||||
if case .header = rhs {
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
case let .sectionHeader(text):
|
||||
if case .sectionHeader(text) = rhs {
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
case let .timerOption(value, text, isSelected):
|
||||
if case .timerOption(value, text, isSelected) = rhs {
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
case let .customAction(text):
|
||||
if case .customAction(text) = rhs {
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
case let .info(text):
|
||||
if case .info(text) = rhs {
|
||||
return true
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static func <(lhs: GlobalAutoremoveEntry, rhs: GlobalAutoremoveEntry) -> Bool {
|
||||
return lhs.sortIndex < rhs.sortIndex
|
||||
}
|
||||
|
||||
func item(presentationData: ItemListPresentationData, arguments: Any) -> ListViewItem {
|
||||
let arguments = arguments as! GlobalAutoremoveScreenArguments
|
||||
switch self {
|
||||
case .header:
|
||||
return GlobalAutoremoveHeaderItem(context: arguments.context, theme: presentationData.theme, sectionId: self.section)
|
||||
case let .sectionHeader(text):
|
||||
return ItemListSectionHeaderItem(presentationData: presentationData, text: text, sectionId: self.section)
|
||||
case let .timerOption(value, text, isSelected):
|
||||
return ItemListCheckboxItem(presentationData: presentationData, title: text, style: .right, checked: isSelected, zeroSeparatorInsets: false, sectionId: self.section, action: {
|
||||
arguments.updateValue(value)
|
||||
})
|
||||
case let .customAction(text):
|
||||
return ItemListActionItem(presentationData: presentationData, title: text, kind: .generic, alignment: .natural, sectionId: self.section, style: .blocks, action: {
|
||||
arguments.openCustomValue()
|
||||
})
|
||||
case let .info(text):
|
||||
return ItemListTextItem(presentationData: presentationData, text: .markdown(text), sectionId: self.section, linkAction: { _ in
|
||||
arguments.infoLinkAction()
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private struct GlobalAutoremoveScreenState: Equatable {
|
||||
var additionalValues: Set<Int32>
|
||||
var updatedValue: Int32
|
||||
}
|
||||
|
||||
private func globalAutoremoveScreenEntries(presentationData: PresentationData, state: GlobalAutoremoveScreenState) -> [GlobalAutoremoveEntry] {
|
||||
var entries: [GlobalAutoremoveEntry] = []
|
||||
|
||||
entries.append(.header)
|
||||
|
||||
let effectiveCurrentValue = state.updatedValue
|
||||
|
||||
//TODO:localize
|
||||
entries.append(.sectionHeader("SELF-DESTRUCT TIMER"))
|
||||
|
||||
var values: [Int32] = [
|
||||
0,
|
||||
1 * 24 * 60 * 60,
|
||||
7 * 24 * 60 * 60,
|
||||
31 * 24 * 60 * 60
|
||||
]
|
||||
|
||||
if !values.contains(effectiveCurrentValue) {
|
||||
values.append(effectiveCurrentValue)
|
||||
}
|
||||
for value in state.additionalValues {
|
||||
if !values.contains(value) {
|
||||
values.append(value)
|
||||
}
|
||||
}
|
||||
|
||||
values.sort()
|
||||
|
||||
//TODO:localize
|
||||
for value in values {
|
||||
let text: String
|
||||
if value == 0 {
|
||||
text = "Off"
|
||||
} else {
|
||||
text = "After \(timeIntervalString(strings: presentationData.strings, value: value))"
|
||||
}
|
||||
entries.append(.timerOption(value: value, text: text, isSelected: effectiveCurrentValue == value))
|
||||
}
|
||||
|
||||
entries.append(.customAction("Set Custom Time..."))
|
||||
|
||||
//TODO:localize
|
||||
if effectiveCurrentValue == 0 {
|
||||
entries.append(.info("If enabled, all new messages in chats you start will be automatically deleted for everyone at some point after they have been sent. This will not affect your existing chats."))
|
||||
} else {
|
||||
entries.append(.info("All new messages in chats you started will be automatically deleted for everyone 3 weeks after they have been sent. You can also [apply this setting for your existing chats]()."))
|
||||
}
|
||||
|
||||
return entries
|
||||
}
|
||||
|
||||
public func globalAutoremoveScreen(context: AccountContext, initialValue: Int32, updated: @escaping (Int32) -> Void) -> ViewController {
|
||||
let initialState = GlobalAutoremoveScreenState(
|
||||
additionalValues: Set([initialValue]),
|
||||
updatedValue: initialValue
|
||||
)
|
||||
let statePromise = ValuePromise(initialState, ignoreRepeated: true)
|
||||
let stateValue = Atomic(value: initialState)
|
||||
let updateState: ((GlobalAutoremoveScreenState) -> GlobalAutoremoveScreenState) -> Void = { f in
|
||||
statePromise.set(stateValue.modify { f($0) })
|
||||
}
|
||||
|
||||
var presentControllerImpl: ((ViewController, ViewControllerPresentationArguments?) -> Void)?
|
||||
var pushControllerImpl: ((ViewController) -> Void)?
|
||||
var dismissImpl: (() -> Void)?
|
||||
var getController: (() -> ViewController?)?
|
||||
|
||||
let _ = dismissImpl
|
||||
let _ = pushControllerImpl
|
||||
let _ = presentControllerImpl
|
||||
let _ = updateState
|
||||
|
||||
let actionsDisposable = DisposableSet()
|
||||
|
||||
let updateTimeoutDisposable = MetaDisposable()
|
||||
actionsDisposable.add(updateTimeoutDisposable)
|
||||
|
||||
let updateValue: (Int32) -> Void = { timeout in
|
||||
let apply: (Int32) -> Void = { timeout in
|
||||
updateState { state in
|
||||
var state = state
|
||||
state.updatedValue = timeout
|
||||
if timeout != 0 {
|
||||
state.additionalValues.insert(timeout)
|
||||
}
|
||||
return state
|
||||
}
|
||||
|
||||
let presentationData = context.sharedContext.currentPresentationData.with({ $0 })
|
||||
|
||||
var isOn: Bool = true
|
||||
var text: String?
|
||||
if timeout != 0 {
|
||||
text = "Messages in all new chats you start will be automatically deleted after \(timeIntervalString(strings: presentationData.strings, value: timeout))."
|
||||
} else {
|
||||
isOn = false
|
||||
text = "Messages in all new chats you start will not be automatically deleted.";
|
||||
}
|
||||
if let text = text {
|
||||
var animateAsReplacement = false
|
||||
if let window = getController?()?.window {
|
||||
window.forEachController { other in
|
||||
if let other = other as? UndoOverlayController {
|
||||
animateAsReplacement = true
|
||||
other.dismiss()
|
||||
}
|
||||
}
|
||||
}
|
||||
presentControllerImpl?(UndoOverlayController(presentationData: presentationData, content: .autoDelete(isOn: isOn, title: nil, text: text), elevatedLayout: false, animateInAsReplacement: animateAsReplacement, action: { _ in return false }), nil)
|
||||
}
|
||||
|
||||
updateTimeoutDisposable.set((context.engine.privacy.updateGlobalMessageRemovalTimeout(timeout: timeout == 0 ? nil : timeout)
|
||||
|> deliverOnMainQueue).start(completed: {
|
||||
updated(timeout)
|
||||
}))
|
||||
}
|
||||
if timeout == 0 || stateValue.with({ $0 }).updatedValue != 0 {
|
||||
apply(timeout)
|
||||
} else {
|
||||
let presentationData = context.sharedContext.currentPresentationData.with { $0 }
|
||||
//TODO:localize
|
||||
let valueText = timeIntervalString(strings: presentationData.strings, value: timeout)
|
||||
presentControllerImpl?(standardTextAlertController(
|
||||
theme: AlertControllerTheme(presentationData: presentationData),
|
||||
title: "Self-Destruct Timer",
|
||||
text: "Are you sure you want all messages in new chats started by you to be automatically deleted for everyone \(valueText) after they have been sent?",
|
||||
actions: [
|
||||
TextAlertAction(type: .defaultAction, title: "Enable Auto-Deletion", action: {
|
||||
apply(timeout)
|
||||
}),
|
||||
TextAlertAction(type: .genericAction, title: presentationData.strings.Common_Cancel, action: {})
|
||||
],
|
||||
actionLayout: .vertical
|
||||
), nil)
|
||||
}
|
||||
}
|
||||
|
||||
let arguments = GlobalAutoremoveScreenArguments(
|
||||
context: context,
|
||||
updateValue: { value in
|
||||
updateValue(value)
|
||||
},
|
||||
openCustomValue: {
|
||||
let currentValue = stateValue.with({ $0 }).updatedValue
|
||||
let controller = ChatTimerScreen(context: context, updatedPresentationData: nil, style: .default, mode: .autoremove, currentTime: currentValue == 0 ? nil : currentValue, dismissByTapOutside: true, completion: { value in
|
||||
updateValue(value)
|
||||
})
|
||||
presentControllerImpl?(controller, nil)
|
||||
},
|
||||
infoLinkAction: {
|
||||
let value = stateValue.with({ $0 }).updatedValue
|
||||
if value == 0 {
|
||||
return
|
||||
}
|
||||
|
||||
//TODO:localize
|
||||
let presentationData = context.sharedContext.currentPresentationData.with { $0 }
|
||||
let valueText = timeIntervalString(strings: presentationData.strings, value: value)
|
||||
|
||||
//TODO:localize
|
||||
let selectionController = context.sharedContext.makeContactMultiselectionController(ContactMultiselectionControllerParams(
|
||||
context: context,
|
||||
mode: .chatSelection(ContactMultiselectionControllerMode.ChatSelection(
|
||||
title: "Select Chats",
|
||||
searchPlaceholder: "Select chats to apply the \(valueText) self-destruct timer",
|
||||
selectedChats: Set(),
|
||||
additionalCategories: nil,
|
||||
chatListFilters: nil,
|
||||
displayAutoremoveTimeout: true
|
||||
)),
|
||||
options: [],
|
||||
filters: [.excludeSelf],
|
||||
isPeerEnabled: { peer in
|
||||
var canManage = false
|
||||
if case let .user(user) = peer {
|
||||
if user.botInfo == nil {
|
||||
canManage = true
|
||||
}
|
||||
} else if case .secretChat = peer {
|
||||
canManage = true
|
||||
} else if case let .legacyGroup(group) = peer {
|
||||
canManage = !group.hasBannedPermission(.banChangeInfo)
|
||||
} else if case let .channel(channel) = peer {
|
||||
canManage = channel.hasPermission(.changeInfo)
|
||||
}
|
||||
return canManage
|
||||
}
|
||||
))
|
||||
selectionController.navigationPresentation = .modal
|
||||
|
||||
let _ = (selectionController.result
|
||||
|> take(1)
|
||||
|> deliverOnMainQueue).start(next: { [weak selectionController] result in
|
||||
var contacts: [ContactListPeerId] = []
|
||||
if case let .result(peerIdsValue, _) = result {
|
||||
contacts = peerIdsValue
|
||||
}
|
||||
let peerIds = contacts.compactMap { item -> EnginePeer.Id? in
|
||||
switch item {
|
||||
case let .peer(id):
|
||||
return id
|
||||
case .deviceContact:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
if peerIds.isEmpty {
|
||||
selectionController?.dismiss()
|
||||
} else {
|
||||
selectionController?.displayProgress = true
|
||||
let _ = (context.engine.peers.setChatMessageAutoremoveTimeouts(peerIds: peerIds, timeout: value)
|
||||
|> deliverOnMainQueue).start(completed: {
|
||||
selectionController?.dismiss()
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
pushControllerImpl?(selectionController)
|
||||
}
|
||||
)
|
||||
|
||||
let signal = combineLatest(queue: .mainQueue(),
|
||||
context.sharedContext.presentationData,
|
||||
statePromise.get()
|
||||
)
|
||||
|> map { presentationData, state -> (ItemListControllerState, (ItemListNodeState, Any)) in
|
||||
let rightNavigationButton: ItemListNavigationButton? = nil
|
||||
|
||||
//TODO:localize
|
||||
let title: ItemListControllerTitle = .text("Auto-Delete Messages")
|
||||
|
||||
let entries: [GlobalAutoremoveEntry] = globalAutoremoveScreenEntries(presentationData: presentationData, state: state)
|
||||
|
||||
let animateChanges = false
|
||||
|
||||
let controllerState = ItemListControllerState(presentationData: ItemListPresentationData(presentationData), title: title, leftNavigationButton: nil, rightNavigationButton: rightNavigationButton, backNavigationButton: ItemListBackButton(title: presentationData.strings.Common_Back), animateChanges: true)
|
||||
let listState = ItemListNodeState(presentationData: ItemListPresentationData(presentationData), entries: entries, style: .blocks, emptyStateItem: nil, crossfadeState: false, animateChanges: animateChanges, scrollEnabled: true)
|
||||
|
||||
return (controllerState, (listState, arguments))
|
||||
}
|
||||
|> afterDisposed {
|
||||
actionsDisposable.dispose()
|
||||
}
|
||||
|
||||
let controller = ItemListController(context: context, state: signal)
|
||||
getController = { [weak controller] in
|
||||
return controller
|
||||
}
|
||||
presentControllerImpl = { [weak controller] c, p in
|
||||
guard let controller else {
|
||||
return
|
||||
}
|
||||
controller.present(c, in: .window(.root), with: p)
|
||||
}
|
||||
pushControllerImpl = { [weak controller] c in
|
||||
controller?.push(c)
|
||||
}
|
||||
dismissImpl = { [weak controller] in
|
||||
controller?.dismiss()
|
||||
}
|
||||
|
||||
return controller
|
||||
}
|
||||
Reference in New Issue
Block a user