aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/injectors/JsAssets.kt
blob: 27b0f92abac3e5b8bad552f7742d0499ff0474f8 (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
package com.pitchedapps.frost.injectors

import android.webkit.WebView
import com.pitchedapps.frost.utils.L
import java.io.FileNotFoundException
import java.util.*

/**
 * Created by Allan Wang on 2017-05-31.
 * Mapping of the available assets
 * The enum name must match the css file name
 */
enum class JsAssets : InjectorContract {
    MENU, CLICK_A, CONTEXT_A, HEADER_BADGES, SEARCH, TEXTAREA_LISTENER, NOTIF_MSG
    ;

    var file = "${name.toLowerCase(Locale.CANADA)}.min.js"
    var injector: JsInjector? = null

    override fun inject(webView: WebView, callback: ((String) -> Unit)?) {
        if (injector == null) {
            try {
                val content = webView.context.assets.open("js/$file").bufferedReader().use { it.readText() }
                injector = JsBuilder().js(content).build()
            } catch (e: FileNotFoundException) {
                L.e(e, "JsAssets file not found")
                injector = JsInjector(JsActions.EMPTY.function)
            }
        }
        injector!!.inject(webView, callback)
    }
}