Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat / Display username of reaction maker in ViewReaction BottomSheet #111

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,9 @@ fun CustomBottomSheet (
items(reactionList.itemCount) { index ->
reactionList[index]?.let {
val emojiDto = it.emojiDto
val reactedBy = it.createdBy
if (emojiDto != null){
EmojiCell(emoji = Emoji(emojiDto), displayMode = EmojiCellDisplay.VERTICAL) { selectedEmoji ->
ReactionEmojiCell(emoji = Emoji(emojiDto), reactedBy = reactedBy) { selectedEmoji ->
viewModel.currentEmoji = selectedEmoji
navController.navigate(NavigationDestination.PlayEmojiVideo)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
package com.goliath.emojihub.views.components

import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Card
import androidx.compose.material.Icon
import androidx.compose.material.Text
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.SaveAlt
import androidx.compose.material3.Divider
import androidx.compose.material3.IconButton
import androidx.compose.runtime.Composable
import androidx.compose.runtime.collectAsState
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.alpha
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.layout.ContentScale
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import androidx.hilt.navigation.compose.hiltViewModel
import coil.compose.rememberAsyncImagePainter
import com.goliath.emojihub.extensions.toEmoji
import com.goliath.emojihub.models.Emoji
import com.goliath.emojihub.viewmodels.UserViewModel


@Composable
fun ReactionEmojiCell (
emoji: Emoji,
reactedBy: String,
onSelected: (Emoji) -> Unit
) {
val thumbnailLink = emoji.thumbnailLink.takeIf{ it.isNotEmpty()} ?:"https://i.pinimg.com/236x/4b/05/0c/4b050ca4fcf588eedc58aa6135f5eecf.jpg"

val userViewModel = hiltViewModel<UserViewModel>()
val currentUser = userViewModel.userState.collectAsState().value

val textModifier = if (currentUser?.name == reactedBy) {
Modifier
.background(color = com.goliath.emojihub.ui.theme.Color.EmojiHubYellow, shape = RoundedCornerShape(10.dp))
.padding(4.dp)
} else {
Modifier
}

Column {
Card (
modifier = Modifier
.fillMaxWidth()
.height(292.dp)
.clickable { onSelected(emoji) },
shape = RoundedCornerShape(4.dp),
elevation = 0.dp
) {
Box(
Modifier
.fillMaxSize()
.background(Color.Gray)
.alpha(0.25F))

Image(
painter = rememberAsyncImagePainter(thumbnailLink),
contentDescription = null,
modifier = Modifier.fillMaxWidth(),
contentScale = ContentScale.Crop
)

Box(modifier = Modifier.padding(8.dp)) {
Text(
text = "@" + emoji.createdBy,
modifier = Modifier.align(Alignment.TopStart),
fontSize = 12.sp,
color = com.goliath.emojihub.ui.theme.Color.White
)

Row(
modifier = Modifier.align(Alignment.BottomStart),
verticalAlignment = Alignment.CenterVertically
) {
IconButton(
modifier = Modifier.size(16.dp),
onClick = {}
) {
Icon(
imageVector = Icons.Filled.SaveAlt,
contentDescription = "",
tint = com.goliath.emojihub.ui.theme.Color.White
)
}

Text(
text = emoji.savedCount.toString(),
modifier = Modifier.padding(start = 4.dp),
fontSize = 12.sp,
color = com.goliath.emojihub.ui.theme.Color.White
)
}
}

Box(contentAlignment = Alignment.Center) {
Text(
text = emoji.unicode.toEmoji(),
fontSize = 44.sp
)
}
}
if (currentUser != null) {
Text(
text = "@$reactedBy",
modifier = textModifier.align(Alignment.Start),
fontSize = 12.sp,
color = com.goliath.emojihub.ui.theme.Color.Black
)
Spacer(modifier = Modifier.height(16.dp))
}
}
}