|
|
|
@ -2,101 +2,83 @@ package com.example.what_the_fantasy.ui.screens
|
|
|
|
|
|
|
|
|
|
import androidx.compose.foundation.background
|
|
|
|
|
import androidx.compose.foundation.clickable
|
|
|
|
|
import androidx.compose.foundation.layout.Arrangement
|
|
|
|
|
import androidx.compose.foundation.layout.Box
|
|
|
|
|
import androidx.compose.foundation.layout.Column
|
|
|
|
|
import androidx.compose.foundation.layout.IntrinsicSize
|
|
|
|
|
import androidx.compose.foundation.layout.Row
|
|
|
|
|
import androidx.compose.foundation.layout.fillMaxHeight
|
|
|
|
|
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.layout.width
|
|
|
|
|
import androidx.compose.foundation.layout.*
|
|
|
|
|
import androidx.compose.foundation.lazy.LazyColumn
|
|
|
|
|
import androidx.compose.foundation.lazy.items
|
|
|
|
|
import androidx.compose.foundation.lazy.rememberLazyListState
|
|
|
|
|
import androidx.compose.foundation.selection.selectable
|
|
|
|
|
import androidx.compose.foundation.shape.CircleShape
|
|
|
|
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
|
|
|
|
import androidx.compose.foundation.text.KeyboardOptions
|
|
|
|
|
import androidx.compose.material.icons.Icons
|
|
|
|
|
import androidx.compose.material.icons.rounded.Search
|
|
|
|
|
import androidx.compose.material3.Button
|
|
|
|
|
import androidx.compose.material3.CircularProgressIndicator
|
|
|
|
|
import androidx.compose.material3.Icon
|
|
|
|
|
import androidx.compose.material3.IconButton
|
|
|
|
|
import androidx.compose.material3.MaterialTheme
|
|
|
|
|
import androidx.compose.material3.OutlinedTextField
|
|
|
|
|
import androidx.compose.material3.RadioButton
|
|
|
|
|
import androidx.compose.material3.SearchBar
|
|
|
|
|
import androidx.compose.material3.Text
|
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
|
import androidx.compose.runtime.LaunchedEffect
|
|
|
|
|
import androidx.compose.runtime.getValue
|
|
|
|
|
import androidx.compose.runtime.mutableStateOf
|
|
|
|
|
import androidx.compose.runtime.remember
|
|
|
|
|
import androidx.compose.runtime.setValue
|
|
|
|
|
import androidx.compose.material3.*
|
|
|
|
|
import androidx.compose.runtime.*
|
|
|
|
|
import androidx.compose.ui.Alignment
|
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
|
import androidx.compose.ui.draw.clip
|
|
|
|
|
import androidx.compose.ui.graphics.Color
|
|
|
|
|
import androidx.compose.ui.input.pointer.motionEventSpy
|
|
|
|
|
import androidx.compose.ui.res.stringResource
|
|
|
|
|
import androidx.compose.ui.semantics.Role
|
|
|
|
|
import androidx.compose.ui.text.TextStyle
|
|
|
|
|
import androidx.compose.ui.text.input.KeyboardType
|
|
|
|
|
import androidx.compose.ui.text.input.TextFieldValue
|
|
|
|
|
import androidx.compose.ui.text.style.TextAlign
|
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
|
import androidx.compose.ui.unit.sp
|
|
|
|
|
import com.example.what_the_fantasy.R
|
|
|
|
|
import com.example.what_the_fantasy.data.local.DailyQuoteStub
|
|
|
|
|
import com.example.what_the_fantasy.data.local.QuoteStub
|
|
|
|
|
import com.example.what_the_fantasy.data.model.SrcType
|
|
|
|
|
import com.example.what_the_fantasy.data.model.Quote
|
|
|
|
|
import com.example.what_the_fantasy.data.services.IServices
|
|
|
|
|
import com.example.what_the_fantasy.data.services.ServicesStub
|
|
|
|
|
import com.example.what_the_fantasy.ui.components.NavBar
|
|
|
|
|
import com.example.what_the_fantasy.ui.components.QuoteLittle
|
|
|
|
|
import com.example.what_the_fantasy.ui.theme.colorBackground
|
|
|
|
|
import com.example.what_the_fantasy.ui.theme.colorNavBar
|
|
|
|
|
import kotlinx.coroutines.delay
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
fun SearchPage(
|
|
|
|
|
navFavorite: () -> Unit,
|
|
|
|
|
navAccueil: () -> Unit,
|
|
|
|
|
navProfil:() -> Unit,
|
|
|
|
|
navProfil: () -> Unit,
|
|
|
|
|
navQuiz: () -> Unit,
|
|
|
|
|
navQuote: (Int) -> Unit,
|
|
|
|
|
navSearch: (String,String) -> Unit,
|
|
|
|
|
navSearch: (String, String) -> Unit,
|
|
|
|
|
services: IServices,
|
|
|
|
|
|
|
|
|
|
type : String,
|
|
|
|
|
search:String
|
|
|
|
|
) {
|
|
|
|
|
var itemCount by remember { mutableStateOf(15) }
|
|
|
|
|
val quotes = services.search(type,search,itemCount)
|
|
|
|
|
|
|
|
|
|
type: String,
|
|
|
|
|
search: String
|
|
|
|
|
) {
|
|
|
|
|
var newSearch by remember { mutableStateOf(search) }
|
|
|
|
|
val filtre = listOf("contenue","personnage","titre")
|
|
|
|
|
val filtre = listOf("contenue", "personnage", "titre")
|
|
|
|
|
val (newFiltre, onFiltreSelected) = remember { mutableStateOf(type) }
|
|
|
|
|
|
|
|
|
|
val page = remember { mutableStateOf(1) }
|
|
|
|
|
val quotes = remember { mutableStateListOf<Quote>() }
|
|
|
|
|
val isLoading = remember { mutableStateOf(false) }
|
|
|
|
|
val state = rememberLazyListState()
|
|
|
|
|
|
|
|
|
|
LaunchedEffect(page.value, type, search) {
|
|
|
|
|
if (!isLoading.value) {
|
|
|
|
|
isLoading.value = true
|
|
|
|
|
delay(500)
|
|
|
|
|
val newQuotes = services.search(type, search, page.value * 15)
|
|
|
|
|
val uniqueQuotes = newQuotes.filterNot { new -> quotes.any { it.id == new.id } }
|
|
|
|
|
if (uniqueQuotes.isNotEmpty()) {
|
|
|
|
|
quotes.addAll(uniqueQuotes)
|
|
|
|
|
}
|
|
|
|
|
isLoading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NavBar(
|
|
|
|
|
onAccueil = true,
|
|
|
|
|
navControllerFavorite = navFavorite,
|
|
|
|
|
navControllerAccueil = navAccueil,
|
|
|
|
|
navControllerProfil = navProfil,
|
|
|
|
|
navControllerQuiz = navQuiz,
|
|
|
|
|
navControllerSearch = {navSearch("contenue","")}
|
|
|
|
|
navControllerSearch = { navSearch("contenue", "") }
|
|
|
|
|
) {
|
|
|
|
|
Column(
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
.fillMaxSize()
|
|
|
|
|
.background(MaterialTheme.colorScheme.background)
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
|
|
Text(
|
|
|
|
|
text = "▶ "+stringResource(R.string.TitleSearch)+" ◀",
|
|
|
|
|
text = "▶ " + stringResource(R.string.TitleSearch) + " ◀",
|
|
|
|
|
color = MaterialTheme.colorScheme.onBackground,
|
|
|
|
|
fontSize = 24.sp,
|
|
|
|
|
modifier = Modifier
|
|
|
|
@ -104,8 +86,7 @@ fun SearchPage(
|
|
|
|
|
.padding(16.dp),
|
|
|
|
|
textAlign = TextAlign.Center
|
|
|
|
|
)
|
|
|
|
|
Column (horizontalAlignment = Alignment.CenterHorizontally
|
|
|
|
|
){
|
|
|
|
|
Column(horizontalAlignment = Alignment.CenterHorizontally) {
|
|
|
|
|
OutlinedTextField(
|
|
|
|
|
value = newSearch,
|
|
|
|
|
onValueChange = { newSearch = it },
|
|
|
|
@ -116,41 +97,43 @@ fun SearchPage(
|
|
|
|
|
.height(50.dp),
|
|
|
|
|
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Text),
|
|
|
|
|
maxLines = 1,
|
|
|
|
|
shape = CircleShape, // Bords arrondis
|
|
|
|
|
shape = CircleShape,
|
|
|
|
|
trailingIcon = {
|
|
|
|
|
IconButton(onClick = { navSearch(newFiltre, newSearch) } ,
|
|
|
|
|
IconButton(
|
|
|
|
|
onClick = { navSearch(newFiltre, newSearch) },
|
|
|
|
|
modifier = Modifier
|
|
|
|
|
.size(50.dp)
|
|
|
|
|
.clip(CircleShape)
|
|
|
|
|
) {
|
|
|
|
|
Icon(Icons.Rounded.Search,
|
|
|
|
|
Icon(
|
|
|
|
|
Icons.Rounded.Search,
|
|
|
|
|
contentDescription = stringResource(R.string.TitleSearch),
|
|
|
|
|
Modifier
|
|
|
|
|
.fillMaxSize()
|
|
|
|
|
.background(MaterialTheme.colorScheme.primary,CircleShape)
|
|
|
|
|
.background(MaterialTheme.colorScheme.primary, CircleShape)
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
Row(horizontalArrangement = Arrangement.SpaceAround) {
|
|
|
|
|
filtre.forEach{ type ->
|
|
|
|
|
filtre.forEach { typeItem ->
|
|
|
|
|
Row(
|
|
|
|
|
Modifier
|
|
|
|
|
.height(56.dp)
|
|
|
|
|
.selectable(
|
|
|
|
|
selected = (type == newFiltre),
|
|
|
|
|
onClick = { onFiltreSelected(type) },
|
|
|
|
|
selected = (typeItem == newFiltre),
|
|
|
|
|
onClick = { onFiltreSelected(typeItem) },
|
|
|
|
|
role = Role.RadioButton
|
|
|
|
|
)
|
|
|
|
|
.padding(horizontal = 16.dp),
|
|
|
|
|
verticalAlignment = Alignment.CenterVertically
|
|
|
|
|
) {
|
|
|
|
|
RadioButton(
|
|
|
|
|
selected = (type == newFiltre),
|
|
|
|
|
onClick = null // null recommended for accessibility with screen readers
|
|
|
|
|
selected = (typeItem == newFiltre),
|
|
|
|
|
onClick = null
|
|
|
|
|
)
|
|
|
|
|
Text(
|
|
|
|
|
text = type,
|
|
|
|
|
text = typeItem,
|
|
|
|
|
style = MaterialTheme.typography.bodyLarge,
|
|
|
|
|
modifier = Modifier.padding(start = 16.dp),
|
|
|
|
|
color = MaterialTheme.colorScheme.onBackground
|
|
|
|
@ -159,17 +142,19 @@ fun SearchPage(
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
LazyColumn(modifier = Modifier.weight(1f)) {
|
|
|
|
|
items(quotes) { quote ->
|
|
|
|
|
Column(Modifier.clickable {navQuote(quote.id)}
|
|
|
|
|
LazyColumn(
|
|
|
|
|
modifier = Modifier.weight(1f),
|
|
|
|
|
state = state
|
|
|
|
|
) {
|
|
|
|
|
items(quotes) { quote ->
|
|
|
|
|
Column(Modifier.clickable { navQuote(quote.id) }) {
|
|
|
|
|
QuoteLittle(quote)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (itemCount < quotes.size) {
|
|
|
|
|
item {
|
|
|
|
|
LaunchedEffect(itemCount) {
|
|
|
|
|
itemCount += 15
|
|
|
|
|
if (state.layoutInfo.visibleItemsInfo.lastOrNull()?.index == quotes.size - 1 && !isLoading.value) {
|
|
|
|
|
LaunchedEffect(Unit) {
|
|
|
|
|
page.value++
|
|
|
|
|
}
|
|
|
|
|
Box(
|
|
|
|
|
modifier = Modifier
|
|
|
|
|