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

import android.webkit.WebView
import com.pitchedapps.frost.utils.L

/**
 * Created by Allan Wang on 2017-05-31.
 * Mapping of the available assets
 * The enum name must match the css file name
 * //TODO add folder mapping using Prefs
 */
enum class JsAssets : InjectorContract {
    MENU, CLICK_A, CLICK_INTERCEPTOR, HEADER_BADGES, SEARCH
    ;

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

    override fun inject(webView: WebView, callback: ((String) -> Unit)?) {
        if (injector == null) {
            val content = webView.context.assets.open("js/$file").bufferedReader().use { it.readText() }
            injector = JsBuilder().js(content).build()
        }
        injector!!.inject(webView, callback)
    }

    fun reset() {
        injector = null
    }

}