Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2020-04-13 20:00:14 +0300
committerStefan Niedermann <info@niedermann.it>2020-04-13 20:00:14 +0300
commit763fd267b279a10330197968f7e302349fbb6c67 (patch)
tree7d2937cf2a43049f5ce5aa0e5087f49a97e03bd1 /app/src/main/java/it/niedermann/nextcloud/deck/ui/PushNotificationActivity.java
parent13c7f11cbe8c3cf5ab24d9811bc97316d57099f4 (diff)
#208 Handle push notifications
Move sync part after info gathering Signed-off-by: Stefan Niedermann <info@niedermann.it>
Diffstat (limited to 'app/src/main/java/it/niedermann/nextcloud/deck/ui/PushNotificationActivity.java')
-rw-r--r--app/src/main/java/it/niedermann/nextcloud/deck/ui/PushNotificationActivity.java36
1 files changed, 16 insertions, 20 deletions
diff --git a/app/src/main/java/it/niedermann/nextcloud/deck/ui/PushNotificationActivity.java b/app/src/main/java/it/niedermann/nextcloud/deck/ui/PushNotificationActivity.java
index c65eae53f..4f3a64ec1 100644
--- a/app/src/main/java/it/niedermann/nextcloud/deck/ui/PushNotificationActivity.java
+++ b/app/src/main/java/it/niedermann/nextcloud/deck/ui/PushNotificationActivity.java
@@ -9,9 +9,7 @@ import androidx.appcompat.app.AppCompatActivity;
import it.niedermann.nextcloud.deck.DeckLog;
import it.niedermann.nextcloud.deck.R;
-import it.niedermann.nextcloud.deck.api.IResponseCallback;
import it.niedermann.nextcloud.deck.databinding.ActivityPushNotificationBinding;
-import it.niedermann.nextcloud.deck.model.full.FullCard;
import it.niedermann.nextcloud.deck.persistence.sync.SyncManager;
import it.niedermann.nextcloud.deck.ui.card.EditActivity;
import it.niedermann.nextcloud.deck.ui.exception.ExceptionHandler;
@@ -69,27 +67,25 @@ public class PushNotificationActivity extends AppCompatActivity {
syncManager.readAccount(accountString).observe(this, account -> {
if (account != null) {
DeckLog.verbose("account: " + account);
- syncManager.synchronizeCardByRemoteId(cardRemoteId, new IResponseCallback<FullCard>(account) {
- @Override
- public void onResponse(FullCard response) {
- DeckLog.verbose("FullCard: " + response);
- runOnUiThread(() -> syncManager.getLocalBoardIdByCardRemoteIdAndAccount(cardRemoteId, account).observe(PushNotificationActivity.this, boardLocalId -> {
- if (boardLocalId != null) {
- DeckLog.verbose("BoardLocalId " + boardLocalId);
- binding.submit.setOnClickListener((v) -> launchEditActivity(account.getId(), response.getLocalId(), boardLocalId));
- binding.submit.setText(R.string.simple_open);
- binding.submit.setEnabled(true);
- binding.progress.setVisibility(View.INVISIBLE);
+ syncManager.getLocalBoardIdByCardRemoteIdAndAccount(cardRemoteId, account).observe(PushNotificationActivity.this, boardLocalId -> {
+ DeckLog.verbose("BoardLocalId " + boardLocalId);
+ if (boardLocalId != null) {
+ syncManager.synchronizeCardByRemoteId(cardRemoteId, account).observe(PushNotificationActivity.this, fullCard -> {
+ DeckLog.verbose("FullCard: " + fullCard);
+ if (fullCard != null) {
+ runOnUiThread(() -> {
+ binding.submit.setOnClickListener((v) -> launchEditActivity(account.getId(), fullCard.getLocalId(), boardLocalId));
+ binding.submit.setText(R.string.simple_open);
+ binding.submit.setEnabled(true);
+ binding.progress.setVisibility(View.INVISIBLE);
+ });
} else {
- DeckLog.warn("Given localBoardId for cardRemoteId " + cardRemoteId + " is null.");
+ DeckLog.warn("Something went wrong while synchronizing the card " + cardRemoteId + " (cardRemoteId). Given fullCard is null.");
fallbackToBrowser(link);
}
- }));
- }
-
- @Override
- public void onError(Throwable throwable) {
- super.onError(throwable);
+ });
+ } else {
+ DeckLog.warn("Given localBoardId for cardRemoteId " + cardRemoteId + " is null.");
fallbackToBrowser(link);
}
});