Swiftpack.co - hiimtmac/ECMASwift as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by hiimtmac.
hiimtmac/ECMASwift 1.3.0
Swift/JS helpers for WKWebView
⭐️ 7
🕓 2 years ago
iOS macOS
.package(url: "https://github.com/hiimtmac/ECMASwift.git", from: "1.3.0")

ECMASwift

Goal of this library is to package error prone string functionality into stronger typed composable pieces

Requirements

  • Swift 5.4+
  • iOS 13.0 + / macOS 10.15 +

Installation

Swift Package Manager

Create a Package.swift file.

import PackageDescription

let package = Package(
  name: "TestProject",
  dependencies: [
    .package(url: "https://github.com/hiimtmac/ECMASwift.git", from: "1.0.0")
  ]
)

Cocoapods

target 'MyApp' do
  pod 'ECMASwift', '~> 1.0'
end

WKWebView

Before
webView.evaluateJavaScript(javaScriptString, completionHandler: { (any, error) in
    if let error = error {
        print(error)
    } else if let any = any as? MyType {
        print(any)
    } else {
        // what do??
    }
})
// Can't reuse this!
After
webView.evaluateJavaScript("string;", as: String.self) // -> returns AnyPublisher<String, Error>

There are 2 overloads, one returning a type, and another for void returns.

func evaluateJavaScript(_ javaScriptString: String) -> AnyPublisher<Void, Error>
func evaluateJavaScript<T: Decodable>(_ javaScriptString: String, as: T.Type) -> AnyPublisher<T, Error>

These can be chained together to do more complex things given:

<script>
    var string = "hello";
</script>
let _ = webView
    .evaluateJavaScript("string;", as: String.self)
    .flatMap { self.webView.evaluateJavaScript("string = \"hi there!\";") }
    .flatMap { self.webView.evaluateJavaScript("string;", as: String.self) }
    .sink(receiveCompletion: { result in
        switch result {
        case .finished: print("done")
        case .failure(let error): print(error) // error if there was
        }
    }, receiveValue: {
        print($0) // hi there!
    })

This would previously have to been accomplished with a ton of nested completion handlers creating a pyramid of doom!

Helper Methods

Helper methods for common tasks

  • get variable getVariable<T: Decodable>(...)
  • set variable setVariable(...)
  • call method with no return runVoid(...)
  • call method with return value runReturning<T: Decodable>
func getVariable<T: Decodable>(named: String, as type: T.Type) -> AnyPublisher<T, Error>
func setVariable(named: String, value: JavaScriptParameterEncodable) -> AnyPublisher<Void, Error>
func runVoid(named: String, args: [JavaScriptParameterEncodable] = []) -> AnyPublisher<Void, Error>
func runReturning<T: Decodable>(named: String, args: [JavaScriptParameterEncodable] = [], as type: T.Type) -> AnyPublisher<T, Error>

These methods would simplify the above example to

let _ = webView
    .getVariable(named: "string", as: String.self)
    .flatMap { self.webView.setVariable(named: "string", value: "hi there!") }
    .flatMap { self.webView.getVariable(named: "string", as: String.self) }
    .sink(receiveCompletion: { result in
        switch result {
        case .finished: print("done")
        case .failure(let error): print(error) // error if there was
        }
    }, receiveValue: {
        print($0) // hi there!
    })

These are helpful as you don't have to remember about pesky ; placement

JavaScriptParameterEncodable

Any value that conforms to JavaScriptParameterEncodable can be used as arguments to set a variable or call a function with arguments. Types that also conform to Encodable get this encoding behavior for free. You don't have to worry about quote escaping and such. Combining the stronger typed helper methods with the JavaScriptParameterEncodable protocol will transform something like

<script>
    function returnContents(contents) {
        return contents;
    }
</script>
struct JSON: Codable {
    let name: String
    let age: Int
}

Obviously this is a contrived example as we are expecting the same type back as we put in

