Merge pull request #11399 from osmandapp/Unbookmark_gpx

Fix #5473
This commit is contained in:
Vitaliy 2021-04-13 01:40:15 +03:00 committed by GitHub
commit a92e002db3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 119 additions and 108 deletions

View file

@ -246,24 +246,17 @@ public class WikivoyageArticleDialogFragment extends WikiArticleBaseDialogFragme
private void updateSaveButton() { private void updateSaveButton() {
if (article != null) { if (article != null) {
final TravelLocalDataHelper helper = getMyApplication().getTravelHelper().getBookmarksHelper(); final TravelHelper helper = getMyApplication().getTravelHelper();
final boolean saved = helper.isArticleSaved(article); final boolean saved = helper.getBookmarksHelper().isArticleSaved(article);
Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later); Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later);
saveBtn.setText(getString(saved ? R.string.shared_string_remove : R.string.shared_string_bookmark)); saveBtn.setText(getString(saved ? R.string.shared_string_remove : R.string.shared_string_bookmark));
saveBtn.setCompoundDrawablesWithIntrinsicBounds(null, null, icon, null); saveBtn.setCompoundDrawablesWithIntrinsicBounds(null, null, icon, null);
saveBtn.setOnClickListener(new View.OnClickListener() { saveBtn.setOnClickListener(new View.OnClickListener() {
@Override @Override
public void onClick(View view) { public void onClick(View view) {
if (article != null) { helper.saveOrRemoveArticle(article, !saved);
if (saved) {
helper.removeArticleFromSaved(article);
} else {
getMyApplication().getTravelHelper().createGpxFile(article);
helper.addArticleToSaved(article);
}
updateSaveButton(); updateSaveButton();
} }
}
}); });
} }
} }

View file

@ -193,6 +193,15 @@ public class TravelDbHelper implements TravelHelper {
return WORLD_WIKIVOYAGE_FILE_NAME; return WORLD_WIKIVOYAGE_FILE_NAME;
} }
@Override
public void saveOrRemoveArticle(@NonNull TravelArticle article, boolean save) {
if (save) {
localDataHelper.addArticleToSaved(article);
} else {
localDataHelper.removeArticleFromSaved(article);
}
}
public List<File> getExistingTravelBooks() { public List<File> getExistingTravelBooks() {
return existingTravelBooks; return existingTravelBooks;
} }

View file

@ -70,4 +70,6 @@ public interface TravelHelper {
String getSelectedTravelBookName(); String getSelectedTravelBookName();
String getWikivoyageFileName(); String getWikivoyageFileName();
void saveOrRemoveArticle(@NonNull TravelArticle article, boolean save);
} }

View file

