├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── vipulasri │ │ └── jetdelivery │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── vipulasri │ │ │ └── jetdelivery │ │ │ ├── components │ │ │ ├── AppBar.kt │ │ │ ├── CommonUi.kt │ │ │ ├── ImageLoading.kt │ │ │ └── Text.kt │ │ │ ├── data │ │ │ ├── Repository.kt │ │ │ └── ViewState.kt │ │ │ └── ui │ │ │ ├── Themes.kt │ │ │ ├── Typography.kt │ │ │ ├── dashboard │ │ │ ├── Banner.kt │ │ │ ├── Category.kt │ │ │ ├── DashboardScreen.kt │ │ │ ├── Header.kt │ │ │ └── Resturant.kt │ │ │ └── main │ │ │ ├── MainActivity.kt │ │ │ └── MainViewModel.kt │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_logo.xml │ │ ├── ic_round_star_24.xml │ │ ├── placeholder_banner.webp │ │ ├── placeholder_category.webp │ │ └── placeholder_restaurant.webp │ │ ├── font │ │ ├── nunito_bold.ttf │ │ ├── nunito_regular.ttf │ │ └── nunito_semibold.ttf │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── vipulasri │ └── jetdelivery │ └── ExampleUnitTest.kt ├── art ├── jetdelivery-main.png └── screenshot-framed-1.png ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── network ├── .gitignore ├── build.gradle └── src │ └── main │ └── java │ └── com │ └── vipulasri │ └── jetdelivery │ └── network │ ├── ApiService.kt │ └── model │ └── Dashboard.kt └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | *.aab 5 | 6 | # Files for the ART/Dalvik VM 7 | *.dex 8 | 9 | # Java class files 10 | *.class 11 | 12 | # Generated files 13 | bin/ 14 | gen/ 15 | out/ 16 | 17 | # Gradle files 18 | .gradle/ 19 | build/ 20 | 21 | # Local configuration file (sdk path, etc) 22 | local.properties 23 | 24 | # Proguard folder generated by Eclipse 25 | proguard/ 26 | 27 | # Log Files 28 | *.log 29 | 30 | # Android Studio Navigation editor temp files 31 | .navigation/ 32 | 33 | # Android Studio captures folder 34 | captures/ 35 | 36 | # IntelliJ 37 | *.iml 38 | .idea 39 | .DS_Store 40 | 41 | # Keystore files 42 | # Uncomment the following line if you do not want to check your keystore files in. 43 | #*.jks 44 | 45 | # External native build folder generated in Android Studio 2.2 and later 46 | .externalNativeBuild 47 | 48 | # Google Services (e.g. APIs or Firebase) 49 | # google-services.json 50 | 51 | # Freeline 52 | freeline.py 53 | freeline/ 54 | freeline_project_description.json 55 | 56 | # fastlane 57 | fastlane/report.xml 58 | fastlane/Preview.html 59 | fastlane/screenshots 60 | fastlane/test_output 61 | fastlane/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | JetDelivery is a sample food delivery app, built with [Jetpack Compose](https://developer.android.com/jetpack/compose). 4 | 5 | **Medium:** https://proandroiddev.com/server-driven-ui-using-jetpack-compose-8fae9889bb2b 6 | 7 | **This app showcases:** 8 | - Server-driven UI 9 | - Building apps using Jetpack Compose 10 | 11 | **Resources:** 12 | - MVI in Jetpack Compose: https://medium.com/swlh/android-mvi-with-jetpack-compose-b0890f5156ac 13 | - Image Loading: https://tech.instacart.com/exploring-images-in-jetpack-compose-c8ba87089c92 14 | 15 | **Screenshots:** 16 | 17 | 18 | 19 | **Credits:** 20 | 21 | Icon made by [photo3idea_studio](https://www.flaticon.com/authors/photo3idea-studio) from [Flaticon](www.flaticon.com) 22 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'kotlin-android' 3 | 4 | android { 5 | compileSdkVersion 32 6 | 7 | defaultConfig { 8 | applicationId "com.vipulasri.jetdelivery" 9 | minSdkVersion 21 10 | targetSdkVersion 32 11 | versionCode 1 12 | versionName "1.0" 13 | 14 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 15 | } 16 | 17 | buildTypes { 18 | release { 19 | minifyEnabled false 20 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 21 | } 22 | } 23 | compileOptions { 24 | sourceCompatibility JavaVersion.VERSION_1_8 25 | targetCompatibility JavaVersion.VERSION_1_8 26 | } 27 | kotlinOptions { 28 | jvmTarget = '1.8' 29 | } 30 | buildFeatures { 31 | compose true 32 | } 33 | composeOptions { 34 | kotlinCompilerExtensionVersion "${versions.androidx.compose.core}" 35 | } 36 | } 37 | 38 | dependencies { 39 | implementation "org.jetbrains.kotlin:kotlin-stdlib:${versions.kotlin.stdlib}" 40 | implementation "androidx.appcompat:appcompat:${versions.androidx.appCompat}" 41 | implementation "androidx.core:core-ktx:${versions.androidx.ktx.core}" 42 | 43 | //compose 44 | implementation "androidx.activity:activity-compose:${versions.androidx.compose.activity}" 45 | implementation "androidx.compose.runtime:runtime-livedata:${versions.androidx.compose.core}" 46 | implementation "androidx.compose.material:material:${versions.androidx.compose.core}" 47 | implementation "androidx.compose.ui:ui-tooling:${versions.androidx.compose.core}" 48 | 49 | implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${versions.kotlin.coroutines.core}" 50 | implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${versions.kotlin.coroutines.android}" 51 | 52 | implementation "androidx.lifecycle:lifecycle-livedata-ktx:${versions.androidx.ktx.lifecycle}" 53 | implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:${versions.androidx.ktx.lifecycle}" 54 | 55 | implementation "io.coil-kt:coil-compose:${versions.coil}" 56 | 57 | implementation project(path: ':network') 58 | 59 | testImplementation 'junit:junit:4.12' 60 | androidTestImplementation 'androidx.test.ext:junit:1.1.1' 61 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' 62 | } 63 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /app/src/androidTest/java/com/vipulasri/jetdelivery/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery 2 | 3 | import androidx.test.ext.junit.runners.AndroidJUnit4 4 | import androidx.test.platform.app.InstrumentationRegistry 5 | import org.junit.Assert.assertEquals 6 | import org.junit.Test 7 | import org.junit.runner.RunWith 8 | 9 | /** 10 | * Instrumented test, which will execute on an Android device. 11 | * 12 | * See [testing documentation](http://d.android.com/tools/testing). 13 | */ 14 | @RunWith(AndroidJUnit4::class) 15 | class ExampleInstrumentedTest { 16 | @Test 17 | fun useAppContext() { 18 | // Context of the app under test. 19 | val appContext = InstrumentationRegistry.getInstrumentation() 20 | .targetContext 21 | assertEquals("com.vipulasri.jetdelivery", appContext.packageName) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/components/AppBar.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.components 2 | 3 | import androidx.compose.foundation.layout.Row 4 | import androidx.compose.foundation.layout.Spacer 5 | import androidx.compose.foundation.layout.width 6 | import androidx.compose.material.* 7 | import androidx.compose.runtime.Composable 8 | import androidx.compose.ui.Alignment 9 | import androidx.compose.ui.Modifier 10 | import androidx.compose.ui.graphics.Color 11 | import androidx.compose.ui.res.stringResource 12 | import androidx.compose.ui.unit.dp 13 | import com.vipulasri.jetdelivery.R 14 | 15 | @Composable 16 | fun AppTopBar( 17 | name: String, 18 | showRandom: Boolean, 19 | onShowRandomDashboardChange: (showRandom: Boolean) -> Unit = { } 20 | ) { 21 | TopAppBar( 22 | title = { Text(text = name) }, 23 | backgroundColor = Color.White, 24 | actions = { 25 | RandomDashboard( 26 | showRandom, 27 | onRandomDashboardChange = onShowRandomDashboardChange 28 | ) 29 | } 30 | ) 31 | } 32 | 33 | @Composable 34 | private fun RandomDashboard( 35 | showRandom: Boolean, 36 | onRandomDashboardChange: (isRandom: Boolean) -> Unit = { } 37 | ) { 38 | Row( 39 | verticalAlignment = Alignment.CenterVertically 40 | ) { 41 | PrimaryText { 42 | Text( 43 | modifier = Modifier, 44 | text = stringResource(id = R.string.random_dashboard), 45 | style = MaterialTheme.typography.caption 46 | ) 47 | } 48 | Spacer(modifier = Modifier.width(5.dp)) 49 | Checkbox( 50 | checked = showRandom, 51 | onCheckedChange = onRandomDashboardChange, 52 | colors = CheckboxDefaults.colors( 53 | checkedColor = MaterialTheme.colors.primary, 54 | ) 55 | ) 56 | } 57 | } -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/components/CommonUi.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.components 2 | 3 | import androidx.compose.foundation.layout.* 4 | import androidx.compose.material.Button 5 | import androidx.compose.material.CircularProgressIndicator 6 | import androidx.compose.material.TabRowDefaults.Divider 7 | import androidx.compose.material.Text 8 | import androidx.compose.runtime.Composable 9 | import androidx.compose.ui.Alignment 10 | import androidx.compose.ui.Modifier 11 | import androidx.compose.ui.graphics.Color 12 | import androidx.compose.ui.res.stringResource 13 | import androidx.compose.ui.text.style.TextAlign 14 | import androidx.compose.ui.tooling.preview.Preview 15 | import androidx.compose.ui.unit.dp 16 | import com.vipulasri.jetdelivery.R 17 | 18 | @Composable 19 | fun ShowLoading() { 20 | Box( 21 | modifier = Modifier.fillMaxSize(), 22 | contentAlignment = Alignment.Center 23 | ) { 24 | CircularProgressIndicator() 25 | } 26 | } 27 | 28 | @Composable 29 | fun ShowError(message: String, onRetry: () -> Unit) { 30 | Column { 31 | Text( 32 | modifier = Modifier.fillMaxSize(), 33 | text = message, 34 | textAlign = TextAlign.Center 35 | ) 36 | Spacer(modifier = Modifier.height(20.dp)) 37 | Button( 38 | modifier = Modifier.align(Alignment.CenterHorizontally), 39 | onClick = onRetry 40 | ) { 41 | Text(stringResource(id = R.string.retry)) 42 | } 43 | } 44 | } 45 | 46 | @Composable 47 | fun ShowVerticalDivider() { 48 | Divider( 49 | modifier = Modifier.padding(horizontal = 16.dp), 50 | color = Color.LightGray.copy(alpha = 0.2f) 51 | ) 52 | } 53 | 54 | @Preview 55 | @Composable 56 | private fun ShowErrorPreview() { 57 | ShowError( 58 | message = "Error Message\nSomething went wrong!", 59 | onRetry = { }) 60 | } 61 | -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/components/ImageLoading.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.components 2 | 3 | import androidx.compose.foundation.background 4 | import androidx.compose.foundation.layout.Box 5 | import androidx.compose.foundation.layout.fillMaxSize 6 | import androidx.compose.runtime.Composable 7 | import androidx.compose.ui.Modifier 8 | import androidx.compose.ui.graphics.Color 9 | import androidx.compose.ui.graphics.ColorFilter 10 | import androidx.compose.ui.layout.ContentScale 11 | import androidx.compose.ui.platform.LocalContext 12 | import coil.compose.SubcomposeAsyncImage 13 | import coil.request.ImageRequest 14 | 15 | /** 16 | * Created by Vipul Asri on 19/07/22. 17 | */ 18 | 19 | @Composable 20 | fun LoadImage( 21 | modifier: Modifier = Modifier, 22 | image: Any?, 23 | tint: Color? = null 24 | ) { 25 | SubcomposeAsyncImage( 26 | modifier = modifier, 27 | model = ImageRequest.Builder(LocalContext.current) 28 | .data(image) 29 | .crossfade(true) 30 | .build(), 31 | contentDescription = "", 32 | contentScale = ContentScale.Crop, 33 | colorFilter = tint?.let { ColorFilter.tint(it) }, 34 | loading = { 35 | Placeholder() 36 | } 37 | ) 38 | } 39 | 40 | @Composable 41 | private fun Placeholder() { 42 | Box( 43 | modifier = Modifier 44 | .fillMaxSize() 45 | .background(Color.LightGray) 46 | ) { 47 | 48 | } 49 | } -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/components/Text.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.components 2 | 3 | import androidx.compose.material.ContentAlpha 4 | import androidx.compose.material.LocalContentAlpha 5 | import androidx.compose.runtime.Composable 6 | import androidx.compose.runtime.CompositionLocalProvider 7 | 8 | @Composable 9 | fun PrimaryText(children: @Composable() () -> Unit) { 10 | CompositionLocalProvider(LocalContentAlpha provides ContentAlpha.high) { 11 | children.invoke() 12 | } 13 | } 14 | 15 | @Composable 16 | fun SecondaryText(children: @Composable() () -> Unit) { 17 | CompositionLocalProvider(LocalContentAlpha provides ContentAlpha.medium) { 18 | children.invoke() 19 | } 20 | } 21 | 22 | @Composable 23 | fun DisabledText(children: @Composable() () -> Unit) { 24 | CompositionLocalProvider(LocalContentAlpha provides ContentAlpha.disabled) { 25 | children.invoke() 26 | } 27 | } -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/data/Repository.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.data 2 | 3 | import com.vipulasri.jetdelivery.network.NetworkClient 4 | import com.vipulasri.jetdelivery.network.model.Dashboard 5 | import java.lang.Exception 6 | import kotlinx.coroutines.Dispatchers 7 | import kotlinx.coroutines.withContext 8 | 9 | object Repository { 10 | 11 | private val apiService = NetworkClient.service 12 | 13 | suspend fun getDashboardData(isRandomRequired: Boolean = false): Result> { 14 | return withContext(Dispatchers.IO) { 15 | try { 16 | if(isRandomRequired) { 17 | Result.Success(apiService.getRandomDashboard().data) 18 | } else { 19 | Result.Success(apiService.getDashboard().data) 20 | } 21 | } catch (exception: Exception) { 22 | Result.Failure(exception) 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/data/ViewState.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.data 2 | 3 | sealed class Result { 4 | object Loading : Result() 5 | class Success(val data: T?) : Result() 6 | class Failure(val error: Throwable) : Result() 7 | } -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/ui/Themes.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.ui 2 | 3 | import androidx.compose.material.MaterialTheme 4 | import androidx.compose.material.lightColors 5 | import androidx.compose.runtime.Composable 6 | import androidx.compose.ui.graphics.Color 7 | 8 | private val lightThemeColors = lightColors( 9 | primary = Color(0xFFFF8C29), 10 | primaryVariant = Color(0xFFF87D27), 11 | secondary = Color(0xFFFF2D55), 12 | secondaryVariant = Color(0xFFFF0038), 13 | error = Color(0xFFD00036) 14 | ) 15 | 16 | @Composable 17 | fun JetDeliveryTheme( 18 | content: @Composable () -> Unit 19 | ) { 20 | MaterialTheme( 21 | colors = lightThemeColors, 22 | typography = themeTypography, 23 | content = content 24 | ) 25 | } -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/ui/Typography.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.ui 2 | 3 | import androidx.compose.material.Typography 4 | import androidx.compose.ui.text.TextStyle 5 | import androidx.compose.ui.text.font.Font 6 | import androidx.compose.ui.text.font.FontFamily 7 | import androidx.compose.ui.text.font.FontWeight 8 | import androidx.compose.ui.unit.sp 9 | import com.vipulasri.jetdelivery.R 10 | 11 | private val regular = Font(R.font.nunito_regular) 12 | private val medium = Font(R.font.nunito_semibold, FontWeight.W600) 13 | private val semibold = Font(R.font.nunito_bold, FontWeight.W700) 14 | 15 | private val fontFamily = FontFamily(fonts = listOf(regular, medium, semibold)) 16 | 17 | val themeTypography = Typography( 18 | h4 = TextStyle( 19 | fontFamily = fontFamily, 20 | fontWeight = FontWeight.W700, 21 | fontSize = 30.sp 22 | ), 23 | h5 = TextStyle( 24 | fontFamily = fontFamily, 25 | fontWeight = FontWeight.W600, 26 | fontSize = 24.sp 27 | ), 28 | h6 = TextStyle( 29 | fontFamily = fontFamily, 30 | fontWeight = FontWeight.W700, 31 | fontSize = 20.sp 32 | ), 33 | subtitle1 = TextStyle( 34 | fontFamily = fontFamily, 35 | fontWeight = FontWeight.W700, 36 | fontSize = 16.sp 37 | ), 38 | subtitle2 = TextStyle( 39 | fontFamily = fontFamily, 40 | fontWeight = FontWeight.W600, 41 | fontSize = 14.sp 42 | ), 43 | body1 = TextStyle( 44 | fontFamily = fontFamily, 45 | fontWeight = FontWeight.Normal, 46 | fontSize = 16.sp 47 | ), 48 | body2 = TextStyle( 49 | fontFamily = fontFamily, 50 | fontSize = 14.sp 51 | ), 52 | button = TextStyle( 53 | fontFamily = fontFamily, 54 | fontWeight = FontWeight.W600, 55 | fontSize = 14.sp 56 | ), 57 | caption = TextStyle( 58 | fontFamily = fontFamily, 59 | fontWeight = FontWeight.Normal, 60 | fontSize = 12.sp 61 | ), 62 | overline = TextStyle( 63 | fontFamily = fontFamily, 64 | fontWeight = FontWeight.Normal, 65 | fontSize = 10.sp 66 | ) 67 | ) 68 | -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/ui/dashboard/Banner.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.ui.dashboard 2 | 3 | import androidx.compose.foundation.background 4 | import androidx.compose.foundation.layout.* 5 | import androidx.compose.foundation.shape.RoundedCornerShape 6 | import androidx.compose.material.MaterialTheme 7 | import androidx.compose.material.Text 8 | import androidx.compose.runtime.Composable 9 | import androidx.compose.ui.Alignment 10 | import androidx.compose.ui.Modifier 11 | import androidx.compose.ui.draw.clip 12 | import androidx.compose.ui.graphics.Color 13 | import androidx.compose.ui.unit.dp 14 | import androidx.compose.ui.unit.sp 15 | import com.vipulasri.jetdelivery.components.LoadImage 16 | import com.vipulasri.jetdelivery.network.model.Dashboard 17 | 18 | @Composable 19 | fun ShowBannerElement(item: Dashboard.Item.SubItem) { 20 | Box( 21 | modifier = Modifier 22 | .size(width = 150.dp, height = 178.dp) 23 | .clip(RoundedCornerShape(5.dp)) 24 | ) { 25 | BannerImage(url = item.imageUrl) 26 | item.title?.let { 27 | BannerText( 28 | modifier = Modifier.align(Alignment.BottomCenter), 29 | title = it 30 | ) 31 | } 32 | } 33 | } 34 | 35 | 36 | @Composable 37 | private fun BannerImage(url: String) { 38 | LoadImage( 39 | modifier = Modifier.fillMaxSize(), 40 | image = url 41 | ) 42 | } 43 | 44 | @Composable 45 | private fun BannerText( 46 | modifier: Modifier, 47 | title: String 48 | ) { 49 | Text( 50 | modifier = modifier 51 | .fillMaxWidth() 52 | .background(Color.Black.copy(alpha = 0.3f)) 53 | .padding(10.dp), 54 | text = title, 55 | style = MaterialTheme.typography.subtitle2.copy( 56 | color = Color.White, 57 | fontSize = 12.sp 58 | ) 59 | ) 60 | } -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/ui/dashboard/Category.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.ui.dashboard 2 | 3 | import androidx.compose.foundation.background 4 | import androidx.compose.foundation.layout.* 5 | import androidx.compose.foundation.shape.RoundedCornerShape 6 | import androidx.compose.material.MaterialTheme 7 | import androidx.compose.material.Text 8 | import androidx.compose.runtime.Composable 9 | import androidx.compose.ui.Alignment 10 | import androidx.compose.ui.Modifier 11 | import androidx.compose.ui.graphics.Color 12 | import androidx.compose.ui.unit.dp 13 | import com.vipulasri.jetdelivery.components.LoadImage 14 | import com.vipulasri.jetdelivery.components.PrimaryText 15 | import com.vipulasri.jetdelivery.components.SecondaryText 16 | import com.vipulasri.jetdelivery.network.model.Dashboard 17 | 18 | @Composable 19 | fun ShowCategoryElement(item: Dashboard.Item.SubItem) { 20 | Column { 21 | Spacer(modifier = Modifier.height(5.dp)) // added to support space for header 22 | CategoryImage(item = item) 23 | Spacer(modifier = Modifier.height(5.dp)) 24 | CategoryInfo( 25 | title = item.title, 26 | subTitle = item.subTitle 27 | ) 28 | } 29 | } 30 | 31 | @Composable 32 | private fun CategoryImage(item: Dashboard.Item.SubItem) { 33 | val bgColor = item.meta?.bgColor?.let { color -> 34 | getColor(color) 35 | } ?: Color.Blue 36 | 37 | Box( 38 | modifier = Modifier 39 | .size(70.dp) 40 | .background(bgColor, shape = RoundedCornerShape(5.dp)), 41 | contentAlignment = Alignment.Center 42 | ) { 43 | LoadImage( 44 | image = item.imageUrl, 45 | tint = Color.White 46 | ) 47 | } 48 | } 49 | 50 | @Composable 51 | private fun CategoryInfo(title: String?, subTitle: String?) { 52 | title?.let { 53 | PrimaryText { 54 | Text( 55 | text = it, 56 | style = MaterialTheme.typography.subtitle2 57 | ) 58 | } 59 | } 60 | subTitle?.let { 61 | SecondaryText { 62 | Text( 63 | text = it, 64 | style = MaterialTheme.typography.overline 65 | ) 66 | } 67 | } 68 | } 69 | 70 | fun getColor(colorString: String): Color { 71 | return Color(android.graphics.Color.parseColor(colorString)) 72 | } -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/ui/dashboard/DashboardScreen.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.ui.dashboard 2 | 3 | import androidx.compose.foundation.layout.* 4 | import androidx.compose.foundation.lazy.LazyColumn 5 | import androidx.compose.foundation.lazy.LazyRow 6 | import androidx.compose.foundation.lazy.itemsIndexed 7 | import androidx.compose.runtime.Composable 8 | import androidx.compose.ui.Modifier 9 | import androidx.compose.ui.res.dimensionResource 10 | import androidx.compose.ui.unit.dp 11 | import com.vipulasri.jetdelivery.R 12 | import com.vipulasri.jetdelivery.components.ShowVerticalDivider 13 | import com.vipulasri.jetdelivery.network.model.Dashboard 14 | import com.vipulasri.jetdelivery.network.model.ItemViewType 15 | import com.vipulasri.jetdelivery.network.model.SubItemViewType 16 | 17 | @Composable 18 | fun ShowDashboard(data: List) { 19 | LazyColumn( 20 | modifier = Modifier.fillMaxSize(), 21 | contentPadding = PaddingValues(vertical = dimensionResource(id = R.dimen.padding)) 22 | ) { 23 | itemsIndexed(items = data) { index, item -> 24 | when (item.viewType) { 25 | ItemViewType.HorizontalScroll -> ShowHorizontalElements( 26 | item = item 27 | ) 28 | ItemViewType.VerticalScroll -> ShowVerticalElements( 29 | item = item 30 | ) 31 | } 32 | if (index != item.data.size) Spacer(modifier = Modifier.height(10.dp)) 33 | } 34 | } 35 | } 36 | 37 | @Composable 38 | private fun ShowHorizontalElements(item: Dashboard.Item) { 39 | item.header?.let { 40 | ShowHeader(title = it.title, hasMore = it.hasMore) 41 | } 42 | LazyRow( 43 | modifier = Modifier.fillMaxWidth(), 44 | contentPadding = PaddingValues(horizontal = dimensionResource(id = R.dimen.padding)) 45 | ) { 46 | itemsIndexed(item.data) { index, data -> 47 | when (data.viewType) { 48 | SubItemViewType.Banner -> ShowBannerElement( 49 | item = data 50 | ) 51 | SubItemViewType.Category -> ShowCategoryElement( 52 | item = data 53 | ) 54 | else -> { 55 | // do nothing 56 | } 57 | } 58 | if (index != item.data.size) Spacer(modifier = Modifier.width(10.dp)) 59 | } 60 | } 61 | } 62 | 63 | @Composable 64 | private fun ShowVerticalElements(item: Dashboard.Item) { 65 | item.header?.let { 66 | ShowHeader(title = it.title, hasMore = it.hasMore) 67 | } 68 | item.data.forEachIndexed { index, data -> 69 | when (data.viewType) { 70 | SubItemViewType.Restaurant -> ShowRestaurantElement( 71 | item = data 72 | ) 73 | else -> { 74 | // do nothing 75 | } 76 | } 77 | if (index != item.data.size) ShowVerticalDivider() 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/ui/dashboard/Header.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.ui.dashboard 2 | 3 | import androidx.compose.foundation.layout.Row 4 | import androidx.compose.foundation.layout.padding 5 | import androidx.compose.material.MaterialTheme 6 | import androidx.compose.material.Text 7 | import androidx.compose.material.TextButton 8 | import androidx.compose.runtime.Composable 9 | import androidx.compose.ui.Alignment 10 | import androidx.compose.ui.Modifier 11 | import androidx.compose.ui.res.dimensionResource 12 | import androidx.compose.ui.text.font.FontWeight 13 | import androidx.compose.ui.tooling.preview.Preview 14 | import androidx.compose.ui.unit.dp 15 | import com.vipulasri.jetdelivery.R 16 | import com.vipulasri.jetdelivery.components.PrimaryText 17 | 18 | @Composable 19 | fun ShowHeader(title: String, hasMore: Boolean) { 20 | Row( 21 | modifier = Modifier.padding( 22 | horizontal = dimensionResource(id = R.dimen.padding), 23 | vertical = 5.dp 24 | ) 25 | ) { 26 | PrimaryText { 27 | Text( 28 | modifier = Modifier 29 | .weight(1f) 30 | .align(Alignment.CenterVertically), 31 | text = title, 32 | style = MaterialTheme.typography.h6 33 | ) 34 | } 35 | 36 | if (hasMore) { 37 | TextButton( 38 | onClick = { 39 | 40 | } 41 | ) { 42 | Text( 43 | modifier = Modifier, 44 | text = "View All", 45 | style = MaterialTheme.typography.caption.copy(fontWeight = FontWeight.W600) 46 | ) 47 | } 48 | } 49 | } 50 | } 51 | 52 | @Preview 53 | @Composable 54 | private fun PreviewHeader() { 55 | ShowHeader(title = "Popular Restaurants Near You", hasMore = true) 56 | } -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/ui/dashboard/Resturant.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.ui.dashboard 2 | 3 | import androidx.compose.foundation.background 4 | import androidx.compose.foundation.layout.* 5 | import androidx.compose.foundation.shape.RoundedCornerShape 6 | import androidx.compose.material.Icon 7 | import androidx.compose.material.MaterialTheme 8 | import androidx.compose.material.Text 9 | import androidx.compose.runtime.Composable 10 | import androidx.compose.ui.Alignment 11 | import androidx.compose.ui.Modifier 12 | import androidx.compose.ui.draw.clip 13 | import androidx.compose.ui.graphics.Color 14 | import androidx.compose.ui.res.dimensionResource 15 | import androidx.compose.ui.res.painterResource 16 | import androidx.compose.ui.res.stringResource 17 | import androidx.compose.ui.text.SpanStyle 18 | import androidx.compose.ui.text.buildAnnotatedString 19 | import androidx.compose.ui.unit.dp 20 | import com.vipulasri.jetdelivery.R 21 | import com.vipulasri.jetdelivery.components.LoadImage 22 | import com.vipulasri.jetdelivery.components.PrimaryText 23 | import com.vipulasri.jetdelivery.components.SecondaryText 24 | import com.vipulasri.jetdelivery.network.model.Dashboard 25 | import com.vipulasri.jetdelivery.ui.themeTypography 26 | 27 | @Composable 28 | fun ShowRestaurantElement(item: Dashboard.Item.SubItem) { 29 | Row(modifier = Modifier.padding(dimensionResource(id = R.dimen.padding))) { 30 | RestaurantImage(url = item.imageUrl) 31 | Column( 32 | modifier = Modifier 33 | .weight(1f) 34 | .padding(horizontal = dimensionResource(id = R.dimen.padding)) 35 | .align(Alignment.CenterVertically) 36 | ) { 37 | RestaurantInfo(item = item) 38 | } 39 | } 40 | } 41 | 42 | @Composable 43 | private fun RestaurantImage(url: String) { 44 | LoadImage( 45 | modifier = Modifier 46 | .size(70.dp) 47 | .clip(RoundedCornerShape(5.dp)), 48 | image = url 49 | ) 50 | } 51 | 52 | @Composable 53 | private fun RestaurantInfo(item: Dashboard.Item.SubItem) { 54 | val title = item.title ?: "Name" 55 | val subTitle = item.subTitle ?: "Caption" 56 | val rating = "${item.meta?.rating}" ?: "4.0" 57 | val reviewCount = "${item.meta?.reviewCount}" ?: "500+ reviews" 58 | 59 | PrimaryText { 60 | Text( 61 | text = title, 62 | style = themeTypography.subtitle1 63 | ) 64 | } 65 | 66 | SecondaryText { 67 | Text( 68 | text = subTitle, 69 | style = themeTypography.caption 70 | ) 71 | } 72 | 73 | Row( 74 | verticalAlignment = Alignment.CenterVertically 75 | ) { 76 | Icon( 77 | modifier = Modifier.size(16.dp), 78 | contentDescription = "", 79 | painter = painterResource(id = R.drawable.ic_round_star_24), 80 | tint = Color(0xFFF5CE47) 81 | ) 82 | 83 | Spacer(modifier = Modifier.width(4.dp)) 84 | 85 | Text( 86 | modifier = Modifier 87 | .weight(1f) 88 | .align(Alignment.CenterVertically), 89 | text = buildAnnotatedString { 90 | append(rating) 91 | pushStyle(SpanStyle(color = Color.Gray)) 92 | append(" ( $reviewCount reviews)") 93 | pop() 94 | }, style = MaterialTheme.typography.caption 95 | ) 96 | 97 | Text( 98 | modifier = Modifier 99 | .background(MaterialTheme.colors.primary, RoundedCornerShape(100.dp)) 100 | .padding(horizontal = 5.dp, vertical = 2.dp), 101 | text = stringResource(id = R.string.free_delivery), 102 | color = Color.White, 103 | style = MaterialTheme.typography.overline 104 | ) 105 | } 106 | } 107 | -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/ui/main/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.ui.main 2 | 3 | import android.os.Bundle 4 | import androidx.activity.compose.setContent 5 | import androidx.appcompat.app.AppCompatActivity 6 | import androidx.compose.material.Scaffold 7 | import androidx.compose.runtime.* 8 | import androidx.compose.runtime.livedata.observeAsState 9 | import androidx.compose.ui.res.stringResource 10 | import androidx.lifecycle.ViewModelProvider 11 | import com.vipulasri.jetdelivery.R 12 | import com.vipulasri.jetdelivery.components.AppTopBar 13 | import com.vipulasri.jetdelivery.components.ShowError 14 | import com.vipulasri.jetdelivery.components.ShowLoading 15 | import com.vipulasri.jetdelivery.data.Result 16 | import com.vipulasri.jetdelivery.ui.JetDeliveryTheme 17 | import com.vipulasri.jetdelivery.ui.dashboard.ShowDashboard 18 | 19 | class MainActivity : AppCompatActivity() { 20 | 21 | private lateinit var viewModel: MainViewModel 22 | 23 | override fun onCreate(savedInstanceState: Bundle?) { 24 | super.onCreate(savedInstanceState) 25 | 26 | viewModel = ViewModelProvider(this).get(MainViewModel::class.java) 27 | 28 | setContent { 29 | JetDeliveryApp(viewModel) 30 | } 31 | } 32 | } 33 | 34 | @Composable 35 | fun JetDeliveryApp(viewModel: MainViewModel) { 36 | var showRandom by remember { mutableStateOf(false) } 37 | 38 | viewModel.loadData(showRandom) 39 | 40 | JetDeliveryTheme { 41 | Scaffold( 42 | topBar = { 43 | AppTopBar( 44 | name = stringResource(id = R.string.app_name), 45 | showRandom = showRandom, 46 | onShowRandomDashboardChange = { 47 | showRandom = it 48 | } 49 | ) 50 | } 51 | ) { 52 | when (val data = viewModel.dashboardItems.observeAsState().value) { 53 | is Result.Loading -> { 54 | ShowLoading() 55 | } 56 | is Result.Success -> { 57 | ShowDashboard( 58 | data = data.data ?: emptyList() 59 | ) 60 | } 61 | is Result.Failure -> { 62 | ShowError( 63 | message = data.error.message ?: "", 64 | onRetry = { 65 | viewModel.loadData(showRandom) 66 | } 67 | ) 68 | } 69 | else -> { 70 | // do nothing 71 | } 72 | } 73 | } 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /app/src/main/java/com/vipulasri/jetdelivery/ui/main/MainViewModel.kt: -------------------------------------------------------------------------------- 1 | package com.vipulasri.jetdelivery.ui.main 2 | 3 | import androidx.lifecycle.LiveData 4 | import androidx.lifecycle.MutableLiveData 5 | import androidx.lifecycle.ViewModel 6 | import androidx.lifecycle.viewModelScope 7 | import com.vipulasri.jetdelivery.data.Repository 8 | import com.vipulasri.jetdelivery.data.Result 9 | import com.vipulasri.jetdelivery.network.model.Dashboard 10 | import kotlinx.coroutines.delay 11 | import kotlinx.coroutines.launch 12 | 13 | class MainViewModel : ViewModel() { 14 | 15 | private val _dashboardItems = MutableLiveData>>() 16 | val dashboardItems: LiveData>> = _dashboardItems 17 | 18 | fun loadData(showRandom: Boolean = false) { 19 | _dashboardItems.postValue(Result.Loading) 20 | viewModelScope.launch { 21 | delay(1000) // delay added to slow-down API request 22 | _dashboardItems.postValue(Repository.getDashboardData(showRandom)) 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 13 | 16 | 19 | 22 | 25 | 28 | 31 | 34 | 37 | 40 | 43 | 46 | 49 | 52 | 55 | 58 | 61 | 64 | 67 | 70 | 73 | 76 | 79 | 82 | 85 | 88 | 91 | 94 | 97 | 100 | 103 | 106 | 109 | 112 | 115 | 118 | 119 | 120 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_logo.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 15 | 18 | 21 | 24 | 27 | 30 | 33 | 36 | 39 | 42 | 45 | 48 | 51 | 54 | 57 | 60 | 63 | 66 | 69 | 72 | 75 | 78 | 81 | 84 | 87 | 90 | 93 | 96 | 99 | 102 | 105 | 108 | 111 | 114 | 115 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_round_star_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/placeholder_banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/drawable/placeholder_banner.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/placeholder_category.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/drawable/placeholder_category.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/placeholder_restaurant.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/drawable/placeholder_restaurant.webp -------------------------------------------------------------------------------- /app/src/main/res/font/nunito_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/font/nunito_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/nunito_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/font/nunito_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/nunito_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/font/nunito_semibold.ttf -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipulasri/JetDelivery/c986ad2f4bc29adeb44e1cb13064aa43083e060e/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF8C29 4 | #F1F2F6 5 | #03DAC5 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | JetDelivery 3 | Retry 4 | Free Delivery 5 | Randomize 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 15 | 16 |