-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8348ef5
commit 0f680f2
Showing
1 changed file
with
65 additions
and
35 deletions.
There are no files selected for viewing
100 changes: 65 additions & 35 deletions
100
...src/commonMain/kotlin/dev/sargunv/maplibrecompose/material3/controls/AttributionButton.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,91 @@ | ||
package dev.sargunv.maplibrecompose.material3.controls | ||
|
||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.animation.AnimatedVisibility | ||
import androidx.compose.foundation.layout.Arrangement | ||
import androidx.compose.foundation.layout.ExperimentalLayoutApi | ||
import androidx.compose.foundation.layout.FlowRow | ||
import androidx.compose.foundation.layout.Row | ||
import androidx.compose.foundation.layout.padding | ||
import androidx.compose.material.icons.Icons | ||
import androidx.compose.material.icons.outlined.Info | ||
import androidx.compose.material3.AlertDialog | ||
import androidx.compose.material3.Icon | ||
import androidx.compose.material3.IconButton | ||
import androidx.compose.material3.IconButtonColors | ||
import androidx.compose.material3.IconButtonDefaults | ||
import androidx.compose.material3.MaterialTheme | ||
import androidx.compose.material3.ProvideTextStyle | ||
import androidx.compose.material3.Surface | ||
import androidx.compose.material3.Text | ||
import androidx.compose.material3.TextButton | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.getValue | ||
import androidx.compose.runtime.mutableStateOf | ||
import androidx.compose.runtime.remember | ||
import androidx.compose.runtime.setValue | ||
import androidx.compose.ui.Alignment | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.platform.LocalUriHandler | ||
import dev.sargunv.maplibrecompose.compose.StyleState | ||
import androidx.compose.ui.text.LinkAnnotation | ||
import androidx.compose.ui.text.TextLinkStyles | ||
import androidx.compose.ui.text.TextStyle | ||
import androidx.compose.ui.text.buildAnnotatedString | ||
import androidx.compose.ui.text.withLink | ||
import androidx.compose.ui.unit.dp | ||
import dev.sargunv.maplibrecompose.core.source.AttributionLink | ||
import dev.sargunv.maplibrecompose.material3.generated.Res | ||
import dev.sargunv.maplibrecompose.material3.generated.attribution | ||
import dev.sargunv.maplibrecompose.material3.generated.library_name | ||
import org.jetbrains.compose.resources.stringResource | ||
|
||
/** | ||
* Info button from which an attribution text is expanded towards the start. The attribution text | ||
* should (optionally) retract when the user starts interacting with the map. | ||
* | ||
* @param attributions List of attributions to show | ||
* @param onClick Called when the info button is clicked. Should expand the attribution. | ||
* @param expanded Whether the attribution info is shown next to the info button. It should start | ||
* out as expanded, then retract when the user interacts with the map | ||
* @param modifier the Modifier to be applied to this layout node | ||
* @param colors Colors that will be used for the info button | ||
* @param textStyle Text style used for the attribution info | ||
* @param textLinkStyles Text link styles that should be used for the links in the attribution info | ||
* */ | ||
@OptIn(ExperimentalLayoutApi::class) | ||
@Composable | ||
public fun AttributionButton( | ||
styleState: StyleState, | ||
attributions: List<AttributionLink>, | ||
onClick: () -> Unit, | ||
modifier: Modifier = Modifier, | ||
expanded: Boolean = true, | ||
colors: IconButtonColors = IconButtonDefaults.iconButtonColors(), | ||
textStyle: TextStyle = MaterialTheme.typography.bodyMedium, | ||
textLinkStyles: TextLinkStyles? = null, | ||
) { | ||
var showDialog by remember { mutableStateOf(false) } | ||
if (attributions.isEmpty()) return | ||
|
||
IconButton(modifier = modifier, colors = colors, onClick = { showDialog = true }) { | ||
Icon(Icons.Outlined.Info, contentDescription = stringResource(Res.string.attribution)) | ||
} | ||
|
||
if (showDialog) { | ||
val attributions = remember(styleState) { styleState.queryAttributionLinks() } | ||
val uriHandler = LocalUriHandler.current | ||
|
||
AlertDialog( | ||
onDismissRequest = { showDialog = false }, | ||
confirmButton = {}, | ||
title = { | ||
Text( | ||
text = stringResource(Res.string.library_name), | ||
style = MaterialTheme.typography.headlineSmall, | ||
) | ||
}, | ||
text = { | ||
Column { | ||
attributions.forEach { | ||
TextButton(onClick = { uriHandler.openUri(it.url) }) { Text(text = it.title) } | ||
Row( | ||
modifier = modifier, | ||
horizontalArrangement = Arrangement.End, | ||
verticalAlignment = Alignment.CenterVertically | ||
) { | ||
AnimatedVisibility(expanded, modifier = Modifier.weight(1f, fill = false)) { | ||
Surface(shape = MaterialTheme.shapes.medium) { | ||
ProvideTextStyle(textStyle) { | ||
FlowRow( | ||
modifier = Modifier.padding(vertical = 4.dp, horizontal = 8.dp), | ||
horizontalArrangement = Arrangement.spacedBy(4.dp, Alignment.End), | ||
verticalArrangement = Arrangement.Bottom, | ||
) { | ||
attributions.forEach { | ||
val text = buildAnnotatedString { | ||
withLink(LinkAnnotation.Url(url = it.url, styles = textLinkStyles)) { | ||
append(it.title) | ||
} | ||
} | ||
Text(text) | ||
} | ||
} | ||
} | ||
}, | ||
) | ||
} | ||
} | ||
IconButton(onClick = onClick, modifier = Modifier.align(Alignment.Bottom), colors = colors) { | ||
Icon( | ||
imageVector = Icons.Outlined.Info, | ||
contentDescription = stringResource(Res.string.attribution) | ||
) | ||
} | ||
} | ||
} |