aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/view/manga/SearchMangaPage.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/xyz/adjutor/aniki/presentation/view/manga/SearchMangaPage.kt')
-rw-r--r--app/src/main/java/xyz/adjutor/aniki/presentation/view/manga/SearchMangaPage.kt64
1 files changed, 10 insertions, 54 deletions
diff --git a/app/src/main/java/xyz/adjutor/aniki/presentation/view/manga/SearchMangaPage.kt b/app/src/main/java/xyz/adjutor/aniki/presentation/view/manga/SearchMangaPage.kt
index a571473..853ee22 100644
--- a/app/src/main/java/xyz/adjutor/aniki/presentation/view/manga/SearchMangaPage.kt
+++ b/app/src/main/java/xyz/adjutor/aniki/presentation/view/manga/SearchMangaPage.kt
@@ -15,34 +15,27 @@ import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import com.google.android.material.snackbar.Snackbar
import com.google.android.material.textfield.TextInputEditText
-import com.google.gson.Gson
-import com.google.gson.GsonBuilder
-import retrofit2.Call
-import retrofit2.Callback
-import retrofit2.Response
-import retrofit2.Retrofit
-import retrofit2.converter.gson.GsonConverterFactory
import xyz.adjutor.aniki.R
-import xyz.adjutor.aniki.data.manga.SearchMangaApi
+import xyz.adjutor.aniki.presentation.controller.SearchMangaController
import xyz.adjutor.aniki.presentation.model.manga.SearchManga
-import xyz.adjutor.aniki.presentation.model.manga.SearchMangaResponse
import xyz.adjutor.aniki.presentation.view.MainActivity
class SearchMangaPage : Fragment() {
- val gson: Gson = GsonBuilder()
- .setLenient()
- .create()
- private var baseUrl = "https://api.jikan.moe/" //the api's base url
+ lateinit var controller: SearchMangaController
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
// Inflate the layout for this fragment
+ val view = inflater.inflate(R.layout.search_manga_page, container, false)
- return inflater.inflate(R.layout.search_manga_page, container, false)
+ controller = SearchMangaController()
+ controller.onStart(this)
+
+ return view
}
@@ -57,7 +50,7 @@ class SearchMangaPage : Fragment() {
view.findViewById<Button>(R.id.button_query).setOnClickListener {
val userInput = view.findViewById<TextInputEditText>(R.id.tiet_query).text.toString()
hideKeyboard()
- makeApiCall(view, baseUrl, userInput)
+ controller.updateList(userInput)
}
view.findViewById<TextInputEditText>(R.id.tiet_query)
@@ -66,7 +59,7 @@ class SearchMangaPage : Fragment() {
val userInput =
view.findViewById<TextInputEditText>(R.id.tiet_query).text.toString()
hideKeyboard()
- makeApiCall(view, baseUrl, userInput)
+ controller.updateList(userInput)
return@OnEditorActionListener true
}
false
@@ -94,46 +87,9 @@ class SearchMangaPage : Fragment() {
(recyclerView.adapter as SearchMangaAdapter).notifyDataSetChanged()
}
- //call the API and show the list
- private fun makeApiCall(view: View, BASE_URL: String, query: String) {
-
- val retrofit = Retrofit.Builder()
- .baseUrl(BASE_URL)
- .addConverterFactory(GsonConverterFactory.create(gson))
- .build()
-
- val service = retrofit.create(SearchMangaApi::class.java)
- val call = service.getSearchMangaData(q = query) //fate is an exemple, we'll have to replace it by the user input.
-
- call.enqueue(object : Callback<SearchMangaResponse> {
- override fun onResponse(
- call: Call<SearchMangaResponse>,
- response: Response<SearchMangaResponse>
- ) {
- if (response.isSuccessful && response.body() != null) { //if the code returned is >= 200 and < 300 AND the the body ain't empty
-
- val mangaList: List<SearchManga> = response.body()!!
- .getResults() //getting the "search" field containing our list of SearchMangas
-
- showList(
- view,
- mangaList
- ) //calling the method in charge of displaying on the recyclerview
-
- } else {
- showError() //a snackbar
- }
- }
-
- override fun onFailure(call: Call<SearchMangaResponse>, t: Throwable) {
- showError()
- }
-
- })
- }
//display a snack
- private fun showError() {
+ fun showError() {
Snackbar.make(
requireView(),
"API ERROR : Verify your internet connection or your query.",