Initial commit.
							
								
								
									
										26
									
								
								app/src/main/AndroidManifest.xml
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,26 @@
 | 
			
		|||
<?xml version="1.0" encoding="utf-8"?>
 | 
			
		||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | 
			
		||||
    package="com.pixelized.biblib">
 | 
			
		||||
 | 
			
		||||
    <uses-permission android:name="android.permission.INTERNET" />
 | 
			
		||||
 | 
			
		||||
    <application
 | 
			
		||||
        android:allowBackup="true"
 | 
			
		||||
        android:icon="@mipmap/ic_launcher"
 | 
			
		||||
        android:label="@string/app_name"
 | 
			
		||||
        android:roundIcon="@mipmap/ic_launcher_round"
 | 
			
		||||
        android:supportsRtl="true"
 | 
			
		||||
        android:theme="@style/Theme.MaterialComponents.DayNight.NoActionBar">
 | 
			
		||||
        <activity
 | 
			
		||||
            android:name=".ui.MainActivity"
 | 
			
		||||
            android:exported="true"
 | 
			
		||||
            android:label="@string/app_name">
 | 
			
		||||
            <intent-filter>
 | 
			
		||||
                <action android:name="android.intent.action.MAIN" />
 | 
			
		||||
 | 
			
		||||
                <category android:name="android.intent.category.LAUNCHER" />
 | 
			
		||||
            </intent-filter>
 | 
			
		||||
        </activity>
 | 
			
		||||
    </application>
 | 
			
		||||
 | 
			
		||||
</manifest>
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,15 @@
 | 
			
		|||
package com.pixelized.biblib.data.ui
 | 
			
		||||
 | 
			
		||||
import com.pixelized.biblib.utils.Constant.THUMBNAIL_URL
 | 
			
		||||
import java.net.URL
 | 
			
		||||
 | 
			
		||||
