mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
* feat(shell): support opening URLs on mobile closes #595 * Update and rename StorePlugin.swift to ShellPlugin.swift * unwrap * fix func name (ios) * use undeprecated func if avail --------- Co-authored-by: fabianlars <fabianlars@fabianlars.de>
35 lines
848 B
Swift
35 lines
848 B
Swift
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import Foundation
|
|
|
|
import SwiftRs
|
|
import Tauri
|
|
import UIKit
|
|
import WebKit
|
|
|
|
class ShellPlugin: Plugin {
|
|
|
|
@objc public func open(_ invoke: Invoke) throws {
|
|
do {
|
|
let urlString = try invoke.parseArgs(String.self)
|
|
if let url = URL(string: urlString) {
|
|
if #available(iOS 10, *) {
|
|
UIApplication.shared.open(url, options: [:])
|
|
} else {
|
|
UIApplication.shared.openURL(url)
|
|
}
|
|
}
|
|
invoke.resolve()
|
|
} catch {
|
|
invoke.reject(error.localizedDescription)
|
|
}
|
|
}
|
|
}
|
|
|
|
@_cdecl("init_plugin_shell")
|
|
func initPlugin() -> Plugin {
|
|
return ShellPlugin()
|
|
}
|