aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/web/FrostJSI.kt
blob: 68163333b6bfe2b078e23df892cfffb0b2998f5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.pitchedapps.frost.web

import android.content.Context
import android.webkit.JavascriptInterface
import com.pitchedapps.frost.MainActivity
import com.pitchedapps.frost.dbflow.CookieModel
import com.pitchedapps.frost.utils.*
import io.reactivex.subjects.Subject


/**
 * Created by Allan Wang on 2017-06-01.
 */
class FrostJSI(val context: Context, val webView: FrostWebViewCore, val contextMenu: FrostWebContextMenu) {

    val headerObservable: Subject<String>? = (context as? MainActivity)?.headerBadgeObservable

    val cookies: ArrayList<CookieModel>
        get() = (context as? MainActivity)?.cookies() ?: arrayListOf()

    @JavascriptInterface
    fun loadUrl(url: String) {
        context.launchWebOverlay(url)
    }

    @JavascriptInterface
    fun reloadBaseUrl(animate: Boolean) {
        L.d("FrostJSI reload")
        webView.post {
            webView.stopLoading()
            webView.loadBaseUrl(animate)
        }
    }

    @JavascriptInterface
    fun contextMenu(url: String) {
        contextMenu.post { contextMenu.show(url) }
    }

    @JavascriptInterface
    fun loadLogin() {
        context.launchLogin(cookies, true)
    }

    @JavascriptInterface
    fun emit(flag: Int) {
        webView.post { webView.frostWebClient!!.emit(flag) }
    }

    @JavascriptInterface
    fun handleHtml(html: String) {
        webView.post { webView.frostWebClient!!.handleHtml(html) }
    }

    @JavascriptInterface
    fun handleHeader(html: String) {
        headerObservable?.onNext(html)
    }

}