data class BookThumbnailUio(
 | 
			
		||||
    val id: Int,
 | 
			
		||||
    val genre: String,
 | 
			
		||||
    val title: String,
 | 
			
		||||
    val author: String,
 | 
			
		||||
    val date: String,
 | 
			
		||||
    val series: String?
 | 
			
		||||
) {
 | 
			
		||||
    val cover: URL = URL("${THUMBNAIL_URL}/$id.jpg")
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										18
									
								
								app/src/main/java/com/pixelized/biblib/data/ui/BookUio.kt
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,18 @@
 | 
			
		|||
package com.pixelized.biblib.data.ui
 | 
			
		||||
 | 
			
		||||
import com.pixelized.biblib.utils.Constant
 | 
			
		||||
import java.net.URL
 | 
			
		||||
 | 
			
		||||
data class BookUio(
 | 
			
		||||
    val id: Int,
 | 
			
		||||
    val title: String,
 | 
			
		||||
    val author: String,
 | 
			
		||||
    val genre: String,
 | 
			
		||||
    val rating: Float,
 | 
			
		||||
    val language: String,
 | 
			
		||||
    val date: String,
 | 
			
		||||
    val series: String?,
 | 
			
		||||
    val description: String,
 | 
			
		||||
) {
 | 
			
		||||
    val cover: URL = URL("${Constant.COVER_URL}/$id.jpg")
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										54
									
								
								app/src/main/java/com/pixelized/biblib/ui/MainActivity.kt
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,54 @@
 | 
			
		|||
package com.pixelized.biblib.ui
 | 
			
		||||
 | 
			
		||||
import android.os.Bundle
 | 
			
		||||
import androidx.activity.ComponentActivity
 | 
			
		||||
import androidx.activity.compose.setContent
 | 
			
		||||
import androidx.activity.viewModels
 | 
			
		||||
import androidx.compose.animation.Crossfade
 | 
			
		||||
import androidx.compose.animation.core.tween
 | 
			
		||||
import androidx.compose.material.MaterialTheme
 | 
			
		||||
import androidx.compose.material.Surface
 | 
			
		||||
import androidx.compose.runtime.Composable
 | 
			
		||||
import androidx.compose.runtime.getValue
 | 
			
		||||
import androidx.compose.runtime.livedata.observeAsState
 | 
			
		||||
import com.pixelized.biblib.ui.theme.BibLibTheme
 | 
			
		||||
import com.pixelized.biblib.ui.viewmodel.NavigationViewModel
 | 
			
		||||
import com.pixelized.biblib.ui.viewmodel.NavigationViewModel.Screen
 | 
			
		||||
import com.pixelized.biblib.ui.composable.screen.SplashScreenComposable
 | 
			
		||||
import com.pixelized.biblib.ui.composable.screen.MainScreenComposable
 | 
			
		||||
import com.pixelized.biblib.utils.BitmapCache
 | 
			
		||||
 | 
			
		||||
class MainActivity : ComponentActivity() {
 | 
			
		||||
    private val navigationViewModel: NavigationViewModel by viewModels()
 | 
			
		||||
 | 
			
		||||
    override fun onCreate(savedInstanceState: Bundle?) {
 | 
			
		||||
        super.onCreate(savedInstanceState)
 | 
			
		||||
 | 
			
		||||
        BitmapCache.init(this)
 | 
			
		||||
 | 
			
		||||
        setContent {
 | 
			
		||||
            BibLibTheme {
 | 
			
		||||
                ContentComposable(navigationViewModel)
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    override fun onBackPressed() {
 | 
			
		||||
        if (navigationViewModel.navigateBack().not()) {
 | 
			
		||||
            super.onBackPressed()
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@Composable
 | 
			
		||||
fun ContentComposable(navigationViewModel: NavigationViewModel) {
 | 
			
		||||
    val main by navigationViewModel.screen.observeAsState()
 | 
			
		||||
 | 
			
		||||
    Crossfade(targetState = main, animationSpec = tween(1000)) {
 | 
			
		||||
        when (it) {
 | 
			
		||||
            is Screen.SplashScreen -> SplashScreenComposable(navigationViewModel)
 | 
			
		||||
            is Screen.MainScreen -> MainScreenComposable(navigationViewModel)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,122 @@
 | 
			
		|||
package com.pixelized.biblib.ui.composable.items
 | 
			
		||||
 | 
			
		||||
import androidx.compose.foundation.clickable
 | 
			
		||||
import androidx.compose.foundation.layout.*
 | 
			
		||||
import androidx.compose.material.Card
 | 
			
		||||
import androidx.compose.material.Icon
 | 
			
		||||
import androidx.compose.material.MaterialTheme
 | 
			
		||||
import androidx.compose.material.Text
 | 
			
		||||
import androidx.compose.material.icons.Icons
 | 
			
		||||
import androidx.compose.material.icons.filled.NavigateNext
 | 
			
		||||
import androidx.compose.runtime.Composable
 | 
			
		||||
import androidx.compose.runtime.getValue
 | 
			
		||||
import androidx.compose.runtime.remember
 | 
			
		||||
import androidx.compose.ui.Alignment
 | 
			
		||||
import androidx.compose.ui.Modifier
 | 
			
		||||
import androidx.compose.ui.graphics.ColorFilter
 | 
			
		||||
import androidx.compose.ui.res.painterResource
 | 
			
		||||
import androidx.compose.ui.text.style.TextOverflow
 | 
			
		||||
import androidx.compose.ui.tooling.preview.Preview
 | 
			
		||||
import androidx.compose.ui.unit.dp
 | 
			
		||||
import com.pixelized.biblib.R
 | 
			
		||||
import com.pixelized.biblib.data.ui.BookThumbnailUio
 | 
			
		||||
import com.pixelized.biblib.ui.theme.BibLibTheme
 | 
			
		||||
import com.pixelized.biblib.ui.theme.Teal200
 | 
			
		||||
import com.pixelized.biblib.utils.extention.toImage
 | 
			
		||||
import com.pixelized.biblib.utils.mock.BookThumbnailMock
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@Preview
 | 
			
		||||
@Composable
 | 
			
		||||
fun BookThumbnailComposablePreview() {
 | 
			
		||||
    val mock = BookThumbnailMock()
 | 
			
		||||
    BibLibTheme {
 | 
			
		||||
        BookThumbnailComposable(thumbnail = mock.bookThumbnail)
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@Preview
 | 
			
		||||
@Composable
 | 
			
		||||
fun BookThumbnailComposablePreviewDark() {
 | 
			
		||||
    val mock = BookThumbnailMock()
 | 
			
		||||
    BibLibTheme(darkTheme = true) {
 | 
			
		||||
        BookThumbnailComposable(thumbnail = mock.bookThumbnail)
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@Composable
 | 
			
		||||
fun BookThumbnailComposable(
 | 
			
		||||
    thumbnail: BookThumbnailUio,
 | 
			
		||||
    modifier: Modifier = Modifier,
 | 
			
		||||
    onClick: ((BookThumbnailUio) -> Unit)? = null,
 | 
			
		||||
) {
 | 
			
		||||
    val typography = MaterialTheme.typography
 | 
			
		||||
    Card(
 | 
			
		||||
        modifier = modifier.clickable {
 | 
			
		||||
            onClick?.invoke(thumbnail)
 | 
			
		||||
        },
 | 
			
		||||
    ) {
 | 
			
		||||
        Row(
 | 
			
		||||
            verticalAlignment = Alignment.CenterVertically
 | 
			
		||||
        ) {
 | 
			
		||||
            Image(
 | 
			
		||||
                modifier = Modifier
 | 
			
		||||
                    .width(60.dp)
 | 
			
		||||
                    .height(96.dp),
 | 
			
		||||
                placeHolder = painterResource(id = R.drawable.ic_launcher_foreground),
 | 
			
		||||
                contentUrl = thumbnail.cover,
 | 
			
		||||
                colorFilter = if (MaterialTheme.colors.isLight) ColorFilter.tint(Teal200) else null,
 | 
			
		||||
                contentDescription = thumbnail.title
 | 
			
		||||
            )
 | 
			
		||||
            Column(
 | 
			
		||||
                modifier = Modifier
 | 
			
		||||
                    .weight(1f)
 | 
			
		||||
                    .padding(8.dp)
 | 
			
		||||
            ) {
 | 
			
		||||
                Text(
 | 
			
		||||
                    style = typography.h6,
 | 
			
		||||
                    text = thumbnail.title,
 | 
			
		||||
                    overflow = TextOverflow.Ellipsis,
 | 
			
		||||
                    softWrap = false,
 | 
			
		||||
                )
 | 
			
		||||
                Text(
 | 
			
		||||
                    style = typography.body1,
 | 
			
		||||
                    text = thumbnail.author,
 | 
			
		||||
                    overflow = TextOverflow.Ellipsis,
 | 
			
		||||
                    softWrap = false,
 | 
			
		||||
                )
 | 
			
		||||
                Spacer(modifier = Modifier.height(8.dp))
 | 
			
		||||
                Row {
 | 
			
		||||
                    Text(
 | 
			
		||||
                        style = typography.caption,
 | 
			
		||||
                        text = thumbnail.genre,
 | 
			
		||||
                        overflow = TextOverflow.Ellipsis,
 | 
			
		||||
                        softWrap = false,
 | 
			
		||||
                    )
 | 
			
		||||
                    Spacer(modifier = Modifier.width(4.dp))
 | 
			
		||||
                    Text(
 | 
			
		||||
                        style = typography.caption,
 | 
			
		||||
                        text = thumbnail.series ?: "",
 | 
			
		||||
                        overflow = TextOverflow.Ellipsis,
 | 
			
		||||
                        softWrap = false,
 | 
			
		||||
                    )
 | 
			
		||||
                    Spacer(
 | 
			
		||||
                        modifier = Modifier
 | 
			
		||||
                            .width(0.dp)
 | 
			
		||||
                            .weight(1f)
 | 
			
		||||
                    )
 | 
			
		||||
                    Text(
 | 
			
		||||
                        style = typography.caption,
 | 
			
		||||
                        text = thumbnail.date,
 | 
			
		||||
                        overflow = TextOverflow.Ellipsis,
 | 
			
		||||
                        softWrap = false,
 | 
			
		||||
                    )
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            Icon(
 | 
			
		||||
                modifier = Modifier.align(Alignment.CenterVertically),
 | 
			
		||||
                imageVector = Icons.Default.NavigateNext, contentDescription = "navigate"
 | 
			
		||||
            )
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,54 @@
 | 
			
		|||
package com.pixelized.biblib.ui.composable.items
 | 
			
		||||
 | 
			
		||||
import androidx.compose.animation.Crossfade
 | 
			
		||||
import androidx.compose.animation.core.MutableTransitionState
 | 
			
		||||
import androidx.compose.runtime.Composable
 | 
			
		||||
import androidx.compose.runtime.getValue
 | 
			
		||||
import androidx.compose.runtime.mutableStateOf
 | 
			
		||||
import androidx.compose.runtime.remember
 | 
			
		||||
import androidx.compose.ui.Alignment
 | 
			
		||||
import androidx.compose.ui.Modifier
 | 
			
		||||
import androidx.compose.ui.graphics.ColorFilter
 | 
			
		||||
import androidx.compose.ui.graphics.DefaultAlpha
 | 
			
		||||
import androidx.compose.ui.graphics.painter.Painter
 | 
			
		||||
import androidx.compose.ui.layout.ContentScale
 | 
			
		||||
import com.pixelized.biblib.utils.extention.toImage
 | 
			
		||||
import java.net.URL
 | 
			
		||||
 | 
			
		||||
@Composable
 | 
			
		||||
fun Image(
 | 
			
		||||
    placeHolder: Painter,
 | 
			
		||||
    contentUrl: URL,
 | 
			
		||||
    contentDescription: String?,
 | 
			
		||||
    modifier: Modifier = Modifier,
 | 
			
		||||
    alignment: Alignment = Alignment.Center,
 | 
			
		||||
    contentScale: ContentScale = ContentScale.Fit,
 | 
			
		||||
    alpha: Float = DefaultAlpha,
 | 
			
		||||
    colorFilter: ColorFilter? = null
 | 
			
		||||
) {
 | 
			
		||||
    val cover by remember { contentUrl.toImage(placeHolder) }
 | 
			
		||||
 | 
			
		||||
    Crossfade(targetState = cover) {
 | 
			
		||||
        if (it == placeHolder) {
 | 
			
		||||
            androidx.compose.foundation.Image(
 | 
			
		||||
                painter = placeHolder,
 | 
			
		||||
                contentDescription = contentDescription,
 | 
			
		||||
                modifier = modifier,
 | 
			
		||||
                alignment = alignment,
 | 
			
		||||
                contentScale = contentScale,
 | 
			
		||||
                alpha = alpha,
 | 
			
		||||
                colorFilter = colorFilter,
 | 
			
		||||
            )
 | 
			
		||||
        } else {
 | 
			
		||||
            androidx.compose.foundation.Image(
 | 
			
		||||
                painter = cover,
 | 
			
		||||
                contentDescription = contentDescription,
 | 
			
		||||
                modifier = modifier,
 | 
			
		||||
                alignment = alignment,
 | 
			
		||||
                contentScale = contentScale,
 | 
			
		||||
                alpha = alpha,
 | 
			
		||||
                colorFilter = colorFilter,
 | 
			
		||||
            )
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,149 @@
 | 
			
		|||
package com.pixelized.biblib.ui.composable.pages
 | 
			
		||||
 | 
			
		||||
import androidx.compose.foundation.layout.*
 | 
			
		||||
import androidx.compose.foundation.rememberScrollState
 | 
			
		||||
import androidx.compose.foundation.verticalScroll
 | 
			
		||||
import androidx.compose.material.Button
 | 
			
		||||
import androidx.compose.material.ButtonDefaults
 | 
			
		||||
import androidx.compose.material.MaterialTheme
 | 
			
		||||
import androidx.compose.material.Text
 | 
			
		||||
import androidx.compose.runtime.Composable
 | 
			
		||||
import androidx.compose.ui.Alignment
 | 
			
		||||
import androidx.compose.ui.Modifier
 | 
			
		||||
import androidx.compose.ui.graphics.Color
 | 
			
		||||
import androidx.compose.ui.graphics.ColorFilter
 | 
			
		||||
import androidx.compose.ui.layout.ContentScale
 | 
			
		||||
import androidx.compose.ui.res.painterResource
 | 
			
		||||
import androidx.compose.ui.res.stringResource
 | 
			
		||||
import androidx.compose.ui.tooling.preview.Preview
 | 
			
		||||
import androidx.compose.ui.unit.dp
 | 
			
		||||
import com.pixelized.biblib.R
 | 
			
		||||
import com.pixelized.biblib.data.ui.BookUio
 | 
			
		||||
import com.pixelized.biblib.ui.composable.items.Image
 | 
			
		||||
import com.pixelized.biblib.ui.theme.BibLibTheme
 | 
			
		||||
import com.pixelized.biblib.ui.theme.Teal200
 | 
			
		||||
import com.pixelized.biblib.utils.mock.BookMock
 | 
			
		||||
 | 
			
		||||
@Preview
 | 
			
		||||
@Composable
 | 
			
		||||
fun DetailPageComposablePreview() {
 | 
			
		||||
    BibLibTheme {
 | 
			
		||||
        val mock = BookMock()
 | 
			
		||||
        DetailPageComposable(mock.book)
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@Composable
 | 
			
		||||
fun DetailPageComposable(book: BookUio) {
 | 
			
		||||
    val typography = MaterialTheme.typography
 | 
			
		||||
 | 
			
		||||
    Column(
 | 
			
		||||
        modifier = Modifier
 | 
			
		||||
            .fillMaxHeight()
 | 
			
		||||
            .verticalScroll(rememberScrollState())
 | 
			
		||||
            .padding(horizontal = 16.dp)
 | 
			
		||||
    ) {
 | 
			
		||||
        Image(
 | 
			
		||||
            modifier = Modifier
 | 
			
		||||
                .fillMaxWidth()
 | 
			
		||||
                .wrapContentHeight()
 | 
			
		||||
                .padding(vertical = 16.dp),
 | 
			
		||||
            contentScale = ContentScale.FillWidth,
 | 
			
		||||
            placeHolder = painterResource(id = R.drawable.ic_launcher_foreground),
 | 
			
		||||
            contentUrl = book.cover,
 | 
			
		||||
            colorFilter = if (MaterialTheme.colors.isLight) ColorFilter.tint(Teal200) else null,
 | 
			
		||||
            contentDescription = book.title
 | 
			
		||||
        )
 | 
			
		||||
        Row(modifier = Modifier.padding(bottom = 16.dp)) {
 | 
			
		||||
            Button(
 | 
			
		||||
                modifier = Modifier.weight(1f),
 | 
			
		||||
                colors = ButtonDefaults.textButtonColors(
 | 
			
		||||
                    backgroundColor = Teal200,
 | 
			
		||||
                    contentColor = Color.Black,
 | 
			
		||||
                ),
 | 
			
		||||
                onClick = { }) {
 | 
			
		||||
                Text(text = "EPUB")
 | 
			
		||||
            }
 | 
			
		||||
            Button(
 | 
			
		||||
                modifier = Modifier
 | 
			
		||||
                    .weight(1f)
 | 
			
		||||
                    .padding(horizontal = 8.dp),
 | 
			
		||||
                colors = ButtonDefaults.textButtonColors(
 | 
			
		||||
                    backgroundColor = Teal200,
 | 
			
		||||
                    contentColor = Color.Black,
 | 
			
		||||
                ),
 | 
			
		||||
                onClick = { }) {
 | 
			
		||||
                Text(text = "MOBI")
 | 
			
		||||
            }
 | 
			
		||||
            Button(
 | 
			
		||||
                modifier = Modifier.weight(1f),
 | 
			
		||||
                colors = ButtonDefaults.textButtonColors(
 | 
			
		||||
                    backgroundColor = Teal200,
 | 
			
		||||
                    contentColor = Color.Black,
 | 
			
		||||
                ),
 | 
			
		||||
                onClick = { }) {
 | 
			
		||||
                Text(text = "SEND")
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        Text(
 | 
			
		||||
            modifier = Modifier
 | 
			
		||||
                .align(alignment = Alignment.CenterHorizontally)
 | 
			
		||||
                .padding(bottom = 4.dp),
 | 
			
		||||
            style = typography.h5,
 | 
			
		||||
            text = book.title,
 | 
			
		||||
        )
 | 
			
		||||
        Text(
 | 
			
		||||
            modifier = Modifier
 | 
			
		||||
                .align(alignment = Alignment.CenterHorizontally)
 | 
			
		||||
                .padding(bottom = 16.dp),
 | 
			
		||||
            style = typography.h6,
 | 
			
		||||
            text = book.author,
 | 
			
		||||
        )
 | 
			
		||||
        Row(modifier = Modifier.padding(bottom = 16.dp)) {
 | 
			
		||||
            Column(
 | 
			
		||||
                modifier = Modifier.weight(1f),
 | 
			
		||||
                horizontalAlignment = Alignment.CenterHorizontally
 | 
			
		||||
            ) {
 | 
			
		||||
                Text(
 | 
			
		||||
                    style = typography.body2,
 | 
			
		||||
                    text = stringResource(id = R.string.detail_rating),
 | 
			
		||||
                )
 | 
			
		||||
                Text(
 | 
			
		||||
                    style = typography.body1,
 | 
			
		||||
                    text = book.rating.toString(),
 | 
			
		||||
                )
 | 
			
		||||
            }
 | 
			
		||||
            Column(
 | 
			
		||||
                modifier = Modifier.weight(1f),
 | 
			
		||||
                horizontalAlignment = Alignment.CenterHorizontally
 | 
			
		||||
            ) {
 | 
			
		||||
                Text(
 | 
			
		||||
                    style = typography.body2,
 | 
			
		||||
                    text = stringResource(id = R.string.detail_language),
 | 
			
		||||
                )
 | 
			
		||||
                Text(
 | 
			
		||||
                    style = typography.body1,
 | 
			
		||||
                    text = book.language,
 | 
			
		||||
                )
 | 
			
		||||
            }
 | 
			
		||||
            Column(
 | 
			
		||||
                modifier = Modifier.weight(1f),
 | 
			
		||||
                horizontalAlignment = Alignment.CenterHorizontally
 | 
			
		||||
            ) {
 | 
			
		||||
                Text(
 | 
			
		||||
                    style = typography.body2,
 | 
			
		||||
                    text = stringResource(id = R.string.detail_Release),
 | 
			
		||||
                )
 | 
			
		||||
                Text(
 | 
			
		||||
                    style = typography.body1,
 | 
			
		||||
                    text = book.date,
 | 
			
		||||
                )
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        Text(
 | 
			
		||||
            style = typography.body1,
 | 
			
		||||
            text = book.description,
 | 
			
		||||
            modifier = Modifier.padding(bottom = 16.dp)
 | 
			
		||||
        )
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,48 @@
 | 
			
		|||
package com.pixelized.biblib.ui.composable.pages
 | 
			
		||||
 | 
			
		||||
import androidx.compose.foundation.layout.Arrangement
 | 
			
		||||
import androidx.compose.foundation.layout.PaddingValues
 | 
			
		||||
import androidx.compose.foundation.layout.fillMaxWidth
 | 
			
		||||
import androidx.compose.foundation.layout.wrapContentHeight
 | 
			
		||||
import androidx.compose.foundation.lazy.LazyColumn
 | 
			
		||||
import androidx.compose.foundation.lazy.items
 | 
			
		||||
import androidx.compose.runtime.Composable
 | 
			
		||||
import androidx.compose.ui.Modifier
 | 
			
		||||
import androidx.compose.ui.tooling.preview.Preview
 | 
			
		||||
import androidx.compose.ui.unit.dp
 | 
			
		||||
import com.pixelized.biblib.ui.composable.items.BookThumbnailComposable
 | 
			
		||||
import com.pixelized.biblib.ui.theme.BibLibTheme
 | 
			
		||||
import com.pixelized.biblib.ui.viewmodel.NavigationViewModel
 | 
			
		||||
import com.pixelized.biblib.ui.viewmodel.NavigationViewModel.Page.Detail
 | 
			
		||||
import com.pixelized.biblib.utils.mock.BookMock
 | 
			
		||||
import com.pixelized.biblib.utils.mock.BookThumbnailMock
 | 
			
		||||
 | 
			
		||||
@Preview
 | 
			
		||||
@Composable
 | 
			
		||||
fun HomePageComposablePreview() {
 | 
			
		||||
    BibLibTheme {
 | 
			
		||||
        HomePageComposable(null)
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@Composable
 | 
			
		||||
fun HomePageComposable(navigationViewModel: NavigationViewModel?) {
 | 
			
		||||
    val mock = BookThumbnailMock()
 | 
			
		||||
    LazyColumn(
 | 
			
		||||
        contentPadding = PaddingValues(16.dp),
 | 
			
		||||
        verticalArrangement = Arrangement.spacedBy(16.dp),
 | 
			
		||||
    ) {
 | 
			
		||||
        items(mock.bookThumbnails) { thumbnail ->
 | 
			
		||||
            BookThumbnailComposable(
 | 
			
		||||
                thumbnail = thumbnail,
 | 
			
		||||
                modifier = Modifier
 | 
			
		||||
                    .fillMaxWidth()
 | 
			
		||||
                    .wrapContentHeight(),
 | 
			
		||||
            ) { item ->
 | 
			
		||||
                // TODO:
 | 
			
		||||
                val bookMock = BookMock().let { it.books[item.id] ?: it.book }
 | 
			
		||||
                navigationViewModel?.navigateTo(Detail(bookMock))
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,67 @@
 | 
			
		|||
package com.pixelized.biblib.ui.composable.screen
 | 
			
		||||
 | 
			
		||||
import androidx.compose.animation.Crossfade
 | 
			
		||||
import androidx.compose.animation.core.tween
 | 
			
		||||
import androidx.compose.material.*
 | 
			
		||||
import androidx.compose.material.icons.Icons
 | 
			
		||||
import androidx.compose.material.icons.sharp.ArrowBack
 | 
			
		||||
import androidx.compose.runtime.Composable
 | 
			
		||||
import androidx.compose.runtime.getValue
 | 
			
		||||
import androidx.compose.runtime.livedata.observeAsState
 | 
			
		||||
import androidx.compose.ui.res.stringResource
 | 
			
		||||
import androidx.compose.ui.tooling.preview.Preview
 | 
			
		||||
import com.pixelized.biblib.R
 | 
			
		||||
import com.pixelized.biblib.ui.composable.pages.DetailPageComposable
 | 
			
		||||
import com.pixelized.biblib.ui.composable.pages.HomePageComposable
 | 
			
		||||
import com.pixelized.biblib.ui.theme.BibLibTheme
 | 
			
		||||
import com.pixelized.biblib.ui.viewmodel.NavigationViewModel
 | 
			
		||||
 | 
			
		||||
@Preview
 | 
			
		||||
@Composable
 | 
			
		||||
fun MainScreenComposablePreview() {
 | 
			
		||||
    val viewModel = NavigationViewModel()
 | 
			
		||||
    BibLibTheme {
 | 
			
		||||
        MainScreenComposable(navigationViewModel = viewModel)
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@Composable
 | 
			
		||||
fun MainScreenComposable(navigationViewModel: NavigationViewModel) {
 | 
			
		||||
    val page by navigationViewModel.page.observeAsState()
 | 
			
		||||
 | 
			
		||||
    Scaffold(
 | 
			
		||||
        topBar = {
 | 
			
		||||
            TopAppBar(
 | 
			
		||||
                title = { Text(stringResource(id = R.string.app_name)) },
 | 
			
		||||
                navigationIcon = navigationIcon(navigationViewModel)
 | 
			
		||||
            )
 | 
			
		||||
        },
 | 
			
		||||
    ) {
 | 
			
		||||
        Crossfade(targetState = page, animationSpec = tween(1000)) {
 | 
			
		||||
            when (it) {
 | 
			
		||||
                is NavigationViewModel.Page.HomePage -> HomePageComposable(navigationViewModel)
 | 
			
		||||
                is NavigationViewModel.Page.Detail -> DetailPageComposable(it.book)
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@Composable
 | 
			
		||||
fun navigationIcon(navigationViewModel: NavigationViewModel): (@Composable () -> Unit)? {
 | 
			
		||||
    val page by navigationViewModel.page.observeAsState()
 | 
			
		||||
 | 
			
		||||
    return if (page !is NavigationViewModel.Page.HomePage) {
 | 
			
		||||
        {
 | 
			
		||||
            IconButton(onClick = {
 | 
			
		||||
                navigationViewModel.navigateBack()
 | 
			
		||||
            }) {
 | 
			
		||||
                Icon(
 | 
			
		||||
                    imageVector = Icons.Sharp.ArrowBack,
 | 
			
		||||
                    contentDescription = ""
 | 
			
		||||
                )
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    } else {
 | 
			
		||||
        null
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,39 @@
 | 
			
		|||
package com.pixelized.biblib.ui.composable.screen
 | 
			
		||||
 | 
			
		||||
import androidx.compose.foundation.layout.Box
 | 
			
		||||
import androidx.compose.foundation.layout.fillMaxHeight
 | 
			
		||||
import androidx.compose.foundation.layout.fillMaxWidth
 | 
			
		||||
import androidx.compose.material.MaterialTheme
 | 
			
		||||
import androidx.compose.material.Text
 | 
			
		||||
import androidx.compose.runtime.Composable
 | 
			
		||||
import androidx.compose.ui.Alignment
 | 
			
		||||
import androidx.compose.ui.Modifier
 | 
			
		||||
import androidx.compose.ui.tooling.preview.Preview
 | 
			
		||||
import com.pixelized.biblib.ui.theme.BibLibTheme
 | 
			
		||||
import com.pixelized.biblib.ui.viewmodel.NavigationViewModel
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@Preview
 | 
			
		||||
@Composable
 | 
			
		||||
fun SplashScreenComposablePreview() {
 | 
			
		||||
    val viewModel = NavigationViewModel()
 | 
			
		||||
    BibLibTheme {
 | 
			
		||||
        SplashScreenComposable(viewModel)
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@Composable
 | 
			
		||||
fun SplashScreenComposable(navigationViewModel: NavigationViewModel) {
 | 
			
		||||
    val typography = MaterialTheme.typography
 | 
			
		||||
    Box(
 | 
			
		||||
        modifier = Modifier
 | 
			
		||||
            .fillMaxHeight()
 | 
			
		||||
            .fillMaxWidth(),
 | 
			
		||||
        contentAlignment = Alignment.Center,
 | 
			
		||||
    ) {
 | 
			
		||||
        Text(
 | 
			
		||||
            style = typography.h4,
 | 
			
		||||
            text = "Welcome to BibLib"
 | 
			
		||||
        )
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										8
									
								
								app/src/main/java/com/pixelized/biblib/ui/theme/Color.kt
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,8 @@
 | 
			
		|||
package com.pixelized.biblib.ui.theme
 | 
			
		||||
 | 
			
		||||
import androidx.compose.ui.graphics.Color
 | 
			
		||||
 | 
			
		||||
val Purple200 = Color(0xFFBB86FC)
 | 
			
		||||
val Purple500 = Color(0xFF6200EE)
 | 
			
		||||
val Purple700 = Color(0xFF3700B3)
 | 
			
		||||
val Teal200 = Color(0xFF03DAC5)
 | 
			
		||||
							
								
								
									
										11
									
								
								app/src/main/java/com/pixelized/biblib/ui/theme/Shape.kt
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,11 @@
 | 
			
		|||
package com.pixelized.biblib.ui.theme
 | 
			
		||||
 | 
			
		||||
import androidx.compose.foundation.shape.RoundedCornerShape
 | 
			
		||||
import androidx.compose.material.Shapes
 | 
			
		||||
import androidx.compose.ui.unit.dp
 | 
			
		||||
 | 
			
		||||
val Shapes = Shapes(
 | 
			
		||||
    small = RoundedCornerShape(4.dp),
 | 
			
		||||
    medium = RoundedCornerShape(4.dp),
 | 
			
		||||
    large = RoundedCornerShape(0.dp)
 | 
			
		||||
)
 | 
			
		||||
							
								
								
									
										40
									
								
								app/src/main/java/com/pixelized/biblib/ui/theme/Theme.kt
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,40 @@
 | 
			
		|||
package com.pixelized.biblib.ui.theme
 | 
			
		||||
 | 
			
		||||
import androidx.compose.foundation.isSystemInDarkTheme
 | 
			
		||||
import androidx.compose.material.MaterialTheme
 | 
			
		||||
import androidx.compose.material.Surface
 | 
			
		||||
import androidx.compose.material.darkColors
 | 
			
		||||
import androidx.compose.material.lightColors
 | 
			
		||||
import androidx.compose.runtime.Composable
 | 
			
		||||
 | 
			
		||||
private val DarkColorPalette = darkColors(
 | 
			
		||||
    primary = Purple200,
 | 
			
		||||
    primaryVariant = Purple700,
 | 
			
		||||
    secondary = Teal200
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
private val LightColorPalette = lightColors(
 | 
			
		||||
    primary = Purple500,
 | 
			
		||||
    primaryVariant = Purple700,
 | 
			
		||||
    secondary = Teal200
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@Composable
 | 
			
		||||
fun BibLibTheme(darkTheme: Boolean = isSystemInDarkTheme(), content: @Composable () -> Unit) {
 | 
			
		||||
    val colors = if (darkTheme) {
 | 
			
		||||
        DarkColorPalette
 | 
			
		||||
    } else {
 | 
			
		||||
        LightColorPalette
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    MaterialTheme(
 | 
			
		||||
        colors = colors,
 | 
			
		||||
        typography = Typography,
 | 
			
		||||
        shapes = Shapes,
 | 
			
		||||
    ) {
 | 
			
		||||
        Surface(
 | 
			
		||||
            color = MaterialTheme.colors.background,
 | 
			
		||||
            content = content
 | 
			
		||||
        )
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										5
									
								
								app/src/main/java/com/pixelized/biblib/ui/theme/Type.kt
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,5 @@
 | 
			
		|||
package com.pixelized.biblib.ui.theme
 | 
			
		||||
 | 
			
		||||
import androidx.compose.material.Typography
 | 
			
		||||
 | 
			
		||||
val Typography = Typography()
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,61 @@
 | 
			
		|||
package com.pixelized.biblib.ui.viewmodel
 | 
			
		||||
 | 
			
		||||
import androidx.lifecycle.LiveData
 | 
			
		||||
import androidx.lifecycle.MutableLiveData
 | 
			
		||||
import androidx.lifecycle.ViewModel
 | 
			
		||||
import androidx.lifecycle.viewModelScope
 | 
			
		||||
import com.pixelized.biblib.data.ui.BookUio
 | 
			
		||||
import kotlinx.coroutines.delay
 | 
			
		||||
import kotlinx.coroutines.launch
 | 
			
		||||
import java.util.*
 | 
			
		||||
 | 
			
		||||
class NavigationViewModel : ViewModel() {
 | 
			
		||||
 | 
			
		||||
    private val stack = Stack<Page>()
 | 
			
		||||
 | 
			
		||||
    private val _screen = MutableLiveData<Screen>()
 | 
			
		||||
    val screen: LiveData<Screen> get() = _screen
 | 
			
		||||
 | 
			
		||||
    private val _page = MutableLiveData<Page>()
 | 
			
		||||
    val page: LiveData<Page> get() = _page
 | 
			
		||||
 | 
			
		||||
    init {
 | 
			
		||||
        _screen.value = Screen.SplashScreen
 | 
			
		||||
        viewModelScope.launch {
 | 
			
		||||
            delay(3000)
 | 
			
		||||
            navigateTo(Page.HomePage)
 | 
			
		||||
            navigateTo(Screen.MainScreen)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fun navigateTo(screen: Screen): Boolean {
 | 
			
		||||
        _screen.postValue(screen)
 | 
			
		||||
        return true
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fun navigateTo(page: Page): Boolean {
 | 
			
		||||
        _page.postValue(page)
 | 
			
		||||
        stack.push(page)
 | 
			
		||||
        return true
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fun navigateBack() : Boolean {
 | 
			
		||||
        stack.pop()
 | 
			
		||||
        return if (stack.empty()) {
 | 
			
		||||
            false
 | 
			
		||||
        } else {
 | 
			
		||||
            _page.postValue(stack.peek())
 | 
			
		||||
            true
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    sealed class Screen {
 | 
			
		||||
        object SplashScreen : Screen()
 | 
			
		||||
        object MainScreen : Screen()
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    sealed class Page {
 | 
			
		||||
        object HomePage : Page()
 | 
			
		||||
        data class Detail(val book: BookUio) : Page()
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										56
									
								
								app/src/main/java/com/pixelized/biblib/utils/BitmapCache.kt
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,56 @@
 | 
			
		|||
package com.pixelized.biblib.utils
 | 
			
		||||
 | 
			
		||||
import android.content.Context
 | 
			
		||||
import android.graphics.Bitmap
 | 
			
		||||
import android.graphics.BitmapFactory
 | 
			
		||||
import android.util.Log
 | 
			
		||||
import kotlinx.coroutines.CoroutineScope
 | 
			
		||||
import kotlinx.coroutines.Dispatchers
 | 
			
		||||
import kotlinx.coroutines.Job
 | 
			
		||||
import kotlinx.coroutines.launch
 | 
			
		||||
import java.io.File
 | 
			
		||||
import java.io.IOException
 | 
			
		||||
import java.net.URL
 | 
			
		||||
 | 
			
		||||
object BitmapCache {
 | 
			
		||||
    private val scope = CoroutineScope(Dispatchers.IO)
 | 
			
		||||
    private var cache: File? = null
 | 
			
		||||
 | 
			
		||||
    fun init(context: Context) {
 | 
			
		||||
        cache = context.cacheDir
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fun writeToDisk(url: URL, bitmap: Bitmap) {
 | 
			
		||||
        val path = cache?.absolutePath + url.file
 | 
			
		||||
        val file = File(path)
 | 
			
		||||
        try {
 | 
			
		||||
            file.mkdirs()
 | 
			
		||||
            file.delete()
 | 
			
		||||
            bitmap.compress(Bitmap.CompressFormat.JPEG, 100, file.outputStream())
 | 
			
		||||
        } catch (e: Exception) {
 | 
			
		||||
            Log.e("BitmapCache", "bitmap?.compress() FAILED !", e)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fun readFromDisk(url: URL): Bitmap? {
 | 
			
		||||
        val path = cache?.absolutePath + url.file
 | 
			
		||||
        val file = File(path)
 | 
			
		||||
        return try {
 | 
			
		||||
            BitmapFactory.decodeStream(file.inputStream())
 | 
			
		||||
        } catch (e: IOException) {
 | 
			
		||||
            null
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fun download(url: URL, callback: (Bitmap?) -> Unit) {
 | 
			
		||||
        CoroutineScope(Job() + Dispatchers.IO).launch {
 | 
			
		||||
            val bitmap = try {
 | 
			
		||||
                BitmapFactory.decodeStream(url.openStream())
 | 
			
		||||
            } catch (e: IOException) {
 | 
			
		||||
                Log.e("BitmapCache", "BitmapFactory.decodeStream(URL) FAILED !", e)
 | 
			
		||||
                null
 | 
			
		||||
            }
 | 
			
		||||
            callback.invoke(bitmap)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										10
									
								
								app/src/main/java/com/pixelized/biblib/utils/Constant.kt
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,10 @@
 | 
			
		|||
package com.pixelized.biblib.utils
 | 
			
		||||
 | 
			
		||||
object Constant {
 | 
			
		||||
    const val BASE_URL = "https://bib.bibulle.fr"
 | 
			
		||||
 | 
			
		||||
    const val THUMBNAIL_URL = "$BASE_URL/api/book/thumbnail"
 | 
			
		||||
    const val COVER_URL = "$BASE_URL/api/book/cover"
 | 
			
		||||
 | 
			
		||||
    const val REGISTER_URL = "$BASE_URL/signup"
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,18 @@
 | 
			
		|||
package com.pixelized.biblib.utils.extention
 | 
			
		||||
 | 
			
		||||
import com.pixelized.biblib.data.ui.BookThumbnailUio
 | 
			
		||||
import com.pixelized.biblib.data.ui.BookUio
 | 
			
		||||
 | 
			
		||||
fun BookThumbnailUio.toBookUio(): BookUio {
 | 
			
		||||
    return BookUio(
 | 
			
		||||
        id = id,
 | 
			
		||||
        title = title,
 | 
			
		||||
        author = author,
 | 
			
		||||
        genre = genre,
 | 
			
		||||
        rating = 0f,
 | 
			
		||||
        language = "",
 | 
			
		||||
        date = date,
 | 
			
		||||
        series = series,
 | 
			
		||||
        description = "",
 | 
			
		||||
    )
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,26 @@
 | 
			
		|||
package com.pixelized.biblib.utils.extention
 | 
			
		||||
 | 
			
		||||
import androidx.compose.runtime.State
 | 
			
		||||
import androidx.compose.runtime.mutableStateOf
 | 
			
		||||
import androidx.compose.ui.graphics.asImageBitmap
 | 
			
		||||
import androidx.compose.ui.graphics.painter.BitmapPainter
 | 
			
		||||
import androidx.compose.ui.graphics.painter.Painter
 | 
			
		||||
import com.pixelized.biblib.utils.BitmapCache
 | 
			
		||||
import java.net.URL
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
fun URL.toImage(placeHolder: Painter): State<Painter> {
 | 
			
		||||
    val cached = BitmapCache.readFromDisk(this)?.let { BitmapPainter(it.asImageBitmap()) }
 | 
			
		||||
    val state = mutableStateOf(cached ?: placeHolder)
 | 
			
		||||
 | 
			
		||||
    if (cached == null) {
 | 
			
		||||
        BitmapCache.download(url = this) { downloaded ->
 | 
			
		||||
            if (downloaded != null) {
 | 
			
		||||
                BitmapCache.writeToDisk(this, downloaded)
 | 
			
		||||
                state.value = BitmapPainter(downloaded.asImageBitmap())
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return state
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,97 @@
 | 
			
		|||
package com.pixelized.biblib.utils.mock
 | 
			
		||||
 | 
			
		||||
import com.pixelized.biblib.data.ui.BookUio
 | 
			
		||||
 | 
			
		||||
class BookMock {
 | 
			
		||||
    val book: BookUio = BookUio(
 | 
			
		||||
        id = 90,
 | 
			
		||||
        genre = "Sci-Fi",
 | 
			
		||||
        title = "Foundation",
 | 
			
		||||
        author = "Asimov",
 | 
			
		||||
        date = "1951",
 | 
			
		||||
        series = "Foundation - 1",
 | 
			
		||||
        description = "En ce début de treizième millénaire, l'Empire n'a jamais été aussi puissant, aussi étendu à travers toute la galaxie. C'est dans sa capitale, Trantor, que l'éminent savant Hari Seldon invente la psychohistoire, une science nouvelle permettant de prédire l'avenir. Grâce à elle, Seldon prévoit l'effondrement de l'Empire d'ici cinq siècles, suivi d'une ère de ténèbres de trente mille ans. Réduire cette période à mille ans est peut-être possible, à condition de mener à terme son projet : la Fondation, chargée de rassembler toutes les connaissances humaines. Une entreprise visionnaire qui rencontre de nombreux et puissants détracteurs...",
 | 
			
		||||
        rating = 4.5f,
 | 
			
		||||
        language = "Français",
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
    val books = hashMapOf(
 | 
			
		||||
        112 to BookUio(
 | 
			
		||||
            id = 112,
 | 
			
		||||
            title = "Prélude à Fondation",
 | 
			
		||||
            genre = "Sci-Fi",
 | 
			
		||||
            author = "Asimov",
 | 
			
		||||
            date = "1988",
 | 
			
		||||
            series = "Foundation - 1",
 | 
			
		||||
            description = "Hari Seldon venait d'inventer la psychohistoire et il n'y voyait qu'une pure spéculation, sans application pratique. La psychohistoire ne pouvait pas prédire l'avenir ? Les politiques s'en moquaient ! Les gens allaient y croire. Ensuite, les équations diraient ce qu'on leur ferait dire. Et si Seldon n'était pas d'accord, tant pis pour lui !\nAlors, le jeune chercheur s'enfuit. Traqué, il sillonna les dédales souterrains de la planète Trantor, capitale de l'Empire galactique. Et ce qu'il vit le stupéfia. Un avenir inquiétant se dessinait sous ses yeux. Était-il trop tard pour éviter la catastrophe ?",
 | 
			
		||||
            rating = 4.5f,
 | 
			
		||||
            language = "Français",
 | 
			
		||||
        ),
 | 
			
		||||
        78 to BookUio(
 | 
			
		||||
            id = 78,
 | 
			
		||||
            title = "L'Aube de Fondation",
 | 
			
		||||
            genre = "Sci-Fi",
 | 
			
		||||
            author = "Asimov",
 | 
			
		||||
            date = "1993",
 | 
			
		||||
            series = "Foundation - 2",
 | 
			
		||||
            description = "L'univers uni, c'est fini. L'Empire galactique se désagrège. Trente mille ans de chaos sont au programme. Et moi, j'en ai trop fait et je suis las. Oui, je m'appelle Hari Seldon et je vois que ce nom vous dit quelque chose. Tout ce que j'ai fait, c'est de poser les équations et d'agir. Les équations ne mentent pas. D'ailleurs vous le savez. Je ne voudrais pas jouer les prophètes, mais quand j'allume mon Premier Radiant, je lis l'avenir de l'humanité. Le chaos prévu sera réduit à un petit millier d'années. Je ne pourrai pas y veiller personellement, mais tout est en place. Je me suis laissé accaparer par ma tâche et, à l'heure de partir, je regrette d'avoir négligé les gens qui m'accompagnaient. Mais ce n'est pas moi qui ai décidé. Les équations ne me laissaient aucune échappatoire. Je continue à venir ici dans mon bureau. Je crois parfois y entendre résonner des voix, celles de mes parents, de mes étudiants, de mes collégues... de Wanda... mais les couloirs sont vides. La Fondation est faite et le bâtiment de psychohistoire ne sert plus à rien. La suite se passe ailleurs.",
 | 
			
		||||
            rating = 4.5f,
 | 
			
		||||
            language = "Français",
 | 
			
		||||
        ),
 | 
			
		||||
        90 to BookUio(
 | 
			
		||||
            id = 90,
 | 
			
		||||
            title = "Fondation",
 | 
			
		||||
            genre = "Sci-Fi",
 | 
			
		||||
            author = "Asimov",
 | 
			
		||||
            date = "1951",
 | 
			
		||||
            series = "Foundation - 3",
 | 
			
		||||
            description = "En ce début de treizième millénaire, l'Empire n'a jamais été aussi puissant, aussi étendu à travers toute la galaxie. C'est clans sa capitale, Trantor, que l'éminent savant Hari Seldon invente la psychohistoire, une science nouvelle permettant de prédire l'avenir. Grâce à elle, Seldon prévoit l'effondrement de l'Empire d'ici trois siècles, suivi d'une ère de ténèbres de trente mille ans. Réduire cette période à mille ans est peut-être possible, à condition de mener à terme son projet : la Fondation, chargée de rassembler toutes les connaissances humaines. Une entreprise visionnaire qui rencontre de nombreux et puissants détracteurs... Récompensé par le prix Hugo de la \"meilleure série de science-fiction de tous les temps Le cycle de Fondation est l'œuvre socle de la S-F moderne, celle que tous les amateurs du genre ont lue ou liront un jour.",
 | 
			
		||||
            rating = 5f,
 | 
			
		||||
            language = "Français",
 | 
			
		||||
        ),
 | 
			
		||||
        184 to BookUio(
 | 
			
		||||
            id = 184,
 | 
			
		||||
            title = "Fondation et Empire",
 | 
			
		||||
            genre = "Sci-Fi",
 | 
			
		||||
            author = "Asimov",
 | 
			
		||||
            date = "1952",
 | 
			
		||||
            series = "Foundation - 4",
 | 
			
		||||
            description = "Tandis que l'Empire galactique est en proie à des crises qui préludent à son écroulement, la Fondation, créée par le psychohistorien Hari Seldon pour faire obstacle aux trente mille ans de ténèbres qui risquent de suivre cet écroulement, prospère. Suscitant du même coup des visées annexionnistes. D'abord celles de Bel Riose, jeune général impérial qui voit dans les secrets détenus par la Fondation le moyen de se pousser sur le tr ne. Puis celles d'un mystérieux conquérant aux pouvoirs paranormaux surnommé le Mulet. Deuxième volet du foisonnant chef-d' uvre d'Asimov, la preuve, comme le dit un des personnages, qu' il n'y a pas une combinaison concevable d'événements qui n'aboutisse pas au triomphe de la Fondation.",
 | 
			
		||||
            rating = 5f,
 | 
			
		||||
            language = "Français",
 | 
			
		||||
        ),
 | 
			
		||||
        185 to BookUio(
 | 
			
		||||
            id = 185,
 | 
			
		||||
            title = "Seconde Fondation",
 | 
			
		||||
            genre = "Sci-Fi",
 | 
			
		||||
            author = "Asimov",
 | 
			
		||||
            date = "1953",
 | 
			
		||||
            series = "Foundation - 5",
 | 
			
		||||
            description = "Conçue par le psychohistorien Hari Seldon pour restreindre l'ère de chaos résultant de la décadence de l'Empire galactique, la Fondation est désormais aux mains du Mulet, un mutant imprévisible capable de manipuler les esprits et d'imposer sa volonté à quiconque. Avec ses pouvoirs et les immenses ressources que lui procure la Fondation, il s'est donné pour objectif d'étendre sa domination aux ultimes vestiges de l'Empire défunt. Mais déjà une nouvelle légende prend forme : il existerait une Seconde Fondation, consacrée aux sciences mentales, œuvrant de façon occulte pour garantir l'accomplissement des desseins du légendaire Hari Seldon...",
 | 
			
		||||
            rating = 5f,
 | 
			
		||||
            language = "Français",
 | 
			
		||||
        ),
 | 
			
		||||
        119 to BookUio(
 | 
			
		||||
            id = 119,
 | 
			
		||||
            title = "Fondation foudroyée",
 | 
			
		||||
            genre = "Sci-Fi",
 | 
			
		||||
            author = "Asimov",
 | 
			
		||||
            date = "1982",
 | 
			
		||||
            series = "Foundation - 6",
 | 
			
		||||
            description = "Prévoyant l'effondrement prochain de l'Empire galactique, le psychohistorien Hari Seldon a jadis créé deux Fondations, l'une officielle, l'autre occulte, afin de préserver la civilisation d'une interminable période de chaos. Pourtant, cinq siècles après leur établissement, alors même que la Première Fondation n'a jamais été aussi puissante, un nouveau protagoniste semble entrer en jeu, œuvrant dans l'ombre à l'insu de tous. Peut-être tient-il entre ses mains le devenir de l'humanité tout entière...",
 | 
			
		||||
            rating = 5f,
 | 
			
		||||
            language = "Français",
 | 
			
		||||
        ),
 | 
			
		||||
        163 to BookUio(
 | 
			
		||||
            id = 163,
 | 
			
		||||
            title = "Terre et Fondation",
 | 
			
		||||
            genre = "Sci-Fi",
 | 
			
		||||
            author = "Asimov",
 | 
			
		||||
            date = "1986",
 | 
			
		||||
            series = "Foundation - 7",
 | 
			
		||||
            description = "La Terre. Tout porte à croire que le légendaire berceau de l'humanité se trouve au cœur d'un vaste plan à l'échelle galactique, destiné à garantir en coulisse la pérennité de la civilisation : une synthèse parfaite entre le matérialisme de la Première Fondation et le mentalisme de la Seconde, mise en œuvre par une mystérieuse puissance. Mais comment trouver une planète que beaucoup croient mythique, et dont toute trace a inexplicablement disparu des archives galactiques ? Récompensé par le prix Hugo de la \"meilleure série de science-fiction de tous les temps Le cycle de Fondation est l'œuvre socle de la S-F moderne, celle que tous les amateurs du genre ont lue ou liront un jour.",
 | 
			
		||||
            rating = 5f,
 | 
			
		||||
            language = "Français",
 | 
			
		||||
        ),
 | 
			
		||||
    )
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,306 @@
 | 
			
		|||
package com.pixelized.biblib.utils.mock
 | 
			
		||||
 | 
			
		||||
import com.pixelized.biblib.data.ui.BookThumbnailUio
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class BookThumbnailMock {
 | 
			
		||||
 | 
			
		||||
    val bookThumbnail: BookThumbnailUio by lazy {
 | 
			
		||||
        BookThumbnailUio(
 | 
			
		||||
            id = 0,
 | 
			
		||||
            genre = "Sci-Fi",
 | 
			
		||||
            title = "Foundation",
 | 
			
		||||
            author = "Asimov",
 | 
			
		||||
            date = "1951",
 | 
			
		||||
            series = "Foundation - 1"
 | 
			
		||||
        )
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    val bookThumbnails: List<BookThumbnailUio> by lazy {
 | 
			
		||||
        listOf(
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 112,
 | 
			
		||||
                title = "Prélude à Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1988",
 | 
			
		||||
                series = "Foundation - 1",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 78,
 | 
			
		||||
                title = "L'Aube de Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1993",
 | 
			
		||||
                series = "Foundation - 2",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 90,
 | 
			
		||||
                title = "Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1951",
 | 
			
		||||
                series = "Foundation - 3",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 184,
 | 
			
		||||
                title = "Fondation et Empire",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1952",
 | 
			
		||||
                series = "Foundation - 4",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 185,
 | 
			
		||||
                title = "Seconde Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1953",
 | 
			
		||||
                series = "Foundation - 5",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 119,
 | 
			
		||||
                title = "Fondation foudroyée",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1982",
 | 
			
		||||
                series = "Foundation - 6",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 163,
 | 
			
		||||
                title = "Terre et Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1986",
 | 
			
		||||
                series = "Foundation - 7",
 | 
			
		||||
            ),
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 112,
 | 
			
		||||
                title = "Prélude à Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1988",
 | 
			
		||||
                series = "Foundation - 1",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 78,
 | 
			
		||||
                title = "L'Aube de Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1993",
 | 
			
		||||
                series = "Foundation - 2",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 90,
 | 
			
		||||
                title = "Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1951",
 | 
			
		||||
                series = "Foundation - 3",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 184,
 | 
			
		||||
                title = "Fondation et Empire",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1952",
 | 
			
		||||
                series = "Foundation - 4",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 185,
 | 
			
		||||
                title = "Seconde Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1953",
 | 
			
		||||
                series = "Foundation - 5",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 119,
 | 
			
		||||
                title = "Fondation foudroyée",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1982",
 | 
			
		||||
                series = "Foundation - 6",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 163,
 | 
			
		||||
                title = "Terre et Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1986",
 | 
			
		||||
                series = "Foundation - 7",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 112,
 | 
			
		||||
                title = "Prélude à Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1988",
 | 
			
		||||
                series = "Foundation - 1",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 78,
 | 
			
		||||
                title = "L'Aube de Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1993",
 | 
			
		||||
                series = "Foundation - 2",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 90,
 | 
			
		||||
                title = "Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1951",
 | 
			
		||||
                series = "Foundation - 3",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 184,
 | 
			
		||||
                title = "Fondation et Empire",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1952",
 | 
			
		||||
                series = "Foundation - 4",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 185,
 | 
			
		||||
                title = "Seconde Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1953",
 | 
			
		||||
                series = "Foundation - 5",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 119,
 | 
			
		||||
                title = "Fondation foudroyée",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1982",
 | 
			
		||||
                series = "Foundation - 6",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 163,
 | 
			
		||||
                title = "Terre et Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1986",
 | 
			
		||||
                series = "Foundation - 7",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 112,
 | 
			
		||||
                title = "Prélude à Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1988",
 | 
			
		||||
                series = "Foundation - 1",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 78,
 | 
			
		||||
                title = "L'Aube de Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1993",
 | 
			
		||||
                series = "Foundation - 2",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 90,
 | 
			
		||||
                title = "Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1951",
 | 
			
		||||
                series = "Foundation - 3",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 184,
 | 
			
		||||
                title = "Fondation et Empire",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1952",
 | 
			
		||||
                series = "Foundation - 4",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 185,
 | 
			
		||||
                title = "Seconde Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1953",
 | 
			
		||||
                series = "Foundation - 5",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 119,
 | 
			
		||||
                title = "Fondation foudroyée",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1982",
 | 
			
		||||
                series = "Foundation - 6",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 163,
 | 
			
		||||
                title = "Terre et Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1986",
 | 
			
		||||
                series = "Foundation - 7",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 112,
 | 
			
		||||
                title = "Prélude à Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1988",
 | 
			
		||||
                series = "Foundation - 1",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 78,
 | 
			
		||||
                title = "L'Aube de Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1993",
 | 
			
		||||
                series = "Foundation - 2",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 90,
 | 
			
		||||
                title = "Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1951",
 | 
			
		||||
                series = "Foundation - 3",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 184,
 | 
			
		||||
                title = "Fondation et Empire",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1952",
 | 
			
		||||
                series = "Foundation - 4",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 185,
 | 
			
		||||
                title = "Seconde Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1953",
 | 
			
		||||
                series = "Foundation - 5",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 119,
 | 
			
		||||
                title = "Fondation foudroyée",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1982",
 | 
			
		||||
                series = "Foundation - 6",
 | 
			
		||||
            ),
 | 
			
		||||
            BookThumbnailUio(
 | 
			
		||||
                id = 163,
 | 
			
		||||
                title = "Terre et Fondation",
 | 
			
		||||
                genre = "Sci-Fi",
 | 
			
		||||
                author = "Asimov",
 | 
			
		||||
                date = "1986",
 | 
			
		||||
                series = "Foundation - 7",
 | 
			
		||||
            ),
 | 
			
		||||
        )
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										30
									
								
								app/src/main/res/drawable-v24/ic_launcher_foreground.xml
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,30 @@
 | 
			
		|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
 | 
			
		||||
    xmlns:aapt="http://schemas.android.com/aapt"
 | 
			
		||||
    android:width="108dp"
 | 
			
		||||
    android:height="108dp"
 | 
			
		||||
    android:viewportWidth="108"
 | 
			
		||||
    android:viewportHeight="108">
 | 
			
		||||
    <path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
 | 
			
		||||
        <aapt:attr name="android:fillColor">
 | 
			
		||||
            <gradient
 | 
			
		||||
                android:endX="85.84757"
 | 
			
		||||
                android:endY="92.4963"
 | 
			
		||||
                android:startX="42.9492"
 | 
			
		||||
                android:startY="49.59793"
 | 
			
		||||
                android:type="linear">
 | 
			
		||||
                <item
 | 
			
		||||
                    android:color="#44000000"
 | 
			
		||||
                    android:offset="0.0" />
 | 
			
		||||
                <item
 | 
			
		||||
                    android:color="#00000000"
 | 
			
		||||
                    android:offset="1.0" />
 | 
			
		||||
            </gradient>
 | 
			
		||||
        </aapt:attr>
 | 
			
		||||
    </path>
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#FFFFFF"
 | 
			
		||||
        android:fillType="nonZero"
 | 
			
		||||
        android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
 | 
			
		||||
        android:strokeWidth="1"
 | 
			
		||||
        android:strokeColor="#00000000" />
 | 
			
		||||
</vector>
 | 
			
		||||
							
								
								
									
										170
									
								
								app/src/main/res/drawable/ic_launcher_background.xml
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,170 @@
 | 
			
		|||
<?xml version="1.0" encoding="utf-8"?>
 | 
			
		||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
 | 
			
		||||
    android:width="108dp"
 | 
			
		||||
    android:height="108dp"
 | 
			
		||||
    android:viewportWidth="108"
 | 
			
		||||
    android:viewportHeight="108">
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#3DDC84"
 | 
			
		||||
        android:pathData="M0,0h108v108h-108z" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M9,0L9,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M19,0L19,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M29,0L29,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M39,0L39,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M49,0L49,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M59,0L59,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M69,0L69,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M79,0L79,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M89,0L89,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M99,0L99,108"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,9L108,9"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,19L108,19"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,29L108,29"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,39L108,39"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,49L108,49"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,59L108,59"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,69L108,69"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,79L108,79"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,89L108,89"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M0,99L108,99"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M19,29L89,29"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M19,39L89,39"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M19,49L89,49"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M19,59L89,59"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M19,69L89,69"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M19,79L89,79"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M29,19L29,89"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M39,19L39,89"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M49,19L49,89"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M59,19L59,89"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M69,19L69,89"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
    <path
 | 
			
		||||
        android:fillColor="#00000000"
 | 
			
		||||
        android:pathData="M79,19L79,89"
 | 
			
		||||
        android:strokeWidth="0.8"
 | 
			
		||||
        android:strokeColor="#33FFFFFF" />
 | 
			
		||||
</vector>
 | 
			
		||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,5 @@
 | 
			
		|||
<?xml version="1.0" encoding="utf-8"?>
 | 
			
		||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
 | 
			
		||||
    <background android:drawable="@drawable/ic_launcher_background" />
 | 
			
		||||
    <foreground android:drawable="@drawable/ic_launcher_foreground" />
 | 
			
		||||
</adaptive-icon>
 | 
			
		||||
							
								
								
									
										5
									
								
								app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,5 @@
 | 
			
		|||
<?xml version="1.0" encoding="utf-8"?>
 | 
			
		||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
 | 
			
		||||
    <background android:drawable="@drawable/ic_launcher_background" />
 | 
			
		||||
    <foreground android:drawable="@drawable/ic_launcher_foreground" />
 | 
			
		||||
</adaptive-icon>
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.8 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 982 B  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.7 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.9 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.8 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.8 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 5.8 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.8 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 7.6 KiB  | 
							
								
								
									
										7
									
								
								app/src/main/res/values/strings.xml
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,7 @@
 | 
			
		|||
<resources>
 | 
			
		||||
    <string name="app_name">BibLib</string>
 | 
			
		||||
 | 
			
		||||
    <string name="detail_rating">Rating</string>
 | 
			
		||||
    <string name="detail_language">Language</string>
 | 
			
		||||
    <string name="detail_Release">Release</string>
 | 
			
		||||
</resources>
 | 
			
		||||