47 lines
1.5 KiB
Swift
47 lines
1.5 KiB
Swift
|
//
|
||
|
// https://mczachurski.dev
|
||
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
||
|
// Licensed under the Apache License 2.0.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
import UIKit
|
||
|
import Social
|
||
|
|
||
|
class ShareViewController: UIViewController {
|
||
|
override func viewDidLoad() {
|
||
|
super.viewDidLoad()
|
||
|
|
||
|
if let item = extensionContext?.inputItems.first as? NSExtensionItem {
|
||
|
let view = ComposeView()
|
||
|
|
||
|
let childView = UIHostingController(rootView: view)
|
||
|
addChild(childView)
|
||
|
|
||
|
childView.view.frame = self.view.bounds
|
||
|
self.view.addSubview(childView.view)
|
||
|
childView.didMove(toParent: self)
|
||
|
childView.view.translatesAutoresizingMaskIntoConstraints = false
|
||
|
|
||
|
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),
|
||
|
childView.view.trailingAnchor.constraint(equalTo: self.view.trailingAnchor)
|
||
|
])
|
||
|
}
|
||
|
|
||
|
NotificationCenter.default.addObserver(forName: NotificationsName.shareSheetClose, object: nil, queue: nil) { _ in
|
||
|
self.close()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func close() {
|
||
|
extensionContext?.completeRequest(returningItems: [], completionHandler: nil)
|
||
|
}
|
||
|
|
||
|
override func viewDidAppear(_ animated: Bool) {
|
||
|
super.viewDidAppear(animated)
|
||
|
}
|
||
|
}
|