From 8ede9457fd21ac5e272e73f5ece1d4bc9c23faab Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Wed, 19 May 2021 10:07:23 +0200 Subject: Big update Restructuring the packages and adding a Constants.kt for the api URL. Also adding gson in Singletons.kt --- .../controller/SearchAnimeController.kt | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt (limited to 'app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt') diff --git a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt b/app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt new file mode 100644 index 0000000..3ee6047 --- /dev/null +++ b/app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt @@ -0,0 +1,57 @@ +package xyz.adjutor.aniki.presentation.controller + +import retrofit2.Call +import retrofit2.Callback +import retrofit2.Response +import xyz.adjutor.aniki.presentation.Singletons +import xyz.adjutor.aniki.presentation.model.SearchAnime +import xyz.adjutor.aniki.presentation.model.response.SearchAnimeResponse +import xyz.adjutor.aniki.presentation.view.fragment.SearchAnimeFragment + +class SearchAnimeController { + + lateinit var view: SearchAnimeFragment + + fun onStart(searchAnimeFragment: SearchAnimeFragment) { + + view = searchAnimeFragment + } + + //call the API and show the list + private fun makeApiCall(view: SearchAnimeFragment, query: String) { + + Singletons + .searchAnimeApi + .getSearchAnimeData(q = query) + .enqueue(object : Callback { + override fun onResponse( + call: Call, + response: Response + ) { + if (response.isSuccessful && response.body() != null) { //if the code returned is >= 200 and < 300 AND the the body ain't empty + + val animeList: List = response.body()!! + .getResults() //getting the "search" field containing our list of SearchAnimes + + view.showList( + view.requireView(), + animeList + ) //calling the method in charge of displaying on the recyclerview + + } else { + view.showError() //a snackbar + } + } + + override fun onFailure(call: Call, t: Throwable) { + view.showError() + } + + }) + } + + fun updateList(userInput: String) { + makeApiCall(view, userInput) + } + +} \ No newline at end of file -- cgit v1.2.3