Before
// simple types
let javaScriptString = "returnContent(\"tmac\");" // cant just shove "tmac" in there
webView.evaluateJavaScript(javaScriptString, completionHandler: { (any, error) in
    if let error = error {
        print(error) // error if there was
    } else if let any = any as? String {
        print(any) // "tmac"
    } else {
        // what do??
    }
})
// Can't reuse this!

let javaScriptString = "returnContent({\"name\":\"tmac\",\"age\":28});" // cant just shove JSON(name: "tmac", age: 28) in there
webView.evaluateJavaScript(javaScriptString, completionHandler: { (any, error) in
    if let error = error {
        print(error) // error if there was
    } else if let any = any {
        let encoded = try JSONSerialization.data(withJSONObject: any, options: []) // Any -> Data
        let decoded = try JSONDecoder().decode(JSON.self, from: encoded) // Data -> Object
        print(decoded) // { name: "tmac", age: 28 }
    } else {
        // what do??
    }
})
// Can't reuse this!
After
let _ = webView
    .runReturning(named: "returnContents", args: ["tmac"], as: String.self)
    .sink(receiveCompletion: { result in
        switch result {
        case .finished: print("done")
        case .failure(let error): print(error) // error if there was
        }
    }, receiveValue: {
        print($0) // "tmac"
    })

// more complex types
extension JSON: JavaScriptParameterEncodable {}

let _ = webView
    .runReturning(named: "returnContents", args: [JSON(name: "tmac", age: 28)], as: JSON.self)
    .sink(receiveCompletion: { result in
        switch result {
        case .finished: print("done")
        case .failure(let error): print(error) // error if there was
        }
    }, receiveValue: {
        print($0) // { name: "tmac", age: 28 }
    })

ESWebView

ESWebView is a subclass of WKWebView with some extended functionality. In javascript, you can reach out and message into swift-land using

window.webkit.messageHandlers.MyMessageHandler.postMessage({message: "hello"});

This requires you to be subscribed to messaging on the webview with

public func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
    print(message.name) // MyMessageHandler
    print(message.body) // Any 🤮
}

ESWebView listens for 3 message handlers (and does all the work subscribing for messaging), looking for data in 3 formats

private let kMessage = "ECMASwiftMessage"
public struct Message: Codable {
    public let message: String
}
// used for sending a message to swift-land

private let kPrompt = "ECMASwiftPrompt"
public struct Prompt: Codable {
    public let name: String
    public let type: HandlerType
}
// used to prompt swift-land to reach in and grab a variable or run a function

private let kRequest = "ECMASwiftRequest"
public struct Request: Codable {
    public let object: String
    public let predicate: String?
    public let toHandler: String
    public let type: HandlerType
}
// used for requesting a type or types from swift-land

// handler type
public enum HandlerType: String, Codable {
    case variable
    case function
}

These can be used in javascript to send messages which will be posted to iOS's NotificationCenter.

window.webkit.messageHandlers.ECMASwiftMessage.postMessage({message: "hello"});
window.webkit.messageHandlers.ECMASwiftPrompt.postMessage({name: "name", type: "variable"});
window.webkit.messageHandlers.ECMASwiftRequest.postMessage({object: "JSON", toHandler: "setPeople", type: "function"});

Subscribe in your view controller for any of these 3 notifications (and for a 4th error notification)

Example

import UIKit
import ECMASwift
import Combine

class ViewController: UIViewController {

    var webView: ESWebView!

