-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGridView.kt
More file actions
226 lines (205 loc) · 7.86 KB
/
Copy pathGridView.kt
File metadata and controls
226 lines (205 loc) · 7.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package expo.modules.jetpackcomposereactnative.views.grid
import android.content.Context
import android.view.View
import android.view.ViewGroup
import android.view.ViewGroup.LayoutParams.WRAP_CONTENT
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.lazy.grid.GridCells
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
import androidx.compose.foundation.lazy.grid.LazyHorizontalGrid
import androidx.compose.foundation.lazy.staggeredgrid.LazyVerticalStaggeredGrid
import androidx.compose.foundation.lazy.staggeredgrid.LazyHorizontalStaggeredGrid
import androidx.compose.foundation.lazy.staggeredgrid.StaggeredGridCells
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.runtime.Composable
import androidx.compose.ui.unit.dp
import androidx.compose.runtime.mutableStateOf
import androidx.compose.ui.Modifier
import androidx.compose.ui.platform.ComposeView
import androidx.compose.ui.viewinterop.AndroidView
import expo.modules.jetpackcomposereactnative.common.ModifierProp
import expo.modules.jetpackcomposereactnative.common.toModifier
import expo.modules.kotlin.AppContext
import expo.modules.kotlin.views.ExpoView
import androidx.compose.material3.Text
data class GridProps (
var children: List<View> = emptyList(),
var modifier: ModifierProp = emptyList(),
var vertical: Boolean? = null,
var horizontal: Boolean? = null,
var staggered: Boolean = false,
var size: Int? = null,
var gridCellsType: String? = null,
var verticalItemSpacing: Int? = null,
var spacedBy: Int? = null,
var lastItem: View? = null,
)
class GridView(context: Context, appContext: AppContext) : ExpoView(context, appContext) {
private var props = mutableStateOf(GridProps())
override fun addView(child: View?, index: Int) {
if (child is ComposeView) {
super.addView(child, index)
} else {
if (child != null) {
props.value = props.value.copy(children = props.value.children + child)
}
}
}
init {
ComposeView(context).also {
it.layoutParams = LayoutParams(WRAP_CONTENT, WRAP_CONTENT) // Allow the content to wrap
it.setContent {
if(props.value.vertical == true) {
if(props.value.staggered) {
VerticalStaggeredGridComposable(props = props.value)
} else {
VerticalGridComposable(props = props.value)
}
} else {
if(props.value.staggered) {
HorizontalStaggeredGridComposable(props = props.value)
} else {
HorizontalGridComposable(props = props.value)
}
}
}
addView(it)
}
}
fun updateVertical(vertical: Boolean) {
props.value = props.value.copy(vertical = vertical)
}
fun updateHorizontal(horizontal: Boolean) {
props.value = props.value.copy(horizontal = horizontal)
}
fun updateStaggered(staggered: Boolean) {
props.value = props.value.copy(staggered = staggered)
}
fun updateGridCellsType(gridCellsType: String) {
props.value = props.value.copy(gridCellsType = gridCellsType)
}
fun updateSize(size: Int) {
props.value = props.value.copy(size = size)
}
fun updateVerticalItemSpacing(verticalItemSpacing: Int) {
props.value = props.value.copy(verticalItemSpacing = verticalItemSpacing)
}
fun updateSpacedBy(spacedBy: Int) {
props.value = props.value.copy(spacedBy = spacedBy)
}
fun updateModifier(modifier: ModifierProp) {
props.value = props.value.copy(modifier = modifier)
}
}
@Composable
fun VerticalGridComposable(props: GridProps) {
val totalItems = props.children.size
val gridCellsType = when(props.gridCellsType) {
"fixed" -> GridCells.Fixed(props.size ?: 2)
"fixedSize" -> GridCells.FixedSize(props.size?.dp ?: 30.dp)
"adaptive" -> GridCells.Adaptive(props.size?.dp ?: 30.dp)
else -> GridCells.Adaptive(props.size?.dp ?: 30.dp)
}
LazyVerticalGrid(
columns = gridCellsType,
modifier = props.modifier.toModifier()
) {
items(totalItems) { index ->
AndroidView(
modifier = Modifier.fillMaxWidth(),
factory = { context ->
props.children[index].apply {
layoutParams = ViewGroup.LayoutParams(WRAP_CONTENT, WRAP_CONTENT)
}
},
)
}
// To be added soon...
item {}
}
}
@Composable
fun VerticalStaggeredGridComposable(props: GridProps) {
val totalItems = props.children.size
val gridCellsType = when(props.gridCellsType) {
"fixed" -> StaggeredGridCells.Fixed(props.size ?: 2)
"fixedSize" -> StaggeredGridCells.FixedSize(props.size?.dp ?: 30.dp)
"adaptive" -> StaggeredGridCells.Adaptive(props.size?.dp ?: 30.dp)
else -> StaggeredGridCells.Adaptive(props.size?.dp ?: 30.dp)
}
LazyVerticalStaggeredGrid(
columns = gridCellsType,
verticalItemSpacing = props.verticalItemSpacing?.dp ?: 4.dp,
horizontalArrangement = Arrangement.spacedBy(props.spacedBy?.dp ?: 4.dp),
modifier = props.modifier.toModifier()
) {
items(totalItems) { index ->
AndroidView(
modifier = Modifier.fillMaxWidth(),
factory = { context ->
props.children[index].apply {
layoutParams = ViewGroup.LayoutParams(WRAP_CONTENT, WRAP_CONTENT)
}
},
)
}
// To be added soon...
item {}
}
}
@Composable
fun HorizontalGridComposable(props: GridProps) {
val totalItems = props.children.size
val gridCellsType = when(props.gridCellsType) {
"fixed" -> GridCells.Fixed(props.size ?: 2)
"fixedSize" -> GridCells.FixedSize(props.size?.dp ?: 30.dp)
"adaptive" -> GridCells.Adaptive(props.size?.dp ?: 30.dp)
else -> GridCells.Adaptive(props.size?.dp ?: 30.dp)
}
LazyHorizontalGrid(
rows = gridCellsType,
modifier = props.modifier.toModifier()
) {
items(totalItems) { index ->
AndroidView(
modifier = Modifier.fillMaxWidth(),
factory = { context ->
props.children[index].apply {
layoutParams = ViewGroup.LayoutParams(WRAP_CONTENT, WRAP_CONTENT)
}
},
)
}
// To be added soon...
item {}
}
}
@Composable
fun HorizontalStaggeredGridComposable(props: GridProps) {
val totalItems = props.children.size
val gridCellsType = when(props.gridCellsType) {
"fixed" -> StaggeredGridCells.Fixed(props.size ?: 2)
"fixedSize" -> StaggeredGridCells.FixedSize(props.size?.dp ?: 30.dp)
"adaptive" -> StaggeredGridCells.Adaptive(props.size?.dp ?: 30.dp)
else -> StaggeredGridCells.Adaptive(props.size?.dp ?: 30.dp)
}
LazyHorizontalStaggeredGrid(
rows = gridCellsType,
horizontalItemSpacing = props.verticalItemSpacing?.dp ?: 4.dp,
verticalArrangement = Arrangement.spacedBy(props.spacedBy?.dp ?: 4.dp),
modifier = props.modifier.toModifier()
) {
items(totalItems) { index ->
AndroidView(
modifier = Modifier.fillMaxWidth(),
factory = { context ->
props.children[index].apply {
layoutParams = ViewGroup.LayoutParams(WRAP_CONTENT, WRAP_CONTENT)
}
},
)
}
// To be added soon...
item {}
}
}