@@ -10,7 +10,6 @@ import android.widget.Toast
10
10
import androidx.activity.result.contract.ActivityResultContracts
11
11
import androidx.constraintlayout.widget.ConstraintLayout
12
12
import androidx.core.view.updateLayoutParams
13
- import androidx.fragment.app.DialogFragment
14
13
import androidx.lifecycle.ViewModelProvider
15
14
import androidx.recyclerview.widget.RecyclerView
16
15
import com.google.android.material.bottomsheet.BottomSheetBehavior
@@ -30,6 +29,8 @@ import kz.zhombie.bazaar.core.logging.Logger
30
29
import kz.zhombie.bazaar.core.media.MediaScanManager
31
30
import kz.zhombie.bazaar.ui.components.view.HeaderView
32
31
import kz.zhombie.bazaar.ui.components.view.SelectButton
32
+ import kz.zhombie.bazaar.ui.model.UIMedia
33
+ import kz.zhombie.bazaar.ui.model.UIMultimedia
33
34
import kz.zhombie.bazaar.ui.presentation.audible.AudiosAdapter
34
35
import kz.zhombie.bazaar.ui.presentation.audible.AudiosAdapterManager
35
36
import kz.zhombie.bazaar.ui.presentation.audible.AudiosHeaderAdapter
@@ -40,13 +41,10 @@ import kz.zhombie.bazaar.ui.presentation.folder.FoldersAdapterManager
40
41
import kz.zhombie.bazaar.ui.presentation.visual.VisualMediaAdapter
41
42
import kz.zhombie.bazaar.ui.presentation.visual.VisualMediaAdapterManager
42
43
import kz.zhombie.bazaar.ui.presentation.visual.VisualMediaHeaderAdapter
43
- import kz.zhombie.bazaar.ui.model.UIMedia
44
- import kz.zhombie.bazaar.ui.model.UIMultimedia
45
44
import kz.zhombie.bazaar.utils.*
46
45
import kz.zhombie.bazaar.utils.contract.GetContentContract
47
46
import kz.zhombie.bazaar.utils.contract.GetMultipleContentsContract
48
47
import kz.zhombie.bazaar.utils.contract.TakeVideoContract
49
- import kz.zhombie.bazaar.utils.windowHeight
50
48
import kz.zhombie.cinema.CinemaDialogFragment
51
49
import kz.zhombie.cinema.model.Movie
52
50
import kz.zhombie.museum.MuseumDialogFragment
@@ -97,10 +95,6 @@ internal class MediaStoreFragment : BottomSheetDialogFragment(),
97
95
// ViewModel
98
96
private lateinit var viewModel: MediaStoreViewModel
99
97
100
- // UI interface floating messages
101
- private var dialogFragment: DialogFragment ? = null
102
- private var toast: Toast ? = null
103
-
104
98
// RecyclerView Adapters
105
99
private var foldersAdapterManager: FoldersAdapterManager ? = null
106
100
private var visualMediaAdapterManager: VisualMediaAdapterManager ? = null
@@ -277,6 +271,7 @@ internal class MediaStoreFragment : BottomSheetDialogFragment(),
277
271
super .onDestroy()
278
272
279
273
eventListener?.onDestroy()
274
+ eventListener = null
280
275
}
281
276
282
277
private fun setupHeaderView () {
@@ -609,38 +604,40 @@ internal class MediaStoreFragment : BottomSheetDialogFragment(),
609
604
*/
610
605
611
606
override fun onImageClicked (imageView : ShapeableImageView , uiMedia : UIMedia ) {
612
- dialogFragment?.dismiss()
613
- dialogFragment = null
614
- dialogFragment = MuseumDialogFragment .Builder ()
607
+ MuseumDialogFragment .Builder ()
615
608
.setPaintingLoader(Settings .getImageLoader())
616
609
.setPainting(
617
610
Painting (
618
611
uri = uiMedia.media.uri,
619
- info = Painting .Info (uiMedia.getDisplayTitle(), uiMedia.media.folderDisplayName)
612
+ info = Painting .Info (
613
+ title = uiMedia.getDisplayTitle(),
614
+ subtitle = uiMedia.media.folderDisplayName
615
+ )
620
616
)
621
617
)
622
618
.setImageView(imageView)
623
619
.setFooterViewEnabled(true )
624
- .show (childFragmentManager)
620
+ .showSafely (childFragmentManager)
625
621
}
626
622
627
623
override fun onImageCheckboxClicked (uiMedia : UIMedia ) {
628
624
viewModel.onMediaCheckboxClicked(uiMedia)
629
625
}
630
626
631
627
override fun onVideoClicked (imageView : ShapeableImageView , uiMedia : UIMedia ) {
632
- dialogFragment?.dismiss()
633
- dialogFragment = null
634
- dialogFragment = CinemaDialogFragment .Builder ()
628
+ CinemaDialogFragment .Builder ()
635
629
.setMovie(
636
630
Movie (
637
631
uri = uiMedia.media.uri,
638
- info = Movie .Info (uiMedia.getDisplayTitle(), uiMedia.media.folderDisplayName)
632
+ info = Movie .Info (
633
+ title = uiMedia.getDisplayTitle(),
634
+ subtitle = uiMedia.media.folderDisplayName
635
+ )
639
636
)
640
637
)
641
638
.setScreenView(imageView)
642
639
.setFooterViewEnabled(true )
643
- .show (childFragmentManager)
640
+ .showSafely (childFragmentManager)
644
641
}
645
642
646
643
override fun onVideoCheckboxClicked (uiMedia : UIMedia ) {
@@ -739,10 +736,7 @@ internal class MediaStoreFragment : BottomSheetDialogFragment(),
739
736
}
740
737
741
738
override fun onPlayerError (cause : Throwable ? ) {
742
- toast?.cancel()
743
- toast = null
744
- toast = Toast .makeText(context, R .string.bazaar_error_player, Toast .LENGTH_SHORT )
745
- toast?.show()
739
+ Toast .makeText(context, R .string.bazaar_error_player, Toast .LENGTH_SHORT ).show()
746
740
}
747
741
})
748
742
.also { viewLifecycleOwner.lifecycle.addObserver(it) }
@@ -799,27 +793,17 @@ internal class MediaStoreFragment : BottomSheetDialogFragment(),
799
793
override fun onDocumentIconClicked (uiMultimedia : UIMultimedia ) {
800
794
val path = uiMultimedia.multimedia.path
801
795
if (path.isNullOrBlank()) {
802
- toast?.cancel()
803
- toast = null
804
- toast = Toast .makeText(requireContext(), R .string.bazaar_error_file_not_found, Toast .LENGTH_SHORT )
805
- toast?.show()
806
- return
796
+ return Toast .makeText(context, R .string.bazaar_error_file_not_found, Toast .LENGTH_SHORT ).show()
807
797
}
808
798
val file = File (path)
809
799
when (val action = file.open(requireContext())) {
810
800
is OpenFileAction .Success -> {
811
801
if (! action.tryToLaunch(requireContext())) {
812
- toast?.cancel()
813
- toast = null
814
- toast = Toast .makeText(requireContext(), R .string.bazaar_error_file_not_found, Toast .LENGTH_SHORT )
815
- toast?.show()
802
+ Toast .makeText(context, R .string.bazaar_error_file_not_found, Toast .LENGTH_SHORT ).show()
816
803
}
817
804
}
818
805
is OpenFileAction .Error -> {
819
- toast?.cancel()
820
- toast = null
821
- toast = Toast .makeText(requireContext(), R .string.bazaar_error_file_not_found, Toast .LENGTH_SHORT )
822
- toast?.show()
806
+ Toast .makeText(context, R .string.bazaar_error_file_not_found, Toast .LENGTH_SHORT ).show()
823
807
}
824
808
}
825
809
}
0 commit comments