1
0
Fork 0
fenix/app/src/main/java/org/mozilla/fenix/utils/ItsNotBrokenSnack.kt

33 lines
1.2 KiB
Kotlin

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.fenix.utils
import android.app.Activity
import android.content.Context
import android.view.View
import com.google.android.material.snackbar.Snackbar
import org.mozilla.fenix.ext.components
class ItsNotBrokenSnack(val context: Context) {
fun getSnackbar(issueNumber: String, view: View): Snackbar {
val snackbar = Snackbar.make(view, message.replace("%", issueNumber), Snackbar.LENGTH_SHORT)
snackbar.setAction("Add Tab to Issue", {
context.components.useCases.tabsUseCases.addTab
.invoke(issues + issueNumber)
})
return snackbar
}
fun showSnackbar(issueNumber: String, activity: Activity) {
val rootView = activity.window.decorView.findViewById<View>(android.R.id.content)
getSnackbar(issueNumber, rootView).show()
}
companion object {
const val issues = "https://github.com/mozilla-mobile/fenix/issues/"
const val message = "Feature is not implemented, Issue #%"
}
}