@@ -8,21 +8,30 @@ import androidx.compose.foundation.layout.fillMaxSize
8
8
import androidx.compose.foundation.layout.fillMaxWidth
9
9
import androidx.compose.runtime.Composable
10
10
import androidx.compose.runtime.Immutable
11
+ import androidx.compose.runtime.LaunchedEffect
12
+ import androidx.compose.runtime.Stable
11
13
import androidx.compose.runtime.State
12
- import androidx.compose.runtime.collectAsState
13
14
import androidx.compose.runtime.derivedStateOf
15
+ import androidx.compose.runtime.getValue
16
+ import androidx.compose.runtime.mutableStateListOf
17
+ import androidx.compose.runtime.mutableStateOf
18
+ import androidx.compose.runtime.remember
14
19
import androidx.compose.runtime.rememberCoroutineScope
20
+ import androidx.compose.runtime.setValue
15
21
import androidx.compose.runtime.structuralEqualityPolicy
16
22
import androidx.compose.ui.Modifier
17
23
import androidx.compose.ui.platform.LocalContext
18
24
import androidx.compose.ui.tooling.preview.Preview
19
25
import androidx.lifecycle.compose.collectAsStateWithLifecycle
26
+ import com.urbanairship.android.layout.AirshipEmbeddedViewManager
20
27
import com.urbanairship.android.layout.EmbeddedDisplayRequest
21
28
import com.urbanairship.android.layout.ui.EmbeddedLayout
22
29
import com.urbanairship.embedded.AirshipEmbeddedInfo
23
30
import com.urbanairship.embedded.EmbeddedViewManager
31
+ import kotlinx.coroutines.Dispatchers
24
32
import kotlinx.coroutines.flow.distinctUntilChanged
25
33
import kotlinx.coroutines.flow.map
34
+ import kotlinx.coroutines.withContext
26
35
27
36
/* *
28
37
* A container that allows all embedded content for the given [embeddedId]
@@ -40,56 +49,37 @@ public fun AirshipEmbeddedViewGroup(
40
49
comparator : Comparator <AirshipEmbeddedInfo >? = null,
41
50
content : @Composable BoxScope .(embeddedViews: List <EmbeddedViewItem >) -> Unit
42
51
) {
43
- val scope = rememberCoroutineScope()
44
-
45
- val displayRequests = EmbeddedViewManager .displayRequests(embeddedId, comparator, scope)
46
- .map { it.list }
47
- .distinctUntilChanged()
48
- .collectAsStateWithLifecycle(emptyList())
49
-
50
- val items: State <List <EmbeddedViewItem >> = derivedStateOf(policy = structuralEqualityPolicy()) {
51
- displayRequests.value.map { request -> EmbeddedViewItem (request = request) }
52
- }
53
-
54
- Box (modifier) {
55
- content(items.value)
56
- }
52
+ AirshipEmbeddedViewGroup (
53
+ modifier = modifier,
54
+ state = rememberAirshipEmbeddedViewGroupState(embeddedId, comparator),
55
+ content = content
56
+ )
57
57
}
58
58
59
59
/* *
60
- * An embedded view item, containing the [AirshipEmbeddedInfo] and the content to display.
60
+ * A container that allows all embedded content for the `embeddedId` defined on the given
61
+ * [AirshipEmbeddedViewGroupState] instance.
62
+ *
63
+ * This composable may be useful when access to the embedded view group state is needed outside of
64
+ * the `AirshipEmbeddedViewGroup` composable, embedded view group state should be hoisted, and for
65
+ * advanced custom logic that depends on the availability of embedded view content.
66
+ *
67
+ * When included inside of a lazy composable or scrolling list, state should be hoisted up, above
68
+ * the lazy composable or scrolling list, in order to ensure that the embedded view group state is
69
+ * maintained across recompositions.
70
+ *
71
+ * @param state The [AirshipEmbeddedViewGroupState] to be used by this embedded view group.
72
+ * @param modifier The modifier to be applied to the layout.
73
+ * @param content The `Composable` that will display the list of embedded view content.
61
74
*/
62
- @Immutable
63
- public data class EmbeddedViewItem internal constructor(
64
- private val request : EmbeddedDisplayRequest
75
+ @Composable
76
+ public fun AirshipEmbeddedViewGroup (
77
+ state : AirshipEmbeddedViewGroupState ,
78
+ modifier : Modifier = Modifier ,
79
+ content : @Composable BoxScope .(embeddedViews: List <EmbeddedViewItem >) -> Unit
65
80
) {
66
- /* * The [AirshipEmbeddedInfo] for this embedded content. */
67
- public val info: AirshipEmbeddedInfo = AirshipEmbeddedInfo (
68
- embeddedId = request.embeddedViewId,
69
- instanceId = request.viewInstanceId,
70
- priority = request.priority,
71
- extras = request.extras,
72
- )
73
-
74
- /* * The content to display for this embedded view item. */
75
- @Composable
76
- public fun content () {
77
- val layout = EmbeddedLayout (
78
- context = LocalContext .current,
79
- embeddedViewId = request.embeddedViewId,
80
- viewInstanceId = request.viewInstanceId,
81
- args = request.displayArgsProvider.invoke(),
82
- embeddedViewManager = EmbeddedViewManager
83
- )
84
-
85
- EmbeddedViewWrapper (
86
- embeddedId = request.embeddedViewId,
87
- embeddedLayout = layout,
88
- embeddedSize = layout.getPlacement()?.size?.toEmbeddedSize(),
89
- // Consumers provide their own placeholder, if desired.
90
- placeholder = null ,
91
- modifier = Modifier .fillMaxWidth()
92
- )
81
+ Box (modifier) {
82
+ content(state.items.value)
93
83
}
94
84
}
95
85
0 commit comments