2023-01-15 16:39:08 +01:00
|
|
|
import Account
|
|
|
|
import AppAccount
|
2023-01-17 11:36:01 +01:00
|
|
|
import DesignSystem
|
|
|
|
import Env
|
|
|
|
import Network
|
|
|
|
import Status
|
|
|
|
import SwiftUI
|
|
|
|
import UIKit
|
2023-01-15 16:39:08 +01:00
|
|
|
|
|
|
|
class ShareViewController: UIViewController {
|
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
2023-01-17 11:36:01 +01:00
|
|
|
|
2023-01-17 09:09:46 +01:00
|
|
|
let appAccountsManager = AppAccountsManager.shared
|
|
|
|
let client = appAccountsManager.currentClient
|
2023-01-17 07:39:13 +01:00
|
|
|
let account = CurrentAccount.shared
|
|
|
|
let instance = CurrentInstance.shared
|
2023-01-15 16:39:08 +01:00
|
|
|
account.setClient(client: client)
|
|
|
|
instance.setClient(client: client)
|
2023-02-03 19:44:55 +01:00
|
|
|
Task {
|
|
|
|
await instance.fetchCurrentInstance()
|
|
|
|
}
|
2023-01-15 17:05:22 +01:00
|
|
|
let colorScheme = traitCollection.userInterfaceStyle
|
2023-01-17 07:39:13 +01:00
|
|
|
let theme = Theme.shared
|
2023-01-15 17:05:22 +01:00
|
|
|
theme.setColor(withName: colorScheme == .dark ? .iceCubeDark : .iceCubeLight)
|
2023-01-17 11:36:01 +01:00
|
|
|
|
2023-01-15 16:39:08 +01:00
|
|
|
if let item = extensionContext?.inputItems.first as? NSExtensionItem {
|
|
|
|
if let attachments = item.attachments {
|
|
|
|
let view = StatusEditorView(mode: .shareExtension(items: attachments))
|
2023-09-19 09:18:20 +02:00
|
|
|
.environment(UserPreferences.shared)
|
2023-09-18 07:01:23 +02:00
|
|
|
.environment(appAccountsManager)
|
|
|
|
.environment(client)
|
|
|
|
.environment(account)
|
2023-09-18 21:03:52 +02:00
|
|
|
.environment(theme)
|
2023-09-18 07:01:23 +02:00
|
|
|
.environment(instance)
|
2023-01-15 16:39:08 +01:00
|
|
|
.tint(theme.tintColor)
|
2023-01-15 17:05:22 +01:00
|
|
|
.preferredColorScheme(colorScheme == .light ? .light : .dark)
|
2023-01-15 16:39:08 +01:00
|
|
|
let childView = UIHostingController(rootView: view)
|
2023-01-17 11:36:01 +01:00
|
|
|
addChild(childView)
|
2023-01-19 18:33:22 +01:00
|
|
|
childView.view.frame = self.view.bounds
|
|
|
|
self.view.addSubview(childView.view)
|
2023-01-15 16:39:08 +01:00
|
|
|
childView.didMove(toParent: self)
|
2023-01-30 07:27:06 +01:00
|
|
|
|
2023-01-29 14:48:32 +01:00
|
|
|
childView.view.translatesAutoresizingMaskIntoConstraints = false
|
2023-01-30 07:27:06 +01:00
|
|
|
|
2023-01-29 14:48:32 +01:00
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
childView.view.topAnchor.constraint(equalTo: self.view.topAnchor),
|
|
|
|
childView.view.bottomAnchor.constraint(equalTo: self.view.bottomAnchor),
|
|
|
|
childView.view.leadingAnchor.constraint(equalTo: self.view.leadingAnchor),
|
2023-01-30 07:27:06 +01:00
|
|
|
childView.view.trailingAnchor.constraint(equalTo: self.view.trailingAnchor),
|
2023-01-29 14:48:32 +01:00
|
|
|
])
|
2023-01-15 16:39:08 +01:00
|
|
|
}
|
|
|
|
}
|
2023-01-17 11:36:01 +01:00
|
|
|
|
2023-10-26 06:23:00 +02:00
|
|
|
NotificationCenter.default.addObserver(forName: .shareSheetClose,
|
2023-01-15 16:39:08 +01:00
|
|
|
object: nil,
|
2023-03-13 13:38:28 +01:00
|
|
|
queue: nil)
|
2023-09-15 12:46:15 +02:00
|
|
|
{ [weak self] _ in
|
|
|
|
self?.close()
|
2023-01-15 16:39:08 +01:00
|
|
|
}
|
|
|
|
}
|
2023-01-17 11:36:01 +01:00
|
|
|
|
2023-09-15 12:46:15 +02:00
|
|
|
nonisolated func close() {
|
|
|
|
Task { @MainActor in
|
|
|
|
extensionContext?.completeRequest(returningItems: [], completionHandler: nil)
|
|
|
|
}
|
2023-01-15 16:39:08 +01:00
|
|
|
}
|
2023-01-17 11:36:01 +01:00
|
|
|
|
2023-01-15 16:39:08 +01:00
|
|
|
override func viewDidAppear(_ animated: Bool) {
|
|
|
|
super.viewDidAppear(animated)
|
|
|
|
}
|
|
|
|
}
|