mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
147 lines
5.1 KiB
Kotlin
147 lines
5.1 KiB
Kotlin
package com.github.libretube
|
|
|
|
import android.content.Context
|
|
import android.os.Bundle
|
|
import android.text.Editable
|
|
import android.text.TextWatcher
|
|
import android.util.Log
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import android.view.WindowManager
|
|
import android.view.inputmethod.EditorInfo
|
|
import android.view.inputmethod.InputMethodManager
|
|
import android.widget.AdapterView
|
|
import android.widget.ArrayAdapter
|
|
import android.widget.AutoCompleteTextView
|
|
import android.widget.TextView.OnEditorActionListener
|
|
import androidx.fragment.app.Fragment
|
|
import androidx.lifecycle.lifecycleScope
|
|
import androidx.recyclerview.widget.GridLayoutManager
|
|
import androidx.recyclerview.widget.RecyclerView
|
|
import com.github.libretube.adapters.SearchAdapter
|
|
import kotlinx.coroutines.GlobalScope
|
|
import kotlinx.coroutines.delay
|
|
import kotlinx.coroutines.launch
|
|
import retrofit2.HttpException
|
|
import java.io.IOException
|
|
|
|
|
|
class SearchFragment : Fragment() {
|
|
private val TAG = "SearchFragment"
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
super.onCreate(savedInstanceState)
|
|
arguments?.let {
|
|
|
|
}
|
|
}
|
|
|
|
override fun onCreateView(
|
|
inflater: LayoutInflater, container: ViewGroup?,
|
|
savedInstanceState: Bundle?
|
|
): View? {
|
|
// Inflate the layout for this fragment
|
|
return inflater.inflate(R.layout.fragment_search, container, false)
|
|
}
|
|
|
|
|
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
|
super.onViewCreated(view, savedInstanceState)
|
|
val recyclerView = view.findViewById<RecyclerView>(R.id.search_recycler)
|
|
recyclerView.layoutManager = GridLayoutManager(view.context, 1)
|
|
val autoTextView = view.findViewById<AutoCompleteTextView>(R.id.autoCompleteTextView)
|
|
autoTextView.requestFocus()
|
|
val imm = requireContext().getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
|
|
imm!!.showSoftInput(autoTextView, InputMethodManager.SHOW_IMPLICIT)
|
|
autoTextView.addTextChangedListener(object : TextWatcher {
|
|
override fun beforeTextChanged(
|
|
s: CharSequence?,
|
|
start: Int,
|
|
count: Int,
|
|
after: Int
|
|
) {
|
|
|
|
}
|
|
|
|
override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {
|
|
if(s!! != ""){
|
|
GlobalScope.launch {
|
|
fetchSuggestions(s.toString(), autoTextView)
|
|
delay(3000)
|
|
fetchSearch(s.toString(),recyclerView)
|
|
}
|
|
}
|
|
}
|
|
|
|
override fun afterTextChanged(s: Editable?) {
|
|
|
|
}
|
|
|
|
})
|
|
autoTextView.setOnEditorActionListener(OnEditorActionListener { _, actionId, _ ->
|
|
if (actionId == EditorInfo.IME_ACTION_SEARCH) {
|
|
hideKeyboard();
|
|
autoTextView.dismissDropDown();
|
|
return@OnEditorActionListener true
|
|
}
|
|
false
|
|
})
|
|
autoTextView.setOnItemClickListener { _, _, _, _ ->
|
|
hideKeyboard()
|
|
}
|
|
}
|
|
|
|
private fun fetchSuggestions(query: String, autoTextView: AutoCompleteTextView){
|
|
lifecycleScope.launchWhenCreated {
|
|
val response = try {
|
|
RetrofitInstance.api.getSuggestions(query)
|
|
} catch (e: IOException) {
|
|
println(e)
|
|
Log.e(TAG, "IOException, you might not have internet connection")
|
|
return@launchWhenCreated
|
|
} catch (e: HttpException) {
|
|
Log.e(TAG, "HttpException, unexpected response")
|
|
return@launchWhenCreated
|
|
}
|
|
val adapter = ArrayAdapter(requireContext(), android.R.layout.simple_list_item_1, response)
|
|
autoTextView.setAdapter(adapter)
|
|
}
|
|
}
|
|
private fun fetchSearch(query: String, recyclerView: RecyclerView){
|
|
lifecycleScope.launchWhenCreated {
|
|
val response = try {
|
|
RetrofitInstance.api.getSearchResults(query, "all")
|
|
} catch (e: IOException) {
|
|
println(e)
|
|
Log.e(TAG, "IOException, you might not have internet connection $e")
|
|
return@launchWhenCreated
|
|
} catch (e: HttpException) {
|
|
Log.e(TAG, "HttpException, unexpected response")
|
|
return@launchWhenCreated
|
|
}
|
|
if(response.items!!.isNotEmpty()){
|
|
runOnUiThread {
|
|
recyclerView.adapter = SearchAdapter(response.items)
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
private fun Fragment?.runOnUiThread(action: () -> Unit) {
|
|
this ?: return
|
|
if (!isAdded) return // Fragment not attached to an Activity
|
|
activity?.runOnUiThread(action)
|
|
}
|
|
|
|
override fun onResume() {
|
|
super.onResume()
|
|
requireActivity().window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN)
|
|
}
|
|
|
|
override fun onStop() {
|
|
super.onStop()
|
|
hideKeyboard()
|
|
}
|
|
}
|