Refactor group markers
This commit is contained in:
parent
c40eb96bd7
commit
560c229277
1 changed files with 96 additions and 60 deletions
|
@ -7,8 +7,10 @@ import android.view.ViewGroup;
|
||||||
import android.widget.CompoundButton;
|
import android.widget.CompoundButton;
|
||||||
import android.widget.ImageView;
|
import android.widget.ImageView;
|
||||||
|
|
||||||
|
import androidx.annotation.DrawableRes;
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
|
import androidx.annotation.StringRes;
|
||||||
import androidx.appcompat.content.res.AppCompatResources;
|
import androidx.appcompat.content.res.AppCompatResources;
|
||||||
import androidx.core.content.ContextCompat;
|
import androidx.core.content.ContextCompat;
|
||||||
import androidx.recyclerview.widget.RecyclerView;
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
@ -36,6 +38,7 @@ import net.osmand.plus.mapmarkers.SelectWptCategoriesBottomSheetDialogFragment;
|
||||||
import net.osmand.plus.wikivoyage.article.WikivoyageArticleDialogFragment;
|
import net.osmand.plus.wikivoyage.article.WikivoyageArticleDialogFragment;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
|
import net.osmand.util.Algorithms;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
|
@ -54,10 +57,6 @@ public class MapMarkersGroupsAdapter extends RecyclerView.Adapter<RecyclerView.V
|
||||||
private static final int SHOW_HIDE_HISTORY_TYPE = 3;
|
private static final int SHOW_HIDE_HISTORY_TYPE = 3;
|
||||||
private static final int CATEGORIES_TYPE = 4;
|
private static final int CATEGORIES_TYPE = 4;
|
||||||
|
|
||||||
private static final int TODAY_HEADER = 56;
|
|
||||||
private static final int YESTERDAY_HEADER = 57;
|
|
||||||
private static final int LAST_SEVEN_DAYS_HEADER = 58;
|
|
||||||
private static final int THIS_YEAR_HEADER = 59;
|
|
||||||
|
|
||||||
private MapActivity mapActivity;
|
private MapActivity mapActivity;
|
||||||
private OsmandApplication app;
|
private OsmandApplication app;
|
||||||
|
@ -107,50 +106,85 @@ public class MapMarkersGroupsAdapter extends RecyclerView.Adapter<RecyclerView.V
|
||||||
List<MapMarkersGroup> groups = new ArrayList<>(helper.getMapMarkersGroups());
|
List<MapMarkersGroup> groups = new ArrayList<>(helper.getMapMarkersGroups());
|
||||||
groups.addAll(helper.getGroupsForDisplayedGpx());
|
groups.addAll(helper.getGroupsForDisplayedGpx());
|
||||||
groups.addAll(helper.getGroupsForSavedArticlesTravelBook());
|
groups.addAll(helper.getGroupsForSavedArticlesTravelBook());
|
||||||
|
|
||||||
|
// evaluate time constants
|
||||||
|
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
||||||
|
long currentTimeMillis = System.currentTimeMillis();
|
||||||
|
Calendar currentDateCalendar = Calendar.getInstance();
|
||||||
|
currentDateCalendar.setTimeInMillis(currentTimeMillis);
|
||||||
|
// evaluate today, yesterday, last 7 days
|
||||||
|
String today = dateFormat.format(currentDateCalendar.getTime());
|
||||||
|
currentDateCalendar.add(Calendar.DAY_OF_YEAR, -1);
|
||||||
|
String yesterday = dateFormat.format(currentDateCalendar.getTime());
|
||||||
|
currentDateCalendar.set(Calendar.HOUR_OF_DAY, 0);
|
||||||
|
currentDateCalendar.set(Calendar.MINUTE, 0);
|
||||||
|
currentDateCalendar.add(Calendar.DAY_OF_YEAR, -6);
|
||||||
|
long last7Days = currentDateCalendar.getTimeInMillis();
|
||||||
|
// evaluate this year & last 3 months
|
||||||
|
currentDateCalendar.setTimeInMillis(currentTimeMillis);
|
||||||
|
String thisYear = dateFormat.format(currentDateCalendar.getTime()).substring(0, 5);
|
||||||
|
currentDateCalendar.add(Calendar.MONTH, -1);
|
||||||
|
String monthMinus1 = dateFormat.format(currentDateCalendar.getTime()).substring(0, 8);
|
||||||
|
currentDateCalendar.add(Calendar.MONTH, -1);
|
||||||
|
String monthMinus2 = dateFormat.format(currentDateCalendar.getTime()).substring(0, 8);
|
||||||
|
currentDateCalendar.add(Calendar.MONTH, -1);
|
||||||
|
String monthMinus3 = dateFormat.format(currentDateCalendar.getTime()).substring(0, 8);
|
||||||
|
|
||||||
|
|
||||||
|
Calendar markerCalendar = Calendar.getInstance();
|
||||||
|
|
||||||
for (int i = 0; i < groups.size(); i++) {
|
for (int i = 0; i < groups.size(); i++) {
|
||||||
MapMarkersGroup group = groups.get(i);
|
MapMarkersGroup group = groups.get(i);
|
||||||
if (!group.isVisible()) {
|
if (!group.isVisible()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
String markerGroupName = group.getName();
|
String markerGroupName = group.getName();
|
||||||
if (markerGroupName == null) {
|
|
||||||
int previousDateHeader = -1;
|
|
||||||
int monthsDisplayed = 0;
|
|
||||||
|
|
||||||
Calendar currentDateCalendar = Calendar.getInstance();
|
if (markerGroupName == null) {
|
||||||
currentDateCalendar.setTimeInMillis(System.currentTimeMillis());
|
int previousGroupDateId = 0;
|
||||||
int currentDay = currentDateCalendar.get(Calendar.DAY_OF_YEAR);
|
int monthsDisplayed = 0;
|
||||||
int currentMonth = currentDateCalendar.get(Calendar.MONTH);
|
|
||||||
int currentYear = currentDateCalendar.get(Calendar.YEAR);
|
|
||||||
Calendar markerCalendar = Calendar.getInstance();
|
|
||||||
List<MapMarker> groupMarkers = group.getActiveMarkers();
|
List<MapMarker> groupMarkers = group.getActiveMarkers();
|
||||||
for (int j = 0; j < groupMarkers.size(); j++) {
|
for (int j = 0; j < groupMarkers.size(); j++) {
|
||||||
MapMarker marker = groupMarkers.get(j);
|
MapMarker marker = groupMarkers.get(j);
|
||||||
markerCalendar.setTimeInMillis(marker.creationDate);
|
String markerDate = dateFormat.format(new Date(marker.creationDate));
|
||||||
int markerDay = markerCalendar.get(Calendar.DAY_OF_YEAR);
|
int currentGroupDateId;
|
||||||
int markerMonth = markerCalendar.get(Calendar.MONTH);
|
MarkerGroupItem currentGroupItem = null ;
|
||||||
int markerYear = markerCalendar.get(Calendar.YEAR);
|
if (marker.creationDate >= currentTimeMillis || (today.equals(markerDate))) {
|
||||||
if (markerYear == currentYear) {
|
currentGroupDateId = -1;
|
||||||
if (markerDay == currentDay && previousDateHeader != TODAY_HEADER) {
|
currentGroupItem = MarkerGroupItem.TODAY_HEADER;
|
||||||
items.add(TODAY_HEADER);
|
} else if (yesterday.equals(markerDate)) {
|
||||||
previousDateHeader = TODAY_HEADER;
|
currentGroupDateId = -2;
|
||||||
} else if (markerDay == currentDay - 1 && previousDateHeader != YESTERDAY_HEADER) {
|
currentGroupItem = MarkerGroupItem.YESTERDAY_HEADER;
|
||||||
items.add(YESTERDAY_HEADER);
|
} else if (marker.creationDate >= last7Days) {
|
||||||
previousDateHeader = YESTERDAY_HEADER;
|
currentGroupDateId = -3;
|
||||||
} else if (currentDay - markerDay >= 2 && currentDay - markerDay <= 8 && previousDateHeader != LAST_SEVEN_DAYS_HEADER) {
|
currentGroupItem = MarkerGroupItem.LAST_SEVEN_DAYS_HEADER;
|
||||||
items.add(LAST_SEVEN_DAYS_HEADER);
|
} else if (markerDate.startsWith(monthMinus1)) {
|
||||||
previousDateHeader = LAST_SEVEN_DAYS_HEADER;
|
currentGroupDateId = -5;
|
||||||
} else if (currentDay - markerDay > 8 && monthsDisplayed < 3 && previousDateHeader != markerMonth) {
|
} else if (markerDate.startsWith(monthMinus2)) {
|
||||||
items.add(markerMonth);
|
currentGroupDateId = -6;
|
||||||
previousDateHeader = markerMonth;
|
} else if (markerDate.startsWith(monthMinus3)) {
|
||||||
monthsDisplayed += 1;
|
currentGroupDateId = -7;
|
||||||
} else if (currentMonth - markerMonth >= 4 && previousDateHeader != markerMonth && previousDateHeader != THIS_YEAR_HEADER) {
|
} else if (markerDate.startsWith(thisYear)) {
|
||||||
items.add(THIS_YEAR_HEADER);
|
currentGroupItem = MarkerGroupItem.THIS_YEAR_HEADER;
|
||||||
previousDateHeader = THIS_YEAR_HEADER;
|
currentGroupDateId = -4;
|
||||||
|
} else {
|
||||||
|
markerCalendar.setTimeInMillis(marker.creationDate);
|
||||||
|
currentGroupDateId = markerCalendar.get(Calendar.YEAR);
|
||||||
|
}
|
||||||
|
if (previousGroupDateId != currentGroupDateId) {
|
||||||
|
if (currentGroupItem != null) {
|
||||||
|
items.add(currentGroupItem);
|
||||||
|
} else if(currentGroupDateId < 0) {
|
||||||
|
SimpleDateFormat monthdateFormat = new SimpleDateFormat("LLLL", Locale.getDefault());
|
||||||
|
String monthStr = monthdateFormat.format(new Date(marker.creationDate));
|
||||||
|
if (monthStr.length() > 1) {
|
||||||
|
monthStr = Algorithms.capitalizeFirstLetter(monthStr);
|
||||||
|
}
|
||||||
|
items.add(new MarkerGroupItem(monthStr));
|
||||||
|
} else {
|
||||||
|
items.add(new MarkerGroupItem(currentGroupDateId + ""));
|
||||||
}
|
}
|
||||||
} else if (previousDateHeader != markerYear) {
|
previousGroupDateId = currentGroupDateId;
|
||||||
items.add(markerYear);
|
|
||||||
previousDateHeader = markerYear;
|
|
||||||
}
|
}
|
||||||
items.add(marker);
|
items.add(marker);
|
||||||
}
|
}
|
||||||
|
@ -379,23 +413,10 @@ public class MapMarkersGroupsAdapter extends RecyclerView.Adapter<RecyclerView.V
|
||||||
final MapMarkerHeaderViewHolder headerViewHolder = (MapMarkerHeaderViewHolder) holder;
|
final MapMarkerHeaderViewHolder headerViewHolder = (MapMarkerHeaderViewHolder) holder;
|
||||||
final Object header = getItem(position);
|
final Object header = getItem(position);
|
||||||
String headerString;
|
String headerString;
|
||||||
if (header instanceof Integer) {
|
if (header instanceof MarkerGroupItem) {
|
||||||
headerViewHolder.icon.setVisibility(View.GONE);
|
headerViewHolder.icon.setVisibility(View.GONE);
|
||||||
headerViewHolder.iconSpace.setVisibility(View.VISIBLE);
|
headerViewHolder.iconSpace.setVisibility(View.VISIBLE);
|
||||||
Integer dateHeader = (Integer) header;
|
headerString = ((MarkerGroupItem) header).getName(app);
|
||||||
if (dateHeader == TODAY_HEADER) {
|
|
||||||
headerString = app.getString(R.string.today);
|
|
||||||
} else if (dateHeader == YESTERDAY_HEADER) {
|
|
||||||
headerString = app.getString(R.string.yesterday);
|
|
||||||
} else if (dateHeader == LAST_SEVEN_DAYS_HEADER) {
|
|
||||||
headerString = app.getString(R.string.last_seven_days);
|
|
||||||
} else if (dateHeader == THIS_YEAR_HEADER) {
|
|
||||||
headerString = app.getString(R.string.this_year);
|
|
||||||
} else if (dateHeader / 100 == 0) {
|
|
||||||
headerString = getMonth(dateHeader);
|
|
||||||
} else {
|
|
||||||
headerString = String.valueOf(dateHeader);
|
|
||||||
}
|
|
||||||
headerViewHolder.disableGroupSwitch.setVisibility(View.GONE);
|
headerViewHolder.disableGroupSwitch.setVisibility(View.GONE);
|
||||||
headerViewHolder.articleDescription.setVisibility(View.GONE);
|
headerViewHolder.articleDescription.setVisibility(View.GONE);
|
||||||
} else if (header instanceof GroupHeader) {
|
} else if (header instanceof GroupHeader) {
|
||||||
|
@ -615,15 +636,30 @@ public class MapMarkersGroupsAdapter extends RecyclerView.Adapter<RecyclerView.V
|
||||||
return items.get(position);
|
return items.get(position);
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getMonth(int month) {
|
|
||||||
SimpleDateFormat dateFormat = new SimpleDateFormat("LLLL", Locale.getDefault());
|
public static class MarkerGroupItem {
|
||||||
Date date = new Date();
|
|
||||||
date.setMonth(month);
|
static final MarkerGroupItem TODAY_HEADER = new MarkerGroupItem(R.string.today);
|
||||||
String monthStr = dateFormat.format(date);
|
static final MarkerGroupItem YESTERDAY_HEADER = new MarkerGroupItem(R.string.yesterday);
|
||||||
if (monthStr.length() > 1) {
|
static final MarkerGroupItem LAST_SEVEN_DAYS_HEADER = new MarkerGroupItem(R.string.last_seven_days);
|
||||||
monthStr = Character.toUpperCase(monthStr.charAt(0)) + monthStr.substring(1);
|
static final MarkerGroupItem THIS_YEAR_HEADER = new MarkerGroupItem(R.string.this_year);
|
||||||
|
private @StringRes int iname;
|
||||||
|
protected String name;
|
||||||
|
|
||||||
|
public MarkerGroupItem(@StringRes int name) {
|
||||||
|
this.iname = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public MarkerGroupItem(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName(OsmandApplication app) {
|
||||||
|
if (name == null && iname != 0) {
|
||||||
|
name = app.getString(iname);
|
||||||
|
}
|
||||||
|
return name;
|
||||||
}
|
}
|
||||||
return monthStr;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class CategoriesSubHeader {
|
public class CategoriesSubHeader {
|
||||||
|
|
Loading…
Reference in a new issue