@ -4,11 +4,13 @@ import androidx.annotation.NonNull;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import net.osmand.GPXUtilities; import net.osmand.GPXUtilities;
import net.osmand.GPXUtilities.GPXFile;
import net.osmand.IndexConstants; import net.osmand.IndexConstants;
import net.osmand.PlatformUtil; import net.osmand.PlatformUtil;
import net.osmand.plus.OsmandApplication; import net.osmand.plus.OsmandApplication;
import net.osmand.plus.api.SQLiteAPI.SQLiteConnection; import net.osmand.plus.api.SQLiteAPI.SQLiteConnection;
import net.osmand.plus.api.SQLiteAPI.SQLiteCursor; import net.osmand.plus.api.SQLiteAPI.SQLiteCursor;
import net.osmand.plus.wikivoyage.data.TravelHelper.GpxReadCallback;
import net.osmand.util.Algorithms; import net.osmand.util.Algorithms;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
@ -124,14 +126,6 @@ public class TravelLocalDataHelper {
} }
} }
public void restoreSavedArticle(@NonNull TravelArticle article) {
if (!isArticleSaved(article)) {
savedArticles.add(article);
dbHelper.addSavedArticle(article);
notifySavedUpdated();
}
}
public void removeArticleFromSaved(@NonNull TravelArticle article) { public void removeArticleFromSaved(@NonNull TravelArticle article) {
TravelArticle savedArticle = getArticle(article.title, article.lang); TravelArticle savedArticle = getArticle(article.title, article.lang);
if (savedArticle != null) { if (savedArticle != null) {
@ -480,15 +474,19 @@ public class TravelLocalDataHelper {
if (travelBook == null) { if (travelBook == null) {
return; return;
} }
context.getTravelHelper().getArticleById(article.generateIdentifier(), article.lang, true, final TravelHelper travelHelper = context.getTravelHelper();
new TravelHelper.GpxReadCallback() { travelHelper.getArticleById(article.generateIdentifier(), article.lang, true, new GpxReadCallback() {
@Override @Override
public void onGpxFileReading() { public void onGpxFileReading() {
} }
@Override @Override
public void onGpxFileRead(@Nullable GPXUtilities.GPXFile gpxFile) { public void onGpxFileRead(@Nullable GPXFile gpxFile) {
if (gpxFile != null) {
travelHelper.createGpxFile(article);
}
SQLiteConnection conn = openConnection(false); SQLiteConnection conn = openConnection(false);
if (conn != null) { if (conn != null) {
try { try {
@ -519,11 +517,26 @@ public class TravelLocalDataHelper {
}); });
} }
void removeSavedArticle(@NonNull TravelArticle article) { void removeSavedArticle(@NonNull final TravelArticle article) {
String travelBook = article.getTravelBook(context); final String travelBook = article.getTravelBook(context);
if (travelBook == null) { if (travelBook == null) {
return; return;
} }
final TravelHelper travelHelper = context.getTravelHelper();
travelHelper.getArticleById(article.generateIdentifier(), article.lang, true, new GpxReadCallback() {
@Override
public void onGpxFileReading() {
}
@Override
public void onGpxFileRead(@Nullable GPXFile gpxFile) {
if (gpxFile != null) {
String name = travelHelper.getGPXName(article);
gpxFile.path = context.getAppPath(IndexConstants.GPX_TRAVEL_DIR + name).getAbsolutePath();
context.getSelectedGpxHelper().selectGpxFile(gpxFile, false, true);
}
SQLiteConnection conn = openConnection(false); SQLiteConnection conn = openConnection(false);
if (conn != null) { if (conn != null) {
try { try {
@ -538,6 +551,8 @@ public class TravelLocalDataHelper {
} }
} }
} }
});
}
void updateSavedArticle(@NonNull TravelArticle odlArticle, @NonNull TravelArticle newArticle) { void updateSavedArticle(@NonNull TravelArticle odlArticle, @NonNull TravelArticle newArticle) {
String travelBook = odlArticle.getTravelBook(context); String travelBook = odlArticle.getTravelBook(context);

View file

@ -56,10 +56,10 @@ import static net.osmand.GPXUtilities.WptPt;
import static net.osmand.GPXUtilities.writeGpxFile; import static net.osmand.GPXUtilities.writeGpxFile;
import static net.osmand.plus.helpers.GpxUiHelper.getGpxTitle; import static net.osmand.plus.helpers.GpxUiHelper.getGpxTitle;
import static net.osmand.plus.wikivoyage.data.PopularArticles.ARTICLES_PER_PAGE; import static net.osmand.plus.wikivoyage.data.PopularArticles.ARTICLES_PER_PAGE;
import static net.osmand.plus.wikivoyage.data.TravelGpx.ACTIVITY_TYPE;
import static net.osmand.plus.wikivoyage.data.TravelGpx.DIFF_ELE_DOWN; import static net.osmand.plus.wikivoyage.data.TravelGpx.DIFF_ELE_DOWN;
import static net.osmand.plus.wikivoyage.data.TravelGpx.DIFF_ELE_UP; import static net.osmand.plus.wikivoyage.data.TravelGpx.DIFF_ELE_UP;
import static net.osmand.plus.wikivoyage.data.TravelGpx.DISTANCE; import static net.osmand.plus.wikivoyage.data.TravelGpx.DISTANCE;
import static net.osmand.plus.wikivoyage.data.TravelGpx.ACTIVITY_TYPE;
import static net.osmand.plus.wikivoyage.data.TravelGpx.USER; import static net.osmand.plus.wikivoyage.data.TravelGpx.USER;
import static net.osmand.util.Algorithms.capitalizeFirstLetter; import static net.osmand.util.Algorithms.capitalizeFirstLetter;
@ -1029,6 +1029,15 @@ public class TravelObfHelper implements TravelHelper {
return WORLD_WIKIVOYAGE_FILE_NAME; return WORLD_WIKIVOYAGE_FILE_NAME;
} }
@Override
public void saveOrRemoveArticle(@NonNull TravelArticle article, boolean save) {
if (save) {
localDataHelper.addArticleToSaved(article);
} else {
localDataHelper.removeArticleFromSaved(article);
}
}
private class GpxFileReader extends AsyncTask<Void, Void, GPXFile> { private class GpxFileReader extends AsyncTask<Void, Void, GPXFile> {
private final TravelArticle article; private final TravelArticle article;

View file

@ -31,13 +31,13 @@ import net.osmand.plus.wikipedia.WikiArticleHelper;
import net.osmand.plus.wikivoyage.WikivoyageUtils; import net.osmand.plus.wikivoyage.WikivoyageUtils;
import net.osmand.plus.wikivoyage.data.TravelArticle; import net.osmand.plus.wikivoyage.data.TravelArticle;
import net.osmand.plus.wikivoyage.data.TravelGpx; import net.osmand.plus.wikivoyage.data.TravelGpx;
import net.osmand.plus.wikivoyage.data.TravelLocalDataHelper; import net.osmand.plus.wikivoyage.data.TravelHelper;
import net.osmand.util.Algorithms; import net.osmand.util.Algorithms;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import static net.osmand.plus.wikivoyage.explore.travelcards.TravelGpxCard.*; import static net.osmand.plus.wikivoyage.explore.travelcards.TravelGpxCard.TravelGpxVH;
import static net.osmand.util.Algorithms.capitalizeFirstLetterAndLowercase; import static net.osmand.util.Algorithms.capitalizeFirstLetterAndLowercase;
public class SavedArticlesRvAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> { public class SavedArticlesRvAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
@ -182,20 +182,15 @@ public class SavedArticlesRvAdapter extends RecyclerView.Adapter<RecyclerView.Vi
private void updateSaveButton(final TravelGpxVH holder, final TravelGpx article) { private void updateSaveButton(final TravelGpxVH holder, final TravelGpx article) {
if (article != null) { if (article != null) {
final TravelLocalDataHelper helper = app.getTravelHelper().getBookmarksHelper(); final TravelHelper helper = app.getTravelHelper();
final boolean saved = helper.isArticleSaved(article); final boolean saved = helper.getBookmarksHelper().isArticleSaved(article);
Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later); Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later);
holder.rightButton.setText(saved ? R.string.shared_string_remove : R.string.shared_string_save); holder.rightButton.setText(saved ? R.string.shared_string_remove : R.string.shared_string_save);
holder.rightButton.setCompoundDrawablesWithIntrinsicBounds(null, null, icon, null); holder.rightButton.setCompoundDrawablesWithIntrinsicBounds(null, null, icon, null);
holder.rightButton.setOnClickListener(new View.OnClickListener() { holder.rightButton.setOnClickListener(new View.OnClickListener() {
@Override @Override
public void onClick(View view) { public void onClick(View view) {
if (saved) { helper.saveOrRemoveArticle(article, !saved);
helper.removeArticleFromSaved(article);
} else {
app.getTravelHelper().createGpxFile(article);
helper.addArticleToSaved(article);
}
updateSaveButton(holder, article); updateSaveButton(holder, article);
} }
}); });
@ -286,13 +281,13 @@ public class SavedArticlesRvAdapter extends RecyclerView.Adapter<RecyclerView.Vi
Object item = getItemByPosition(); Object item = getItemByPosition();
if (item instanceof TravelArticle) { if (item instanceof TravelArticle) {
final TravelArticle article = (TravelArticle) item; final TravelArticle article = (TravelArticle) item;
final TravelLocalDataHelper ldh = app.getTravelHelper().getBookmarksHelper(); final TravelHelper helper = app.getTravelHelper();
ldh.removeArticleFromSaved(article); helper.saveOrRemoveArticle(article, false);
Snackbar snackbar = Snackbar.make(itemView, R.string.article_removed, Snackbar.LENGTH_LONG) Snackbar snackbar = Snackbar.make(itemView, R.string.article_removed, Snackbar.LENGTH_LONG)
.setAction(R.string.shared_string_undo, new View.OnClickListener() { .setAction(R.string.shared_string_undo, new View.OnClickListener() {
@Override @Override
public void onClick(View view) { public void onClick(View view) {
ldh.restoreSavedArticle(article); helper.saveOrRemoveArticle(article, true);
} }
}); });
boolean nightMode = !settings.isLightContent(); boolean nightMode = !settings.isLightContent();

View file

@ -100,16 +100,9 @@ public class ArticleTravelCard extends BaseTravelCard {
holder.rightButton.setOnClickListener(new View.OnClickListener() { holder.rightButton.setOnClickListener(new View.OnClickListener() {
@Override @Override
public void onClick(View view) { public void onClick(View view) {
if (article != null) { app.getTravelHelper().saveOrRemoveArticle(article, !saved);
if (saved) {
helper.removeArticleFromSaved(article);
} else {
app.getTravelHelper().createGpxFile(article);
helper.addArticleToSaved(article);
}
updateSaveButton(holder); updateSaveButton(holder);
} }
}
}); });
} }
} }

View file

@ -20,7 +20,6 @@ import net.osmand.plus.R;
import net.osmand.plus.track.TrackMenuFragment; import net.osmand.plus.track.TrackMenuFragment;
import net.osmand.plus.wikivoyage.data.TravelGpx; import net.osmand.plus.wikivoyage.data.TravelGpx;
import net.osmand.plus.wikivoyage.data.TravelHelper; import net.osmand.plus.wikivoyage.data.TravelHelper;
import net.osmand.plus.wikivoyage.data.TravelLocalDataHelper;
import net.osmand.util.Algorithms; import net.osmand.util.Algorithms;
import java.io.File; import java.io.File;
@ -104,19 +103,15 @@ public class TravelGpxCard extends BaseTravelCard {
private void updateSaveButton(final TravelGpxVH holder) { private void updateSaveButton(final TravelGpxVH holder) {
if (article != null) { if (article != null) {
final TravelLocalDataHelper helper = app.getTravelHelper().getBookmarksHelper(); final TravelHelper helper = app.getTravelHelper();
final boolean saved = helper.isArticleSaved(article); final boolean saved = helper.getBookmarksHelper().isArticleSaved(article);
Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later); Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later);
holder.rightButton.setText(saved ? R.string.shared_string_remove : R.string.shared_string_save); holder.rightButton.setText(saved ? R.string.shared_string_remove : R.string.shared_string_save);
holder.rightButton.setCompoundDrawablesWithIntrinsicBounds(null, null, icon, null); holder.rightButton.setCompoundDrawablesWithIntrinsicBounds(null, null, icon, null);
holder.rightButton.setOnClickListener(new View.OnClickListener() { holder.rightButton.setOnClickListener(new View.OnClickListener() {
@Override @Override
public void onClick(View view) { public void onClick(View view) {
if (saved) { helper.saveOrRemoveArticle(article, !saved);
helper.removeArticleFromSaved(article);
} else {
helper.addArticleToSaved(article);
}
updateSaveButton(holder); updateSaveButton(holder);
} }
}); });