diff --git a/android/src/com/mapswithme/maps/discovery/DiscoveryFragment.java b/android/src/com/mapswithme/maps/discovery/DiscoveryFragment.java index bd5bb7efb8..89da7f77ac 100644 --- a/android/src/com/mapswithme/maps/discovery/DiscoveryFragment.java +++ b/android/src/com/mapswithme/maps/discovery/DiscoveryFragment.java @@ -181,20 +181,10 @@ public class DiscoveryFragment extends BaseMwmToolbarFragment implements Discove initFoodGallery(); initLocalExpertsGallery(); initSearchBasedAdapters(); - initCrossTrafficGallery(view); + initCatalogPromoGallery(view); requestDiscoveryInfoAndInitAdapters(); } - private void initCrossTrafficGallery(@NonNull View root) - { - mCatalogPromoRecycler = root.findViewById(R.id.catalog_promo_recycler); - setLayoutManagerAndItemDecoration(requireContext(), mCatalogPromoRecycler); - View titleView = root.findViewById(R.id.catalog_promo_title); - titleView.setVisibility(View.VISIBLE); - mCatalogPromoRecycler.setVisibility(View.VISIBLE); - mCatalogPromoRecycler.setAdapter(Factory.createCatalogPromoLoadingAdapter()); - } - private void requestDiscoveryInfoAndInitAdapters() { NetworkPolicy.checkNetworkPolicy(getFragmentManager(), policy -> @@ -219,6 +209,8 @@ public class DiscoveryFragment extends BaseMwmToolbarFragment implements Discove { RecyclerView localGuides = getGallery(R.id.localGuides); localGuides.setAdapter(Factory.createLocalExpertsLoadingAdapter()); + RecyclerView promoRecycler = getGallery(R.id.catalog_promo_recycler); + promoRecycler.setAdapter(Factory.createCatalogPromoLoadingAdapter()); return; } @@ -228,6 +220,16 @@ public class DiscoveryFragment extends BaseMwmToolbarFragment implements Discove R.id.localGuides); } + + private void initCatalogPromoGallery(@NonNull View root) + { + RecyclerView catalogPromoRecycler = root.findViewById(R.id.catalog_promo_recycler); + setLayoutManagerAndItemDecoration(requireContext(), catalogPromoRecycler); + View titleView = root.findViewById(R.id.catalog_promo_title); + titleView.setVisibility(View.VISIBLE); + catalogPromoRecycler.setVisibility(View.VISIBLE); + } + private void requestDiscoveryInfo() { DiscoveryParams params; @@ -300,14 +302,15 @@ public class DiscoveryFragment extends BaseMwmToolbarFragment implements Discove gallery.setAdapter(adapter); } - public void initCatalogPromoRecycler(@NonNull RegularAdapterStrategy.Item[] experts) + public void onCatalogPromoReceived(@NonNull RegularAdapterStrategy.Item[] experts) { updateViewsVisibility(experts, R.id.catalog_promo_title, R.id.catalog_promo_recycler); String url = ""; ItemSelectedListener listener = new CatalogPromoSelectedListener(); GalleryAdapter adapter = Factory.createCatalogPromoAdapter(experts, url, listener, DISCOVERY); - mCatalogPromoRecycler.setAdapter(adapter); + RecyclerView recycler = getGallery(R.id.catalog_promo_recycler); + recycler.setAdapter(adapter); } @Override diff --git a/android/src/com/mapswithme/maps/gallery/AdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/AdapterStrategy.java index 8b1afeeb87..07d334bcad 100644 --- a/android/src/com/mapswithme/maps/gallery/AdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/AdapterStrategy.java @@ -1,6 +1,7 @@ package com.mapswithme.maps.gallery; import android.support.annotation.NonNull; +import android.support.annotation.Nullable; import android.view.ViewGroup; import java.util.ArrayList; @@ -8,9 +9,17 @@ import java.util.List; public abstract class AdapterStrategy, I extends Items.Item> { + @Nullable + private final ItemSelectedListener mListener; + @NonNull protected final List mItems = new ArrayList<>(); + AdapterStrategy(@Nullable ItemSelectedListener listener) + { + mListener = listener; + } + @NonNull abstract VH createViewHolder(@NonNull ViewGroup parent, int viewType, @NonNull GalleryAdapter adapter); @@ -23,4 +32,10 @@ public abstract class AdapterStrategy, I ex { return mItems.size(); } + + @Nullable + protected ItemSelectedListener getListener() + { + return mListener; + } } diff --git a/android/src/com/mapswithme/maps/gallery/ErrorAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/ErrorAdapterStrategy.java new file mode 100644 index 0000000000..1678533fea --- /dev/null +++ b/android/src/com/mapswithme/maps/gallery/ErrorAdapterStrategy.java @@ -0,0 +1,20 @@ +package com.mapswithme.maps.gallery; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.View; + +public abstract class ErrorAdapterStrategy extends SingleItemAdapterStrategy +{ + protected ErrorAdapterStrategy(@Nullable String url, + @Nullable ItemSelectedListener listener) + { + super(url, listener); + } + + @Override + protected Holders.ErrorViewHolder createViewHolder(@NonNull View itemView) + { + return new Holders.ErrorViewHolder(itemView, mItems, getListener()); + } +} diff --git a/android/src/com/mapswithme/maps/gallery/GalleryAdapter.java b/android/src/com/mapswithme/maps/gallery/GalleryAdapter.java index ddd9c6b7b1..5b1288029a 100644 --- a/android/src/com/mapswithme/maps/gallery/GalleryAdapter.java +++ b/android/src/com/mapswithme/maps/gallery/GalleryAdapter.java @@ -10,20 +10,10 @@ public class GalleryAdapter, I extends Item { @NonNull private final AdapterStrategy mStrategy; - @Nullable - private final ItemSelectedListener mListener; - public GalleryAdapter(@NonNull AdapterStrategy strategy, - @Nullable ItemSelectedListener listener) + public GalleryAdapter(@NonNull AdapterStrategy strategy) { mStrategy = strategy; - mListener = listener; - } - - @Nullable - public ItemSelectedListener getListener() - { - return mListener; } @Override diff --git a/android/src/com/mapswithme/maps/gallery/Holders.java b/android/src/com/mapswithme/maps/gallery/Holders.java index 6a8aacffec..9e6b029cf1 100644 --- a/android/src/com/mapswithme/maps/gallery/Holders.java +++ b/android/src/com/mapswithme/maps/gallery/Holders.java @@ -3,6 +3,7 @@ package com.mapswithme.maps.gallery; import android.content.Context; import android.content.res.Resources; import android.graphics.Bitmap; +import android.net.Uri; import android.support.annotation.CallSuper; import android.support.annotation.NonNull; import android.support.annotation.Nullable; @@ -35,10 +36,10 @@ public class Holders extends BaseViewHolder { - public GenericMoreHolder(@NonNull View itemView, @NonNull List items, @NonNull GalleryAdapter - adapter) + public GenericMoreHolder(@NonNull View itemView, @NonNull List items, + @Nullable ItemSelectedListener listener) { - super(itemView, items, adapter.getListener()); + super(itemView, items, listener); } @Override @@ -56,9 +57,9 @@ public class Holders { public SearchMoreHolder(@NonNull View itemView, @NonNull List items, - @NonNull GalleryAdapter adapter) + @Nullable ItemSelectedListener listener) { - super(itemView, items, adapter); + super(itemView, items, listener); } @Override @@ -80,9 +81,9 @@ public class Holders private final TextView mButton; public LocalExpertViewHolder(@NonNull View itemView, @NonNull List items, - @NonNull GalleryAdapter adapter) + @Nullable ItemSelectedListener listener) { - super(itemView, items, adapter.getListener()); + super(itemView, items, listener); mAvatar = (ImageView) itemView.findViewById(R.id.avatar); mRating = (RatingView) itemView.findViewById(R.id.ratingView); mButton = (TextView) itemView.findViewById(R.id.button); @@ -136,9 +137,10 @@ public class Holders @NonNull private final TextView mButton; - ActionButtonViewHolder(@NonNull View itemView, @NonNull List items, @NonNull GalleryAdapter adapter) + ActionButtonViewHolder(@NonNull View itemView, @NonNull List items, + @Nullable ItemSelectedListener listener) { - super(itemView, items, adapter.getListener()); + super(itemView, items, listener); mButton = itemView.findViewById(R.id.button); mButton.setOnClickListener(this); itemView.findViewById(R.id.infoLayout).setOnClickListener(this); @@ -181,7 +183,7 @@ public class Holders private final RatingView mPopularTagRating; public SearchViewHolder(@NonNull View itemView, @NonNull List items, - @NonNull GalleryAdapter adapter) + @Nullable ItemSelectedListener adapter) { super(itemView, items, adapter); mSubtitle = itemView.findViewById(R.id.subtitle); @@ -221,10 +223,10 @@ public class Holders @NonNull private final TextView mDistance; - public HotelViewHolder(@NonNull View itemView, @NonNull List items, @NonNull - GalleryAdapter adapter) + public HotelViewHolder(@NonNull View itemView, @NonNull List items, @Nullable + ItemSelectedListener listener) { - super(itemView, items, adapter); + super(itemView, items, listener); mTitle = itemView.findViewById(R.id.title); mSubtitle = itemView.findViewById(R.id.subtitle); mRatingView = itemView.findViewById(R.id.ratingView); @@ -339,9 +341,9 @@ public class Holders TextView mMore; LoadingViewHolder(@NonNull View itemView, @NonNull List items, - @NonNull GalleryAdapter adapter) + @Nullable ItemSelectedListener listener) { - super(itemView, items, adapter.getListener()); + super(itemView, items, listener); mProgressBar = (ProgressBar) itemView.findViewById(R.id.pb__progress); mSubtitle = (TextView) itemView.findViewById(R.id.tv__subtitle); mMore = (TextView) itemView.findViewById(R.id.button); @@ -378,9 +380,9 @@ public class Holders public static class SimpleViewHolder extends BaseViewHolder { public SimpleViewHolder(@NonNull View itemView, @NonNull List items, - @NonNull GalleryAdapter adapter) + @Nullable ItemSelectedListener listener) { - super(itemView, items, adapter.getListener()); + super(itemView, items, listener); } } @@ -388,9 +390,9 @@ public class Holders { ErrorViewHolder(@NonNull View itemView, @NonNull List items, - @NonNull GalleryAdapter adapter) + @Nullable ItemSelectedListener listener) { - super(itemView, items, adapter); + super(itemView, items, listener); UiUtils.hide(mProgressBar); } } @@ -398,9 +400,9 @@ public class Holders public static class OfflineViewHolder extends LoadingViewHolder { OfflineViewHolder(@NonNull View itemView, @NonNull List items, - @NonNull GalleryAdapter adapter) + @Nullable ItemSelectedListener listener) { - super(itemView, items, adapter); + super(itemView, items, listener); UiUtils.hide(mProgressBar); } @@ -422,4 +424,39 @@ public class Holders listener.onActionButtonSelected(item, position); } } + + public static class CrossPromoLoadingHolder extends SimpleViewHolder + { + public CrossPromoLoadingHolder(@NonNull View itemView, @NonNull List items, + @Nullable ItemSelectedListener listener) + { + super(itemView, items, listener); + TextView subtitle = itemView.findViewById(R.id.subtitle); + subtitle.setText(""); + } + } + + public static class CatalogPromoHolder extends BaseViewHolder + { + @NonNull + private final ImageView mImage; + + public CatalogPromoHolder(@NonNull View itemView, + @NonNull List items, + @Nullable ItemSelectedListener listener) + { + super(itemView, items, listener); + mImage = itemView.findViewById(R.id.image); + } + + @Override + public void bind(@NonNull RegularAdapterStrategy.Item item) + { + super.bind(item); + Glide.with(itemView.getContext()) + .load(Uri.parse(item.getUrl())) + .placeholder(R.drawable.img_guides_gallery_placeholder) + .into(mImage); + } + } } diff --git a/android/src/com/mapswithme/maps/gallery/LoadingAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/LoadingAdapterStrategy.java new file mode 100644 index 0000000000..4d1cd99050 --- /dev/null +++ b/android/src/com/mapswithme/maps/gallery/LoadingAdapterStrategy.java @@ -0,0 +1,21 @@ +package com.mapswithme.maps.gallery; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.View; + +public abstract class LoadingAdapterStrategy + extends SingleItemAdapterStrategy +{ + + protected LoadingAdapterStrategy(@Nullable String url, @Nullable ItemSelectedListener listener) + { + super(url, listener); + } + + @Override + protected Holders.LoadingViewHolder createViewHolder(@NonNull View itemView) + { + return new Holders.LoadingViewHolder(itemView, mItems, getListener()); + } +} diff --git a/android/src/com/mapswithme/maps/gallery/OfflineAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/OfflineAdapterStrategy.java new file mode 100644 index 0000000000..1b15a97f93 --- /dev/null +++ b/android/src/com/mapswithme/maps/gallery/OfflineAdapterStrategy.java @@ -0,0 +1,29 @@ +package com.mapswithme.maps.gallery; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.View; + +import com.mapswithme.maps.R; + +public abstract class OfflineAdapterStrategy + extends SingleItemAdapterStrategy +{ + protected OfflineAdapterStrategy(@Nullable String url, + @Nullable ItemSelectedListener listener) + { + super(url, listener); + } + + @Override + protected Holders.OfflineViewHolder createViewHolder(@NonNull View itemView) + { + return new Holders.OfflineViewHolder(itemView, mItems, getListener()); + } + + @Override + protected int getLabelForDetailsView() + { + return R.string.details; + } +} diff --git a/android/src/com/mapswithme/maps/gallery/RegularAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/RegularAdapterStrategy.java index 6f0fab3f6a..fb0d4b1629 100644 --- a/android/src/com/mapswithme/maps/gallery/RegularAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/RegularAdapterStrategy.java @@ -14,8 +14,10 @@ public abstract class RegularAdapterStrategy items, @Nullable T moreItem) + public RegularAdapterStrategy(@NonNull List items, @Nullable T moreItem, + @Nullable ItemSelectedListener listener) { + super(listener); boolean showMoreItem = moreItem != null && items.size() >= MAX_ITEMS; int size = showMoreItem ? MAX_ITEMS : items.size(); for (int i = 0; i < size; i++) @@ -35,9 +37,9 @@ public abstract class RegularAdapterStrategy createProductViewHolder(@NonNull ViewGroup parent, - int viewType, - @NonNull GalleryAdapter adapter); + int viewType); @NonNull protected abstract Holders.BaseViewHolder createMoreProductsViewHolder(@NonNull ViewGroup parent, - int viewType, - @NonNull GalleryAdapter adapter); + int viewType); public static class Item extends Items.Item { diff --git a/android/src/com/mapswithme/maps/gallery/SimpleSingleItemAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/SimpleSingleItemAdapterStrategy.java index e66232eb00..0221c36fbd 100644 --- a/android/src/com/mapswithme/maps/gallery/SimpleSingleItemAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/SimpleSingleItemAdapterStrategy.java @@ -12,9 +12,9 @@ import com.mapswithme.maps.MwmApplication; public abstract class SimpleSingleItemAdapterStrategy> extends SingleItemAdapterStrategy { - protected SimpleSingleItemAdapterStrategy() + protected SimpleSingleItemAdapterStrategy(@Nullable ItemSelectedListener listener) { - super(null); + super(null, listener); } @Override @@ -30,7 +30,7 @@ public abstract class SimpleSingleItemAdapterStrategy adapter) { View itemView = inflateView(LayoutInflater.from(parent.getContext()), parent); - return createViewHolder(itemView, adapter); + return createViewHolder(itemView); } @Override diff --git a/android/src/com/mapswithme/maps/gallery/SingleItemAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/SingleItemAdapterStrategy.java index 5034339221..275f940e56 100644 --- a/android/src/com/mapswithme/maps/gallery/SingleItemAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/SingleItemAdapterStrategy.java @@ -15,8 +15,10 @@ import com.mapswithme.maps.R; abstract class SingleItemAdapterStrategy> extends AdapterStrategy { - SingleItemAdapterStrategy(@Nullable String url) + SingleItemAdapterStrategy(@Nullable String url, + @Nullable ItemSelectedListener listener) { + super(listener); buildItem(url); } @@ -45,11 +47,10 @@ abstract class SingleItemAdapterStrategy adapter); + protected abstract T createViewHolder(@NonNull View itemView); @StringRes protected abstract int getLabelForDetailsView(); diff --git a/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoAdapterStrategy.java index c798774436..0309082c14 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoAdapterStrategy.java @@ -1,16 +1,12 @@ package com.mapswithme.maps.gallery.impl; -import android.net.Uri; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; -import android.widget.ImageView; -import com.bumptech.glide.Glide; import com.mapswithme.maps.R; -import com.mapswithme.maps.gallery.GalleryAdapter; import com.mapswithme.maps.gallery.Holders; import com.mapswithme.maps.gallery.ItemSelectedListener; import com.mapswithme.maps.gallery.RegularAdapterStrategy; @@ -19,55 +15,31 @@ import java.util.List; class CatalogPromoAdapterStrategy extends RegularAdapterStrategy { - CatalogPromoAdapterStrategy(@NonNull List items, @Nullable Item moreItem) + CatalogPromoAdapterStrategy(@NonNull List items, @Nullable Item moreItem, + @Nullable ItemSelectedListener listener) { - super(items, moreItem); + super(items, moreItem, listener); } @NonNull @Override protected Holders.BaseViewHolder createProductViewHolder(@NonNull ViewGroup parent, - int viewType, - @NonNull GalleryAdapter adapter) + int viewType) { View view = LayoutInflater.from(parent.getContext()) .inflate(R.layout.catalog_promo_item_card, parent, false); - return new CatalogPromoHolder(view, mItems, adapter.getListener()); + return new Holders.CatalogPromoHolder(view, mItems, getListener()); } @NonNull @Override - protected Holders.BaseViewHolder createMoreProductsViewHolder(@NonNull ViewGroup parent, int viewType, - @NonNull GalleryAdapter adapter) + protected Holders.BaseViewHolder createMoreProductsViewHolder(@NonNull ViewGroup parent, + int viewType) { LayoutInflater inflater = LayoutInflater.from(parent.getContext()); - View view = inflater.inflate(R.layout.item_search_more, parent,false); - return new Holders.GenericMoreHolder<>(view, mItems, adapter); - } - - public static class CatalogPromoHolder extends Holders.BaseViewHolder - { - @NonNull - private final ImageView mImage; - - CatalogPromoHolder(@NonNull View itemView, - @NonNull List items, - @Nullable ItemSelectedListener listener) - { - super(itemView, items, listener); - mImage = itemView.findViewById(R.id.image); - } - - @Override - public void bind(@NonNull Item item) - { - super.bind(item); - Glide.with(itemView.getContext()) - .load(Uri.parse(item.getUrl())) - .placeholder(R.drawable.img_guides_gallery_placeholder) - .into(mImage); - } + View view = inflater.inflate(R.layout.item_search_more, parent, false); + return new Holders.GenericMoreHolder<>(view, mItems, getListener()); } } diff --git a/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoErrorAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoErrorAdapterStrategy.java index 676a52aa6b..afef7928df 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoErrorAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoErrorAdapterStrategy.java @@ -1,14 +1,22 @@ package com.mapswithme.maps.gallery.impl; import android.support.annotation.NonNull; +import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.mapswithme.maps.R; +import com.mapswithme.maps.gallery.ItemSelectedListener; +import com.mapswithme.maps.gallery.Items; class CatalogPromoErrorAdapterStrategy extends SimpleErrorAdapterStrategy { + CatalogPromoErrorAdapterStrategy(@Nullable ItemSelectedListener listener) + { + super(listener); + } + @NonNull @Override protected View inflateView(@NonNull LayoutInflater inflater, @NonNull ViewGroup parent) diff --git a/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoLoadingAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoLoadingAdapterStrategy.java index 408984404a..1dacbfc64c 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoLoadingAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/CatalogPromoLoadingAdapterStrategy.java @@ -1,20 +1,23 @@ package com.mapswithme.maps.gallery.impl; import android.support.annotation.NonNull; +import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; -import android.widget.TextView; import com.mapswithme.maps.R; -import com.mapswithme.maps.gallery.GalleryAdapter; import com.mapswithme.maps.gallery.Holders; +import com.mapswithme.maps.gallery.ItemSelectedListener; import com.mapswithme.maps.gallery.Items; -import java.util.List; - class CatalogPromoLoadingAdapterStrategy extends SimpleLoadingAdapterStrategy { + CatalogPromoLoadingAdapterStrategy(@Nullable ItemSelectedListener listener) + { + super(listener); + } + @NonNull @Override protected View inflateView(@NonNull LayoutInflater inflater, @NonNull ViewGroup parent) @@ -23,19 +26,8 @@ class CatalogPromoLoadingAdapterStrategy extends SimpleLoadingAdapterStrategy } @Override - protected Holders.SimpleViewHolder createViewHolder(@NonNull View itemView, @NonNull GalleryAdapter adapter) + protected Holders.SimpleViewHolder createViewHolder(@NonNull View itemView) { - return new CrossPromoLoadingHolder(itemView, mItems, adapter); - } - - private class CrossPromoLoadingHolder extends Holders.SimpleViewHolder - { - CrossPromoLoadingHolder(@NonNull View itemView, @NonNull List items, - @NonNull GalleryAdapter adapter) - { - super(itemView, items, adapter); - TextView subtitle = itemView.findViewById(R.id.subtitle); - subtitle.setText(""); - } + return new Holders.CrossPromoLoadingHolder(itemView, mItems, getListener()); } } diff --git a/android/src/com/mapswithme/maps/gallery/impl/Factory.java b/android/src/com/mapswithme/maps/gallery/impl/Factory.java index 844694f4f4..73a43b3050 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/Factory.java +++ b/android/src/com/mapswithme/maps/gallery/impl/Factory.java @@ -31,19 +31,19 @@ public class Factory @Nullable Items.MoreSearchItem item) { trackProductGalleryShownOrError(results, type, OFFLINE, placement); - return new GalleryAdapter<>(new SearchBasedAdapterStrategy(results, item), listener); + return new GalleryAdapter<>(new SearchBasedAdapterStrategy(results, item, listener)); } @NonNull public static GalleryAdapter createSearchBasedLoadingAdapter() { - return new GalleryAdapter<>(new SimpleLoadingAdapterStrategy(), null); + return new GalleryAdapter<>(new SimpleLoadingAdapterStrategy(null)); } @NonNull public static GalleryAdapter createSearchBasedErrorAdapter() { - return new GalleryAdapter<>(new SimpleErrorAdapterStrategy(), null); + return new GalleryAdapter<>(new SimpleErrorAdapterStrategy(null)); } @NonNull @@ -54,7 +54,7 @@ public class Factory @NonNull GalleryPlacement placement) { trackProductGalleryShownOrError(results, type, OFFLINE, placement); - return new GalleryAdapter<>(new HotelAdapterStrategy(results), listener); + return new GalleryAdapter<>(new HotelAdapterStrategy(results, listener)); } @NonNull @@ -65,19 +65,19 @@ public class Factory @NonNull GalleryPlacement placement) { trackProductGalleryShownOrError(experts, LOCAL_EXPERTS, ONLINE, placement); - return new GalleryAdapter<>(new LocalExpertsAdapterStrategy(experts, expertsUrl), listener); + return new GalleryAdapter<>(new LocalExpertsAdapterStrategy(experts, expertsUrl, listener)); } @NonNull public static GalleryAdapter createLocalExpertsLoadingAdapter() { - return new GalleryAdapter<>(new LocalExpertsLoadingAdapterStrategy(), null); + return new GalleryAdapter<>(new LocalExpertsLoadingAdapterStrategy(null)); } @NonNull public static GalleryAdapter createLocalExpertsErrorAdapter() { - return new GalleryAdapter<>(new LocalExpertsErrorAdapterStrategy(), null); + return new GalleryAdapter<>(new LocalExpertsErrorAdapterStrategy(null)); } @NonNull @@ -88,20 +88,21 @@ public class Factory { Items.LocalExpertMoreItem item = new Items.LocalExpertMoreItem(url); CatalogPromoAdapterStrategy strategy = new CatalogPromoAdapterStrategy(Arrays.asList(items), - item); - return new GalleryAdapter<>(strategy, listener); + item, + listener); + return new GalleryAdapter<>(strategy); } @NonNull public static GalleryAdapter createCatalogPromoLoadingAdapter() { - return new GalleryAdapter<>(new CatalogPromoLoadingAdapterStrategy(), null); + return new GalleryAdapter<>(new CatalogPromoLoadingAdapterStrategy(null)); } @NonNull public static GalleryAdapter createCatalogPromoErrorAdapter() { - return new GalleryAdapter<>(new CatalogPromoErrorAdapterStrategy(), null); + return new GalleryAdapter<>(new CatalogPromoErrorAdapterStrategy(null)); } private static void trackProductGalleryShownOrError(@NonNull Product[] products, diff --git a/android/src/com/mapswithme/maps/gallery/impl/HotelAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/HotelAdapterStrategy.java index 8d8703e244..8d28c87d11 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/HotelAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/HotelAdapterStrategy.java @@ -7,8 +7,8 @@ import android.view.View; import android.view.ViewGroup; import com.mapswithme.maps.R; -import com.mapswithme.maps.gallery.GalleryAdapter; import com.mapswithme.maps.gallery.Holders; +import com.mapswithme.maps.gallery.ItemSelectedListener; import com.mapswithme.maps.gallery.Items; import com.mapswithme.maps.gallery.RegularAdapterStrategy; import com.mapswithme.maps.search.SearchResult; @@ -17,36 +17,36 @@ import java.util.List; public class HotelAdapterStrategy extends RegularAdapterStrategy { - HotelAdapterStrategy(@NonNull SearchResult[] results) + HotelAdapterStrategy(@NonNull SearchResult[] results, + @Nullable ItemSelectedListener listener) { - this(SearchBasedAdapterStrategy.convertItems(results), new Items.MoreSearchItem()); + this(SearchBasedAdapterStrategy.convertItems(results), new Items.MoreSearchItem(), listener); } - private HotelAdapterStrategy(@NonNull List items, @Nullable Items.SearchItem - moreItem) + private HotelAdapterStrategy(@NonNull List items, + @Nullable Items.SearchItem moreItem, + @Nullable ItemSelectedListener listener) { - super(items, moreItem); + super(items, moreItem, listener); } @NonNull @Override protected Holders.BaseViewHolder createProductViewHolder - (@NonNull ViewGroup parent, int viewType, - @NonNull GalleryAdapter adapter) + (@NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()) .inflate(R.layout.item_discovery_hotel_product, parent, false); - return new Holders.HotelViewHolder(view, mItems, adapter); + return new Holders.HotelViewHolder(view, mItems, getListener()); } @NonNull @Override protected Holders.BaseViewHolder createMoreProductsViewHolder - (@NonNull ViewGroup parent, int viewType, - @NonNull GalleryAdapter adapter) + (@NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_search_more, parent, false); - return new Holders.SearchMoreHolder(view, mItems, adapter); + return new Holders.SearchMoreHolder(view, mItems, getListener()); } } diff --git a/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsAdapterStrategy.java index a4efe4684b..a819b2d2a7 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsAdapterStrategy.java @@ -8,8 +8,8 @@ import android.view.ViewGroup; import com.mapswithme.maps.R; import com.mapswithme.maps.discovery.LocalExpert; -import com.mapswithme.maps.gallery.GalleryAdapter; import com.mapswithme.maps.gallery.Holders; +import com.mapswithme.maps.gallery.ItemSelectedListener; import com.mapswithme.maps.gallery.Items; import com.mapswithme.maps.gallery.RegularAdapterStrategy; @@ -20,30 +20,31 @@ import static com.mapswithme.maps.gallery.Constants.TYPE_PRODUCT; public class LocalExpertsAdapterStrategy extends RegularAdapterStrategy { - LocalExpertsAdapterStrategy(@NonNull LocalExpert[] experts, @Nullable String moreUrl) + LocalExpertsAdapterStrategy(@NonNull LocalExpert[] experts, @Nullable String moreUrl, + @Nullable ItemSelectedListener listener) { - super(convertItems(experts), new Items.LocalExpertMoreItem(moreUrl)); + super(convertItems(experts), new Items.LocalExpertMoreItem(moreUrl), listener); } @NonNull @Override protected Holders.BaseViewHolder createProductViewHolder - (@NonNull ViewGroup parent, int viewType, @NonNull GalleryAdapter adapter) + (@NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()) .inflate(R.layout.item_discovery_expert, parent, false); - return new Holders.LocalExpertViewHolder(view, mItems, adapter); + return new Holders.LocalExpertViewHolder(view, mItems, getListener()); } @NonNull @Override protected Holders.BaseViewHolder createMoreProductsViewHolder - (@NonNull ViewGroup parent, int viewType, @NonNull GalleryAdapter adapter) + (@NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_viator_more, parent, false); - return new Holders.GenericMoreHolder<>(view, mItems, adapter); + return new Holders.GenericMoreHolder<>(view, mItems, getListener()); } @NonNull diff --git a/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsErrorAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsErrorAdapterStrategy.java index ff47717bff..a5cb734f25 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsErrorAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsErrorAdapterStrategy.java @@ -1,14 +1,22 @@ package com.mapswithme.maps.gallery.impl; import android.support.annotation.NonNull; +import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.mapswithme.maps.R; +import com.mapswithme.maps.gallery.ItemSelectedListener; +import com.mapswithme.maps.gallery.Items; public class LocalExpertsErrorAdapterStrategy extends SimpleErrorAdapterStrategy { + LocalExpertsErrorAdapterStrategy(@Nullable ItemSelectedListener listener) + { + super(listener); + } + @NonNull @Override protected View inflateView(@NonNull LayoutInflater inflater, @NonNull ViewGroup parent) diff --git a/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsLoadingAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsLoadingAdapterStrategy.java index 1bc8a9a309..48b6465df1 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsLoadingAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/LocalExpertsLoadingAdapterStrategy.java @@ -1,14 +1,22 @@ package com.mapswithme.maps.gallery.impl; import android.support.annotation.NonNull; +import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.mapswithme.maps.R; +import com.mapswithme.maps.gallery.ItemSelectedListener; +import com.mapswithme.maps.gallery.Items; public class LocalExpertsLoadingAdapterStrategy extends SimpleLoadingAdapterStrategy { + LocalExpertsLoadingAdapterStrategy(@Nullable ItemSelectedListener listener) + { + super(listener); + } + @NonNull @Override protected View inflateView(@NonNull LayoutInflater inflater, @NonNull ViewGroup parent) diff --git a/android/src/com/mapswithme/maps/gallery/impl/SearchBasedAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/SearchBasedAdapterStrategy.java index 1afff03db4..067c9d3b5e 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/SearchBasedAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/SearchBasedAdapterStrategy.java @@ -7,8 +7,8 @@ import android.view.View; import android.view.ViewGroup; import com.mapswithme.maps.R; -import com.mapswithme.maps.gallery.GalleryAdapter; import com.mapswithme.maps.gallery.Holders; +import com.mapswithme.maps.gallery.ItemSelectedListener; import com.mapswithme.maps.gallery.Items; import com.mapswithme.maps.gallery.RegularAdapterStrategy; import com.mapswithme.maps.search.SearchResult; @@ -18,35 +18,37 @@ import java.util.List; class SearchBasedAdapterStrategy extends RegularAdapterStrategy { - SearchBasedAdapterStrategy(@NonNull SearchResult[] results, @Nullable Items.SearchItem moreItem) + SearchBasedAdapterStrategy(@NonNull SearchResult[] results, @Nullable Items.SearchItem moreItem, + @Nullable ItemSelectedListener listener) { - this(convertItems(results), moreItem); + this(convertItems(results), moreItem, listener); } private SearchBasedAdapterStrategy(@NonNull List items, - @Nullable Items.SearchItem moreItem) + @Nullable Items.SearchItem moreItem, + @Nullable ItemSelectedListener listener) { - super(items, moreItem); + super(items, moreItem, listener); } @NonNull @Override protected Holders.BaseViewHolder createProductViewHolder - (@NonNull ViewGroup parent, int viewType, @NonNull GalleryAdapter adapter) + (@NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()) .inflate(R.layout.item_discovery_search, parent, false); - return new Holders.SearchViewHolder(view, mItems, adapter); + return new Holders.SearchViewHolder(view, mItems, getListener()); } @NonNull @Override protected Holders.BaseViewHolder createMoreProductsViewHolder( - @NonNull ViewGroup parent, int viewType, @NonNull GalleryAdapter adapter) + @NonNull ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_search_more, parent, false); - return new Holders.SearchMoreHolder(view, mItems, adapter); + return new Holders.SearchMoreHolder(view, mItems, getListener()); } @NonNull diff --git a/android/src/com/mapswithme/maps/gallery/impl/SimpleErrorAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/SimpleErrorAdapterStrategy.java index d3cda6425c..47debc43f9 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/SimpleErrorAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/SimpleErrorAdapterStrategy.java @@ -1,19 +1,25 @@ package com.mapswithme.maps.gallery.impl; import android.support.annotation.NonNull; +import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.mapswithme.maps.R; -import com.mapswithme.maps.gallery.GalleryAdapter; import com.mapswithme.maps.gallery.Holders; +import com.mapswithme.maps.gallery.ItemSelectedListener; import com.mapswithme.maps.gallery.Items; import com.mapswithme.maps.gallery.SimpleSingleItemAdapterStrategy; public class SimpleErrorAdapterStrategy extends SimpleSingleItemAdapterStrategy { + SimpleErrorAdapterStrategy(@Nullable ItemSelectedListener listener) + { + super(listener); + } + @Override protected int getTitle() { @@ -28,9 +34,8 @@ public class SimpleErrorAdapterStrategy } @Override - protected Holders.SimpleViewHolder createViewHolder(@NonNull View itemView, - @NonNull GalleryAdapter adapter) + protected Holders.SimpleViewHolder createViewHolder(@NonNull View itemView) { - return new Holders.SimpleViewHolder(itemView, mItems, adapter); + return new Holders.SimpleViewHolder(itemView, mItems, getListener()); } } diff --git a/android/src/com/mapswithme/maps/gallery/impl/SimpleLoadingAdapterStrategy.java b/android/src/com/mapswithme/maps/gallery/impl/SimpleLoadingAdapterStrategy.java index ef8a09d9b4..d30a88581f 100644 --- a/android/src/com/mapswithme/maps/gallery/impl/SimpleLoadingAdapterStrategy.java +++ b/android/src/com/mapswithme/maps/gallery/impl/SimpleLoadingAdapterStrategy.java @@ -1,19 +1,25 @@ package com.mapswithme.maps.gallery.impl; import android.support.annotation.NonNull; +import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.mapswithme.maps.R; -import com.mapswithme.maps.gallery.GalleryAdapter; import com.mapswithme.maps.gallery.Holders; +import com.mapswithme.maps.gallery.ItemSelectedListener; import com.mapswithme.maps.gallery.Items; import com.mapswithme.maps.gallery.SimpleSingleItemAdapterStrategy; public class SimpleLoadingAdapterStrategy extends SimpleSingleItemAdapterStrategy { + SimpleLoadingAdapterStrategy(@Nullable ItemSelectedListener listener) + { + super(listener); + } + @Override protected int getTitle() { @@ -28,9 +34,8 @@ public class SimpleLoadingAdapterStrategy } @Override - protected Holders.SimpleViewHolder createViewHolder(@NonNull View itemView, - @NonNull GalleryAdapter adapter) + protected Holders.SimpleViewHolder createViewHolder(@NonNull View itemView) { - return new Holders.SimpleViewHolder(itemView, mItems, adapter); + return new Holders.SimpleViewHolder(itemView, mItems, getListener()); } }