|
@@ -1,60 +1,90 @@
|
|
|
package com.sambath.kunkhmer.screen.news
|
|
|
|
|
|
+import android.app.Activity
|
|
|
+import android.content.Intent
|
|
|
+import android.net.Uri
|
|
|
import android.os.Bundle
|
|
|
import androidx.fragment.app.Fragment
|
|
|
import android.view.LayoutInflater
|
|
|
import android.view.View
|
|
|
import android.view.ViewGroup
|
|
|
+import android.widget.Toast
|
|
|
+import androidx.activity.result.ActivityResultLauncher
|
|
|
+import androidx.activity.result.contract.ActivityResultContracts
|
|
|
+import androidx.navigation.findNavController
|
|
|
import com.sambath.kunkhmer.R
|
|
|
+import com.sambath.kunkhmer.app.App
|
|
|
+import com.sambath.kunkhmer.remote.CreateNewsRequest
|
|
|
+import kotlinx.android.synthetic.main.fragment_news_admin.view.et_desc
|
|
|
+import kotlinx.android.synthetic.main.fragment_news_admin.view.et_title
|
|
|
+import kotlinx.android.synthetic.main.fragment_news_admin.view.submitButton
|
|
|
+import kotlinx.android.synthetic.main.fragment_news_admin.view.uploadButton
|
|
|
+import kotlinx.android.synthetic.main.fragment_news_admin.view.uploadedImageView
|
|
|
+import androidx.navigation.findNavController
|
|
|
|
|
|
-// TODO: Rename parameter arguments, choose names that match
|
|
|
-// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
|
|
|
-private const val ARG_PARAM1 = "param1"
|
|
|
-private const val ARG_PARAM2 = "param2"
|
|
|
-
|
|
|
-/**
|
|
|
- * A simple [Fragment] subclass.
|
|
|
- * Use the [NewsAdminFragment.newInstance] factory method to
|
|
|
- * create an instance of this fragment.
|
|
|
- */
|
|
|
class NewsAdminFragment : Fragment() {
|
|
|
- // TODO: Rename and change types of parameters
|
|
|
- private var param1: String? = null
|
|
|
- private var param2: String? = null
|
|
|
+ private var _root: View? = null
|
|
|
+ private val binding get() = _root!!
|
|
|
+ private lateinit var newsViewModel: NewsViewModel
|
|
|
+ private var imageUri: Uri? = null
|
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
super.onCreate(savedInstanceState)
|
|
|
- arguments?.let {
|
|
|
- param1 = it.getString(ARG_PARAM1)
|
|
|
- param2 = it.getString(ARG_PARAM2)
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
|
|
|
+ _root = inflater.inflate(R.layout.fragment_news_admin, container, false)
|
|
|
+
|
|
|
+ newsViewModel = NewsViewModel(App.injectApiService(), App.injectPrefHelper())
|
|
|
+ newsViewModel.state.observe(viewLifecycleOwner, androidx.lifecycle.Observer {
|
|
|
+ render(it)
|
|
|
+ })
|
|
|
+ binding.uploadButton.setOnClickListener {
|
|
|
+ openImagePicker()
|
|
|
+ }
|
|
|
+
|
|
|
+ binding.submitButton.setOnClickListener{
|
|
|
+ // You can store the image URI as a string in your CreateNewsRequest object
|
|
|
+ val createNewsRequest = CreateNewsRequest(
|
|
|
+ binding.et_title.text.toString(),
|
|
|
+ binding.et_desc.text.toString(),
|
|
|
+ imageUri.toString()
|
|
|
+ )
|
|
|
+
|
|
|
+ newsViewModel.createNews(createNewsRequest.title, createNewsRequest.desc, createNewsRequest.upload)
|
|
|
}
|
|
|
+
|
|
|
+ return binding;
|
|
|
}
|
|
|
|
|
|
- override fun onCreateView(
|
|
|
- inflater: LayoutInflater, container: ViewGroup?,
|
|
|
- savedInstanceState: Bundle?
|
|
|
- ): View? {
|
|
|
- // Inflate the layout for this fragment
|
|
|
- return inflater.inflate(R.layout.fragment_news_admin, container, false)
|
|
|
+ private fun render(state: NewsViewState) {
|
|
|
+ if (state.isLoginSuccess) {
|
|
|
+ Toast.makeText(context, "Create Success...", Toast.LENGTH_LONG).show()
|
|
|
+
|
|
|
+ binding.et_title.setText("")
|
|
|
+ binding.et_desc.setText("")
|
|
|
+ binding.uploadedImageView.setImageDrawable(null)
|
|
|
+ }
|
|
|
+ // Other state handling...
|
|
|
}
|
|
|
|
|
|
- companion object {
|
|
|
- /**
|
|
|
- * Use this factory method to create a new instance of
|
|
|
- * this fragment using the provided parameters.
|
|
|
- *
|
|
|
- * @param param1 Parameter 1.
|
|
|
- * @param param2 Parameter 2.
|
|
|
- * @return A new instance of fragment NewsAdminFragment.
|
|
|
- */
|
|
|
- // TODO: Rename and change types and number of parameters
|
|
|
- @JvmStatic
|
|
|
- fun newInstance(param1: String, param2: String) =
|
|
|
- NewsAdminFragment().apply {
|
|
|
- arguments = Bundle().apply {
|
|
|
- putString(ARG_PARAM1, param1)
|
|
|
- putString(ARG_PARAM2, param2)
|
|
|
+ private val imagePicker: ActivityResultLauncher<Intent> =
|
|
|
+ registerForActivityResult(ActivityResultContracts.StartActivityForResult()) { result ->
|
|
|
+ if (result.resultCode == Activity.RESULT_OK) {
|
|
|
+ val data: Intent? = result.data
|
|
|
+ if (data != null) {
|
|
|
+ imageUri = data.data // The URI of the selected image
|
|
|
+ if (imageUri != null) {
|
|
|
+ // Load and display the selected image in the ImageView
|
|
|
+ binding.uploadedImageView.setImageURI(imageUri)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
+
|
|
|
+ private fun openImagePicker() {
|
|
|
+ val intent = Intent(Intent.ACTION_GET_CONTENT)
|
|
|
+ intent.type = "image/*"
|
|
|
+ imagePicker.launch(intent)
|
|
|
}
|
|
|
}
|