|
@@ -9,6 +9,7 @@ import androidx.compose.foundation.lazy.LazyColumn
|
|
|
import androidx.compose.foundation.lazy.LazyListState
|
|
|
import androidx.compose.material.icons.Icons
|
|
|
import androidx.compose.material.icons.automirrored.outlined.Label
|
|
|
+import androidx.compose.material.icons.outlined.ContentCopy
|
|
|
import androidx.compose.material.icons.outlined.Delete
|
|
|
import androidx.compose.material3.ElevatedCard
|
|
|
import androidx.compose.material3.Icon
|
|
@@ -18,8 +19,12 @@ import androidx.compose.material3.Text
|
|
|
import androidx.compose.runtime.Composable
|
|
|
import androidx.compose.ui.Alignment
|
|
|
import androidx.compose.ui.Modifier
|
|
|
+import androidx.compose.ui.platform.LocalContext
|
|
|
+import eu.kanade.tachiyomi.util.system.copyToClipboard
|
|
|
import kotlinx.collections.immutable.ImmutableSet
|
|
|
+import tachiyomi.i18n.MR
|
|
|
import tachiyomi.presentation.core.components.material.padding
|
|
|
+import tachiyomi.presentation.core.i18n.stringResource
|
|
|
|
|
|
@Composable
|
|
|
fun ExtensionReposContent(
|
|
@@ -53,6 +58,8 @@ private fun ExtensionRepoListItem(
|
|
|
onDelete: () -> Unit,
|
|
|
modifier: Modifier = Modifier,
|
|
|
) {
|
|
|
+ val context = LocalContext.current
|
|
|
+
|
|
|
ElevatedCard(
|
|
|
modifier = modifier,
|
|
|
) {
|
|
@@ -74,8 +81,23 @@ private fun ExtensionRepoListItem(
|
|
|
modifier = Modifier.fillMaxWidth(),
|
|
|
horizontalArrangement = Arrangement.End,
|
|
|
) {
|
|
|
+ IconButton(
|
|
|
+ onClick = {
|
|
|
+ val url = "$repo/index.min.json"
|
|
|
+ context.copyToClipboard(url, url)
|
|
|
+ },
|
|
|
+ ) {
|
|
|
+ Icon(
|
|
|
+ imageVector = Icons.Outlined.ContentCopy,
|
|
|
+ contentDescription = stringResource(MR.strings.action_copy_to_clipboard),
|
|
|
+ )
|
|
|
+ }
|
|
|
+
|
|
|
IconButton(onClick = onDelete) {
|
|
|
- Icon(imageVector = Icons.Outlined.Delete, contentDescription = null)
|
|
|
+ Icon(
|
|
|
+ imageVector = Icons.Outlined.Delete,
|
|
|
+ contentDescription = stringResource(MR.strings.action_delete),
|
|
|
+ )
|
|
|
}
|
|
|
}
|
|
|
}
|