    override func viewDidLoad() {
        super.viewDidLoad()

        // setup webView

        // something in webView triggers window.webkit.messageHandlers.ECMASwiftXXXXXXX.postMessage(...)
        
        let _ = NotificationCenter.default
            .publisher(for: ESWebView.error, object: nil)
            .setFailureType(to: ProxyError.self)
            .tryMap { notification -> T in
                let error = notification.userInfo!["error"] as! String
                let attempting = notification.userInfo!["attempting"] as! String
                throw ProxyError.error("Attempting: \(attempting) -> Error: \(error)")
            }
            .eraseToAnyPublisher() // AnyPublisher<T, Error>
            
        let messageNotification = NotificationCenter.default
            .publisher(for: ESWebView.message, object: nil)
            .tryMap { notification -> ESWebView.Message in
                if let message = notification.userInfo?["message"] as? ESWebView.Message {
                    return message
                } else {
                    throw ProxyError.userInfo
                }
            }
            ...
            
        let promptNotification = NotificationCenter.default
            .publisher(for: ESWebView.prompt, object: nil)
            .tryMap { notification -> ESWebView.Prompt in
                if let prompt = notification.userInfo?["prompt"] as? ESWebView.Prompt {
                    return prompt
                } else {
                    throw ProxyError.userInfo
                }
            }
            .flatMap { self.webView.getVariable(named: $0.name, as: String.self) }
            ...
            
        let requestNotification = NotificationCenter.default
            .publisher(for: ESWebView.request, object: nil)
            .tryMap { notification -> ESWebView.Request in
                if let request = notification.userInfo?["request"] as? ESWebView.Request {
                    return request
                } else {
                    throw ProxyError.userInfo
                }
            }
            .flatMap { self.webView.runVoid(named: $0.toHandler, args: [jsons]) }
            ...
    }
}

WKUIDelegate

ESWebView sets its uiDelegate to self in the initializer. This allows us to capture events from javascript such as alerts, confirmations, and text input panels.

public var handleAlertPanel: ((_ message: String, _ completionHandler: @escaping () -> Void) -> Void)?
public var handleConfirmPanel: ((_ message: String, _ completionHandler: @escaping (Bool) -> Void) -> Void)?
public var handleTextInputPanel: ((_ prompt: String, _ defaultText: String?, _ completionHandler: @escaping (String?) -> Void) -> Void)?

Set any of the above properties on your webView to handle these events. Not setting them (or setting them to nil) will result in the default behavior the system would take if the uiDelegate property was not set.

webView.handleAlertPanel = { [weak self] message, completion in
    let ac = UIAlertController(title: "Alert!", message: message, preferredStyle: .alert)
    ac.addAction(UIAlertAction(title: "OK", style: .default) { _ in
        completion()
    })
    self?.present(ac, animated: true)
}

webView.handleConfirmPanel = { [weak self] message, completion in
    let ac = UIAlertController(title: "Alert!", message: message, preferredStyle: .alert)
    ac.addAction(UIAlertAction(title: "Yes", style: .default) { _ in
        completion(true)
    })
    ac.addAction(UIAlertAction(title: "NO", style: .default) { _ in
        completion(false)
    })
    self?.present(ac, animated: true)
}

webView.handleTextInputPanel = { [weak self] message, defaultText, completion in
    let ac = UIAlertController(title: "Alert!", message: message, preferredStyle: .alert)
    ac.addTextField(configurationHandler: { (tf) in
        tf.placeholder = "hello"
        tf.text = defaultText
    })
    ac.addAction(UIAlertAction(title: "Yes", style: .default) { [unowned ac] _ in
        completion(ac.textFields?.first?.text)
    })
    ac.addAction(UIAlertAction(title: "NO", style: .default) { _ in
        completion(nil)
    })
    self?.present(ac, animated: true)
}

String Interpolation

JavaScriptParameterEncodable objects can be string interpolated using

struct Object: Codable, JavaScriptParameterEncodable {
    let name: String
}

let javaScriptString = "var myVar = \(asJS: Object(name: "tmac")"
// "var myVar = {\"name\":\"tmac\"}"

GitHub

link
Stars: 7
Last commit: 4 weeks ago
jonrohan Something's broken? Yell at me @ptrpavlik. Praise and feedback (and money) is also welcome.

Release Notes

SPM
3 years ago

SPM release Remove promise kit (combine only)

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics