Skip to content

Commit

Permalink
Fix klihnt check
Browse files Browse the repository at this point in the history
  • Loading branch information
hieuwu committed Jun 2, 2024
1 parent 5981d6c commit 16e1a6f
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 245 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ class GalleryUpliftFragment : Fragment() {
LogTags.GALLERY_SCREEN,
"currentItem = ${binding.viewPager.currentItem}"
)
collectState()
animatePagerAppearance()
initResultListener()
stackedToasts = StackedToasts(binding.rvToasts, lifecycleScope)
Expand Down Expand Up @@ -239,181 +238,6 @@ class GalleryUpliftFragment : Fragment() {
viewModel.router.exit()
}

private fun collectState() {
// viewLifecycleOwner.lifecycleScope.launch {
// repeatOnLifecycle(Lifecycle.State.STARTED) {
// launch {
// viewModel.showInfoAlert.collect { data ->
// data?.let {
// showInfoAlert(it.path, it.resource, it.metadata)
// }
// }
// }
// launch {
// viewModel.shareLink.collect {
// if (it.isNotEmpty()) {
// shareLink(it)
// }
// }
// }
// launch {
// viewModel.shareResource.collect { path ->
// path?.let {
// shareResource(path)
// }
// }
// }
// launch {
// viewModel.toggleSelect.collect {
// toggleSelecting(it)
// }
// }
// launch {
// viewModel.openLink.collect {
// if (it.isNotEmpty()) {
// openLink(it)
// }
// }
// }
// launch {
// viewModel.viewInExternalApp.collect { path ->
// path?.let {
// viewInExternalApp(it)
// }
// }
// }
// launch {
// viewModel.editResource.collect { path ->
// path?.let {
// editResource(it)
// }
// }
// }
// launch {
// viewModel.notifyResourceChange.collect {
// notifyResourcesChanged()
// }
// }
// launch {
// viewModel.displayPreviewTags.collect {
// if (it != null) {
// displayPreviewTags(it.resourceId, it.tags)
// }
// }
// }
// launch {
// viewModel.notifyCurrentItemChange.collect {
// if (it) {
// notifyCurrentItemChanged()
// }
// }
// }
// launch {
// viewModel.updatePagerAdapterWithDiff.collect {
// if (it) {
// updatePagerAdapterWithDiff()
// }
// }
// }
// launch {
// viewModel.displaySelected.collect {
// it?.let {
// displaySelected(
// selected = it.selected,
// showAnim = it.showAnim,
// selectedCount = it.selectedCount,
// itemCount = viewModel.galleryItems.size
// )
// }
// }
// }
// launch {
// viewModel.toastIndexFailedPath.collect {
// it?.let {
// toastIndexFailedPath(it)
// }
// }
// }
// launch {
// viewModel.notifyResourceScoresChanged.collect {
// if (it) {
// notifyResourceScoresChanged()
// }
// }
// }
// launch {
// viewModel.updatePagerAdapter.collect {
// updatePagerAdapter()
// }
// }
// launch {
// viewModel.setControlsVisibility.collect {
// setControlsVisibility(it)
// }
// }
// launch {
// viewModel.onNavigateBack.collect {
// if (it) {
// onBackClick()
// }
// }
// }
// launch {
// viewModel.deleteResource.collect {
// it?.let {
// deleteResource(it)
// }
// }
// }
// launch {
// viewModel.setUpPreview.collect {
// it?.let {
// setupPreview(it.position, it.meta)
// }
// }
// }
// launch {
// viewModel.showEditTagsDialog.collect {
// it?.let {
// showEditTagsDialog(
// resource = it.resource,
// resources = it.resources,
// statsStorage = it.statsStorage,
// rootAndFav = it.rootAndFav,
// index = it.index,
// storage = it.storage,
// )
// }
// }
// }
// launch {
// viewModel.displayStorageException.collect {
// it?.let {
// displayStorageException(it.label, it.messenger)
// }
// }
// }
// launch {
// viewModel.notifyTagsChanged.collect {
// if (it) {
// notifyTagsChanged()
// }
// }
// }
// launch {
// viewModel.showProgressWithText.collect {
// it?.let {
// setProgressVisibility(
// isVisible = it.isVisible,
// withText = it.text
// )
// }
// }
// }
// }
// }
}

private fun updatePagerAdapter() {
pagerAdapter.notifyDataSetChanged()
binding.viewPager.adapter?.itemCount?.let { count ->
Expand Down
Loading

0 comments on commit 16e1a6f

Please sign in to comment.