Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ShareMenuReactView to better handle file url's #270

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions ios/Modules/ShareMenuReactView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,16 @@ public class ShareMenuReactView: NSObject {
}

for provider in attachments {
if provider.hasItemConformingToTypeIdentifier(kUTTypeURL as String) {
if provider.hasItemConformingToTypeIdentifier(kUTTypeFileURL as String) {
provider.loadItem(forTypeIdentifier: kUTTypeFileURL as String, options: nil) { (item, error) in
let url: URL! = item as? URL

results.append([DATA_KEY: url.absoluteString, MIME_TYPE_KEY: self.extractMimeType(from: url)])

semaphore.signal()
}
semaphore.wait()
} else if provider.hasItemConformingToTypeIdentifier(kUTTypeURL as String) {
provider.loadItem(forTypeIdentifier: kUTTypeURL as String, options: nil) { (item, error) in
let url: URL! = item as? URL

Expand All @@ -117,7 +126,7 @@ public class ShareMenuReactView: NSObject {
semaphore.wait()
} else if provider.hasItemConformingToTypeIdentifier(kUTTypeText as String) {
provider.loadItem(forTypeIdentifier: kUTTypeText as String, options: nil) { (item, error) in
let text:String! = item as? String
let text: String! = item as? String

results.append([DATA_KEY: text, MIME_TYPE_KEY: "text/plain"])

Expand Down