Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/canopas/compose-recyclerview

Android - A jetpack compose list view that is backed by our all time favourite RecyclerView.
https://github.com/canopas/compose-recyclerview

andriod android-library compose-ui composer-library drag-and-drop draggable jetpack-compose jetpack-compose-tutorial kotlin kotlin-library lazylist recyclerview recyclerview-adapter

Last synced: 4 days ago
JSON representation

Android - A jetpack compose list view that is backed by our all time favourite RecyclerView.

Awesome Lists containing this project

README

        

# ComposeRecyclerView

**ComposeRecyclerView** enables seamless integration of Jetpack Compose composables within traditional RecyclerView.
This library addresses performance concerns and resolves issues commonly faced in Compose LazyList implementations.
It comes with built-in support for drag-and-drop functionality, making it a versatile solution for dynamic UIs.

![ComposeRecyclerView](https://github.com/canopas/compose-recyclerview/assets/98312779/5d34dce0-dc5d-44ee-86fe-e0540bdbe753)

## Benefits

- **Improved Performance:** ComposeRecyclerView optimizes the rendering of Jetpack Compose items within a RecyclerView, providing better performance compared to LazyList implementations.

- **Drag-and-Drop Support:** Built-in support for drag-and-drop functionality makes it easy to implement interactive and dynamic user interfaces.

- **Flexible Configuration:** Customize the layout, item creation, and callbacks to fit your specific UI requirements.

- **Multi-Item Type Support:** Easily handle multiple item types within the same RecyclerView, enhancing the versatility of your UI.

## How to add in your project

Add the dependency ([Latest-Version](https://github.com/canopas/compose-recyclerview/releases/latest))

```gradle
implementation 'com.canopas:compose_recyclerview:'
```

## Sample Usage

Integrating **ComposeRecyclerView** into your Android app is a breeze! Follow these simple
steps to get started:

**Implement ComposeRecyclerView:**

Use the ComposeRecyclerView composable to create a RecyclerView with dynamically generated Compose items.
```
ComposeRecyclerView(
modifier = Modifier.fillMaxSize(),
items = yourTotalItems, // Combination of lists in case of multiple items
itemBuilder = { index ->
// Compose content for each item at the specified index
// Similar to Flutter's ListView.builder() widget
// Customize this block based on your UI requirements
},
onScrollEnd = {
// Callback triggered when the user reaches the end of the list during scrolling
// Add your logic to handle the end of the list, such as loading more data
},
itemTouchHelperConfig = {
nonDraggableItemTypes = setOf(yourHeaderItemType)
onMove = { recyclerView, viewHolder, target ->
// Handle item move
}
onSwiped = { viewHolder, direction ->
// Handle item swipe
}
dragDirs = UP or DOWN or START or END // Specify drag directions here
swipeDirs = LEFT or RIGHT // Specify swipe directions here
// Add more customization options as needed
}
)
```

**Customize as Needed:**

Customize the layout, handle item types, and add drag-and-drop functionality based on your project requirements.

```
itemTypeBuilder = object : ComposeRecyclerViewAdapter.ItemTypeBuilder {
override fun getItemType(position: Int): Int {
// Determine the item type based on the position
// Customize this logic based on your requirements
return yourItemType
}
}

onItemMove = { fromPosition, toPosition, itemType ->
// Update your data structure when an item is moved
// Customize this block based on your data structure
}

onDragCompleted = { position ->
// Handle item drag completion (e.g., update the UI or perform an API call)
// Customize this block based on your requirements
}
```

**Note:** To enable drag-and-drop functionality, passing a non-null `itemTypeBuilder` is mandatory.

**Customize Layout (Optional):**

You can customize the layout of your RecyclerView as needed.
```
recyclerView.layoutManager = LinearLayoutManager(context, RecyclerView.VERTICAL, false)
// OR
recyclerView.layoutManager = GridLayoutManager(context, yourSpanCount)

```

## ComposeRecyclerView in Action: Creating Complex UIs with Drag-and-Drop

https://github.com/canopas/compose-recyclerview/assets/98312779/861bf272-61bd-4bac-aaa5-47415d290913

## Sample Implementation

```
const val ITEM_TYPE_FIRST_HEADER = 0
const val ITEM_TYPE_FIRST_LIST_ITEM = 1
const val ITEM_TYPE_SECOND_HEADER = 2
const val ITEM_TYPE_SECOND_LIST_ITEM = 3

class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
ComposeRecyclerViewTheme {
Surface(
modifier = Modifier.fillMaxSize(),
color = MaterialTheme.colorScheme.background
) {
val userDataList = List(20) { index ->
UserData(
"User ${index + 1}",
20 + index,
if (index % 2 == 0) "Male" else "Female"
)
}

val otherUsersDataList = List(20) { index ->
UserData(
"User ${index + 21}",
20 + index,
if (index % 2 == 0) "Male" else "Female"
)
}

ComposeRecyclerView(
modifier = Modifier.fillMaxSize(),
items = listOf(1) + userDataList + listOf(1) + otherUsersDataList,
itemBuilder = { index ->
if (index == 0) {
Box(
modifier = Modifier.fillMaxWidth(),
contentAlignment = Alignment.Center
) {
Text(
"First List Header Composable",
style = MaterialTheme.typography.titleMedium,
modifier = Modifier.padding(16.dp)
)
}
return@ComposeRecyclerView
}

val userIndex = index - 1
if (userIndex < userDataList.size) {
CustomUserItem(user = userDataList[userIndex])
return@ComposeRecyclerView
}

if (userIndex == userDataList.size) {
Box(
modifier = Modifier.fillMaxWidth(),
contentAlignment = Alignment.Center
) {
Text(
"Second List Header Composable",
style = MaterialTheme.typography.titleMedium,
modifier = Modifier.padding(16.dp)
)
}
return@ComposeRecyclerView
}

val otherUserIndex = index - userDataList.size - 2
if (otherUserIndex < otherUsersDataList.size) {
CustomUserItem(user = otherUsersDataList[otherUserIndex])
return@ComposeRecyclerView
}
},
onItemMove = { fromPosition, toPosition, itemType ->
// Update list when an item is moved
when (itemType) {
ITEM_TYPE_FIRST_HEADER -> {
// Do nothing
}

ITEM_TYPE_FIRST_LIST_ITEM -> {
val fromIndex = fromPosition - 1
val toIndex = toPosition - 1
Collections.swap(userDataList, fromIndex, toIndex)
}

ITEM_TYPE_SECOND_HEADER -> {
// Do nothing
}

// ITEM_TYPE_SECOND_LIST_ITEM
else -> {
val fromIndex = fromPosition - userDataList.size - 2
val toIndex = toPosition - userDataList.size - 2
Collections.swap(otherUsersDataList, fromIndex, toIndex)
}
}
},
onDragCompleted = {
// Update list or do API call when an item drag operation is completed
Log.d("MainActivity", "onDragCompleted: $it")
},
itemTypeBuilder = object : ComposeRecyclerViewAdapter.ItemTypeBuilder {
override fun getItemType(position: Int): Int {
// Determine the item type based on the position
// You can customize this logic based on your requirements
return when {
position == 0 -> ITEM_TYPE_FIRST_HEADER // Header type
position <= userDataList.size -> ITEM_TYPE_FIRST_LIST_ITEM // First list item type
position == userDataList.size + 1 -> ITEM_TYPE_SECOND_HEADER // Header type
else -> ITEM_TYPE_SECOND_LIST_ITEM // Second list item type
}
}
},
onScrollEnd = {
// Do API call when the user reaches the end of the list during scrolling
Log.d("MainActivity", "onScrollEnd")
},
itemTouchHelperConfig = {
nonDraggableItemTypes =
setOf(ITEM_TYPE_FIRST_HEADER, ITEM_TYPE_SECOND_HEADER)

/*onMove = { recyclerView, viewHolder, target ->
// Handle item move
}
onSwiped = { viewHolder, direction ->
// Handle item swipe
}
// Add more customization options as needed*/
},
) { recyclerView ->
recyclerView.addItemDecoration(
DividerItemDecoration(
recyclerView.context,
DividerItemDecoration.VERTICAL
)
)

// To change layout to grid layout
val gridLayoutManager = GridLayoutManager(this, 2).apply {
spanSizeLookup = object : GridLayoutManager.SpanSizeLookup() {
override fun getSpanSize(position: Int): Int {
return if (position == 0 || position == userDataList.size + 1) {
2 // To show header title at the center of the screen and span across the entire screen
} else {
1
}
}
}
}
recyclerView.layoutManager = gridLayoutManager
}
}
}
}
}
}

@Composable
fun CustomUserItem(user: UserData) {
Card(
modifier = Modifier
.fillMaxWidth()
.padding(16.dp),
colors = CardDefaults.cardColors(
containerColor = Color.Black,
contentColor = Color.White
),
elevation = CardDefaults.cardElevation(
defaultElevation = 8.dp
),
shape = RoundedCornerShape(8.dp)
) {
Column(
modifier = Modifier
.padding(16.dp)
) {
Text(
text = "Name: ${user.name}",
style = MaterialTheme.typography.titleMedium,
color = Color.White
)
Spacer(modifier = Modifier.height(8.dp))
Text(
text = "Age: ${user.age}",
style = MaterialTheme.typography.titleMedium,
color = Color.White
)
Spacer(modifier = Modifier.height(8.dp))
Text(
text = "Gender: ${user.gender}",
style = MaterialTheme.typography.titleMedium,
color = Color.White
)
}
}
}

```



Linear Layout







Grid Layout





## Demo

To see **ComposeRecyclerView** in action, check out
our [Sample](https://github.com/canopas/compose-recyclerview/tree/master/sample-app) app.

## Bugs and Feedback

For bugs, questions and discussions please use
the [Github Issues](https://github.com/canopas/compose-recyclerview/issues)

## Credits

**ComposeRecyclerView** is owned and maintained by the [Canopas team](https://canopas.com/). You can follow them on X at [@canopassoftware](https://x.com/canopassoftware) for project updates and releases. If you are interested in building apps or designing products, please let us know. We'd love to hear from you!

## Acknowledgments

**Jetpack Compose Interop Article:** We express our appreciation to the [Jetpack Compose Interop Article](https://medium.com/androiddevelopers/jetpack-compose-interop-using-compose-in-a-recyclerview-569c7ec7a583) on Medium
by Chris Arriola. This article provided valuable insights and guidance on supporting Jetpack Compose in RecyclerView, helping us understand the intricacies of integration and contributing to the realization of our own ideas.

# Licence

```
Copyright 2023 Canopas Software LLP

Licensed under the Apache License, Version 2.0 (the "License");
You won't be using this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```