|
@@ -0,0 +1,94 @@
|
|
|
+package eu.kanade.presentation.more.settings.screen
|
|
|
+
|
|
|
+import androidx.compose.foundation.layout.Column
|
|
|
+import androidx.compose.foundation.layout.padding
|
|
|
+import androidx.compose.foundation.rememberScrollState
|
|
|
+import androidx.compose.foundation.verticalScroll
|
|
|
+import androidx.compose.material.icons.Icons
|
|
|
+import androidx.compose.material.icons.filled.ArrowBack
|
|
|
+import androidx.compose.material.icons.filled.Public
|
|
|
+import androidx.compose.material3.Icon
|
|
|
+import androidx.compose.material3.IconButton
|
|
|
+import androidx.compose.material3.Text
|
|
|
+import androidx.compose.material3.TopAppBar
|
|
|
+import androidx.compose.runtime.Composable
|
|
|
+import androidx.compose.ui.Modifier
|
|
|
+import androidx.compose.ui.platform.LocalUriHandler
|
|
|
+import androidx.compose.ui.res.stringResource
|
|
|
+import androidx.compose.ui.unit.dp
|
|
|
+import androidx.compose.ui.viewinterop.AndroidView
|
|
|
+import androidx.core.text.HtmlCompat
|
|
|
+import cafe.adriel.voyager.navigator.LocalNavigator
|
|
|
+import cafe.adriel.voyager.navigator.currentOrThrow
|
|
|
+import com.google.android.material.textview.MaterialTextView
|
|
|
+import eu.kanade.presentation.components.AppBar
|
|
|
+import eu.kanade.presentation.components.AppBarActions
|
|
|
+import eu.kanade.presentation.util.Screen
|
|
|
+import eu.kanade.tachiyomi.R
|
|
|
+import tachiyomi.presentation.core.components.material.Scaffold
|
|
|
+
|
|
|
+class OpenSourceLibraryLicenseScreen(
|
|
|
+ private val name: String,
|
|
|
+ private val website: String?,
|
|
|
+ private val license: String,
|
|
|
+) : Screen() {
|
|
|
+
|
|
|
+ @Composable
|
|
|
+ override fun Content() {
|
|
|
+ val navigator = LocalNavigator.currentOrThrow
|
|
|
+ val uriHandler = LocalUriHandler.current
|
|
|
+
|
|
|
+ Scaffold(
|
|
|
+ topBar = {
|
|
|
+ TopAppBar(
|
|
|
+ title = {
|
|
|
+ Text(
|
|
|
+ text = name,
|
|
|
+ maxLines = 1,
|
|
|
+ )
|
|
|
+ },
|
|
|
+ navigationIcon = {
|
|
|
+ IconButton(onClick = navigator::pop) {
|
|
|
+ Icon(imageVector = Icons.Default.ArrowBack, contentDescription = null)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ actions = {
|
|
|
+ if (!website.isNullOrEmpty()) {
|
|
|
+ AppBarActions(
|
|
|
+ listOf(
|
|
|
+ AppBar.Action(
|
|
|
+ title = stringResource(R.string.website),
|
|
|
+ icon = Icons.Default.Public,
|
|
|
+ onClick = { uriHandler.openUri(website) },
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ )
|
|
|
+ }
|
|
|
+ },
|
|
|
+ scrollBehavior = it,
|
|
|
+ )
|
|
|
+ },
|
|
|
+ ) { contentPadding ->
|
|
|
+ Column(
|
|
|
+ modifier = Modifier
|
|
|
+ .verticalScroll(rememberScrollState())
|
|
|
+ .padding(contentPadding)
|
|
|
+ .padding(16.dp),
|
|
|
+ ) {
|
|
|
+ HtmlLicenseText(html = license)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Composable
|
|
|
+ private fun HtmlLicenseText(html: String) {
|
|
|
+ AndroidView(
|
|
|
+ factory = {
|
|
|
+ MaterialTextView(it)
|
|
|
+ },
|
|
|
+ update = {
|
|
|
+ it.text = HtmlCompat.fromHtml(html, HtmlCompat.FROM_HTML_MODE_COMPACT)
|
|
|
+ },
|
|
|
+ )
|
|
|
+ }
|
|
|
+}
|