IceCubesApp/IceCubesShareExtension/ShareViewController.swift

60 lines
1.9 KiB
Swift
Raw Normal View History

2023-01-15 15:39:08 +00:00
import Account
import AppAccount
2023-01-17 10:36:01 +00:00
import DesignSystem
import Env
import Network
import Status
import SwiftUI
import UIKit
2023-01-15 15:39:08 +00:00
class ShareViewController: UIViewController {
@IBOutlet var container: UIView!
2023-01-17 10:36:01 +00:00
2023-01-15 15:39:08 +00:00
override func viewDidLoad() {
super.viewDidLoad()
2023-01-17 10:36:01 +00:00
let appAccountsManager = AppAccountsManager.shared
let client = appAccountsManager.currentClient
let account = CurrentAccount.shared
let instance = CurrentInstance.shared
2023-01-15 15:39:08 +00:00
account.setClient(client: client)
instance.setClient(client: client)
let colorScheme = traitCollection.userInterfaceStyle
let theme = Theme.shared
theme.setColor(withName: colorScheme == .dark ? .iceCubeDark : .iceCubeLight)
2023-01-17 10:36:01 +00:00
2023-01-15 15:39:08 +00:00
if let item = extensionContext?.inputItems.first as? NSExtensionItem {
if let attachments = item.attachments {
let view = StatusEditorView(mode: .shareExtension(items: attachments))
.environmentObject(UserPreferences.shared)
.environmentObject(appAccountsManager)
2023-01-15 15:39:08 +00:00
.environmentObject(client)
.environmentObject(account)
.environmentObject(theme)
.environmentObject(instance)
.tint(theme.tintColor)
.preferredColorScheme(colorScheme == .light ? .light : .dark)
2023-01-15 15:39:08 +00:00
let childView = UIHostingController(rootView: view)
2023-01-17 10:36:01 +00:00
addChild(childView)
childView.view.frame = container.bounds
container.addSubview(childView.view)
2023-01-15 15:39:08 +00:00
childView.didMove(toParent: self)
}
}
2023-01-17 10:36:01 +00:00
2023-01-15 15:39:08 +00:00
NotificationCenter.default.addObserver(forName: NotificationsName.shareSheetClose,
object: nil,
queue: nil) { _ in
2023-01-17 10:36:01 +00:00
self.close()
2023-01-15 15:39:08 +00:00
}
}
2023-01-17 10:36:01 +00:00
2023-01-15 15:39:08 +00:00
func close() {
extensionContext?.completeRequest(returningItems: [], completionHandler: nil)
}
2023-01-17 10:36:01 +00:00
2023-01-15 15:39:08 +00:00
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
}
}