mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
Directly remove notification, on error reload (#3968)
Directly remove notification, on error reload
This commit is contained in:
commit
10f61729e2
3 changed files with 23 additions and 13 deletions
|
@ -374,17 +374,21 @@ public class NotificationsActivity extends FileActivity implements Notifications
|
|||
}
|
||||
|
||||
@Override
|
||||
public void onRemovedNotification(boolean isSuccess, NotificationListAdapter.NotificationViewHolder holder) {
|
||||
if (isSuccess) {
|
||||
adapter.removeNotification(holder);
|
||||
|
||||
if (adapter.getItemCount() == 0) {
|
||||
setEmptyContent(noResultsHeadline, noResultsMessage);
|
||||
swipeListRefreshLayout.setVisibility(View.GONE);
|
||||
swipeEmptyListRefreshLayout.setVisibility(View.VISIBLE);
|
||||
}
|
||||
} else {
|
||||
public void onRemovedNotification(boolean isSuccess) {
|
||||
if (!isSuccess) {
|
||||
DisplayUtils.showSnackMessage(this, getString(R.string.remove_notification_failed));
|
||||
fetchAndSetData();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeNotification(NotificationListAdapter.NotificationViewHolder holder) {
|
||||
adapter.removeNotification(holder);
|
||||
|
||||
if (adapter.getItemCount() == 0) {
|
||||
setEmptyContent(noResultsHeadline, noResultsMessage);
|
||||
swipeListRefreshLayout.setVisibility(View.GONE);
|
||||
swipeEmptyListRefreshLayout.setVisibility(View.VISIBLE);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -48,8 +48,12 @@ public class DeleteNotificationTask extends AsyncTask<Action, Void, Boolean> {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected Boolean doInBackground(Action... actions) {
|
||||
protected void onPreExecute() {
|
||||
notificationsActivity.removeNotification(holder);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Boolean doInBackground(Action... actions) {
|
||||
RemoteOperationResult result = new DeleteNotificationRemoteOperation(notification.notificationId)
|
||||
.execute(client);
|
||||
|
||||
|
@ -58,6 +62,6 @@ public class DeleteNotificationTask extends AsyncTask<Action, Void, Boolean> {
|
|||
|
||||
@Override
|
||||
protected void onPostExecute(Boolean success) {
|
||||
notificationsActivity.onRemovedNotification(success, holder);
|
||||
notificationsActivity.onRemovedNotification(success);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -26,7 +26,9 @@ import com.owncloud.android.ui.adapter.NotificationListAdapter;
|
|||
public interface NotificationsContract {
|
||||
|
||||
interface View {
|
||||
void onRemovedNotification(boolean isSuccess, NotificationListAdapter.NotificationViewHolder holder);
|
||||
void onRemovedNotification(boolean isSuccess);
|
||||
|
||||
void removeNotification(NotificationListAdapter.NotificationViewHolder holder);
|
||||
|
||||
void onRemovedAllNotifications(boolean isSuccess);
|
||||
|
||||
|
|
Loading…
Reference in a new issue