mirror of https://github.com/M66B/FairEmail.git
Refactoring
This commit is contained in:
parent
1882a5fa7d
commit
d8587bdb8c
|
@ -784,54 +784,49 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onMore(final ActionData data) {
|
private void onJunk(final ActionData data) {
|
||||||
boolean inOutbox = EntityFolder.OUTBOX.equals(data.message.folderType);
|
new DialogBuilderLifecycle(context, owner)
|
||||||
boolean show_headers = properties.showHeaders(data.message.id);
|
.setMessage(R.string.title_ask_spam)
|
||||||
|
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
|
||||||
View anchor = bnvActions.findViewById(R.id.action_more);
|
|
||||||
PopupMenu popupMenu = new PopupMenu(context, anchor);
|
|
||||||
popupMenu.inflate(R.menu.menu_message);
|
|
||||||
popupMenu.getMenu().findItem(R.id.menu_forward).setVisible(data.message.content && !inOutbox);
|
|
||||||
popupMenu.getMenu().findItem(R.id.menu_show_headers).setChecked(show_headers);
|
|
||||||
popupMenu.getMenu().findItem(R.id.menu_show_headers).setEnabled(data.message.uid != null);
|
|
||||||
popupMenu.getMenu().findItem(R.id.menu_show_html).setEnabled(data.message.content && Helper.classExists("android.webkit.WebView"));
|
|
||||||
popupMenu.getMenu().findItem(R.id.menu_flag).setChecked(data.message.uid != null && data.message.unflagged != 1);
|
|
||||||
popupMenu.getMenu().findItem(R.id.menu_reply_all).setVisible(data.message.content && !inOutbox);
|
|
||||||
|
|
||||||
popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onMenuItemClick(MenuItem target) {
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
switch (target.getItemId()) {
|
Bundle args = new Bundle();
|
||||||
case R.id.menu_junk:
|
args.putLong("id", data.message.id);
|
||||||
onJunk(data);
|
|
||||||
return true;
|
new SimpleTask<Void>() {
|
||||||
case R.id.menu_forward:
|
@Override
|
||||||
onForward(data);
|
protected Void onLoad(Context context, Bundle args) {
|
||||||
return true;
|
long id = args.getLong("id");
|
||||||
case R.id.menu_reply_all:
|
|
||||||
onReplyAll(data);
|
DB db = DB.getInstance(context);
|
||||||
return true;
|
try {
|
||||||
case R.id.menu_show_headers:
|
db.beginTransaction();
|
||||||
onShowHeaders(data);
|
|
||||||
return true;
|
db.message().setMessageUiHide(id, true);
|
||||||
case R.id.menu_show_html:
|
|
||||||
onShowHtml(data);
|
EntityMessage message = db.message().getMessage(id);
|
||||||
return true;
|
EntityFolder spam = db.folder().getFolderByType(message.account, EntityFolder.JUNK);
|
||||||
case R.id.menu_flag:
|
EntityOperation.queue(db, message, EntityOperation.MOVE, spam.id);
|
||||||
onFlag(data);
|
|
||||||
return true;
|
db.setTransactionSuccessful();
|
||||||
case R.id.menu_unseen:
|
} finally {
|
||||||
onUnseen(data);
|
db.endTransaction();
|
||||||
return true;
|
|
||||||
case R.id.menu_answer:
|
|
||||||
onAnswer(data);
|
|
||||||
return true;
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EntityOperation.process(context);
|
||||||
|
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
});
|
|
||||||
popupMenu.show();
|
@Override
|
||||||
|
protected void onException(Bundle args, Throwable ex) {
|
||||||
|
Helper.unexpectedError(context, ex);
|
||||||
|
}
|
||||||
|
}.load(context, owner, args);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.setNegativeButton(android.R.string.cancel, null)
|
||||||
|
.show();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onForward(final ActionData data) {
|
private void onForward(final ActionData data) {
|
||||||
|
@ -882,105 +877,6 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
|
||||||
.putExtra("reference", data.message.id));
|
.putExtra("reference", data.message.id));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onShowHeaders(ActionData data) {
|
|
||||||
boolean show_headers = !properties.showHeaders(data.message.id);
|
|
||||||
properties.setHeaders(data.message.id, show_headers);
|
|
||||||
if (show_headers) {
|
|
||||||
grpHeaders.setVisibility(View.VISIBLE);
|
|
||||||
pbHeaders.setVisibility(View.VISIBLE);
|
|
||||||
|
|
||||||
Bundle args = new Bundle();
|
|
||||||
args.putLong("id", data.message.id);
|
|
||||||
|
|
||||||
new SimpleTask<Void>() {
|
|
||||||
@Override
|
|
||||||
protected Void onLoad(Context context, Bundle args) {
|
|
||||||
Long id = args.getLong("id");
|
|
||||||
DB db = DB.getInstance(context);
|
|
||||||
EntityMessage message = db.message().getMessage(id);
|
|
||||||
EntityOperation.queue(db, message, EntityOperation.HEADERS);
|
|
||||||
EntityOperation.process(context);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onException(Bundle args, Throwable ex) {
|
|
||||||
Helper.unexpectedError(context, ex);
|
|
||||||
}
|
|
||||||
}.load(context, owner, args);
|
|
||||||
} else
|
|
||||||
notifyDataSetChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onShowHtml(ActionData data) {
|
|
||||||
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
|
|
||||||
lbm.sendBroadcast(
|
|
||||||
new Intent(ActivityView.ACTION_VIEW_FULL)
|
|
||||||
.putExtra("id", data.message.id)
|
|
||||||
.putExtra("from", MessageHelper.getFormattedAddresses(data.message.from, true)));
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onFlag(ActionData data) {
|
|
||||||
Bundle args = new Bundle();
|
|
||||||
args.putLong("id", data.message.id);
|
|
||||||
args.putBoolean("flagged", !data.message.ui_flagged);
|
|
||||||
Log.i(Helper.TAG, "Set message id=" + data.message.id + " flagged=" + !data.message.ui_flagged);
|
|
||||||
|
|
||||||
new SimpleTask<Void>() {
|
|
||||||
@Override
|
|
||||||
protected Void onLoad(Context context, Bundle args) throws Throwable {
|
|
||||||
long id = args.getLong("id");
|
|
||||||
boolean flagged = args.getBoolean("flagged");
|
|
||||||
DB db = DB.getInstance(context);
|
|
||||||
EntityMessage message = db.message().getMessage(id);
|
|
||||||
db.message().setMessageUiFlagged(message.id, flagged);
|
|
||||||
EntityOperation.queue(db, message, EntityOperation.FLAG, flagged);
|
|
||||||
EntityOperation.process(context);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onException(Bundle args, Throwable ex) {
|
|
||||||
Helper.unexpectedError(context, ex);
|
|
||||||
}
|
|
||||||
}.load(context, owner, args);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onUnseen(final ActionData data) {
|
|
||||||
Bundle args = new Bundle();
|
|
||||||
args.putLong("id", data.message.id);
|
|
||||||
|
|
||||||
new SimpleTask<Void>() {
|
|
||||||
@Override
|
|
||||||
protected Void onLoad(Context context, Bundle args) throws Throwable {
|
|
||||||
long id = args.getLong("id");
|
|
||||||
|
|
||||||
DB db = DB.getInstance(context);
|
|
||||||
try {
|
|
||||||
db.beginTransaction();
|
|
||||||
|
|
||||||
EntityMessage message = db.message().getMessage(id);
|
|
||||||
db.message().setMessageUiSeen(message.id, false);
|
|
||||||
EntityOperation.queue(db, message, EntityOperation.SEEN, true);
|
|
||||||
|
|
||||||
db.setTransactionSuccessful();
|
|
||||||
} finally {
|
|
||||||
db.endTransaction();
|
|
||||||
}
|
|
||||||
|
|
||||||
EntityOperation.process(context);
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onLoaded(Bundle args, Void ignored) {
|
|
||||||
properties.setExpanded(data.message.id, false);
|
|
||||||
notifyDataSetChanged();
|
|
||||||
}
|
|
||||||
}.load(context, owner, args);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onAnswer(final ActionData data) {
|
private void onAnswer(final ActionData data) {
|
||||||
final DB db = DB.getInstance(context);
|
final DB db = DB.getInstance(context);
|
||||||
db.answer().liveAnswers().observe(owner, new Observer<List<EntityAnswer>>() {
|
db.answer().liveAnswers().observe(owner, new Observer<List<EntityAnswer>>() {
|
||||||
|
@ -1026,29 +922,22 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onJunk(final ActionData data) {
|
private void onUnseen(final ActionData data) {
|
||||||
new DialogBuilderLifecycle(context, owner)
|
|
||||||
.setMessage(R.string.title_ask_spam)
|
|
||||||
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
|
|
||||||
@Override
|
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
|
||||||
Bundle args = new Bundle();
|
Bundle args = new Bundle();
|
||||||
args.putLong("id", data.message.id);
|
args.putLong("id", data.message.id);
|
||||||
|
|
||||||
new SimpleTask<Void>() {
|
new SimpleTask<Void>() {
|
||||||
@Override
|
@Override
|
||||||
protected Void onLoad(Context context, Bundle args) {
|
protected Void onLoad(Context context, Bundle args) throws Throwable {
|
||||||
long id = args.getLong("id");
|
long id = args.getLong("id");
|
||||||
|
|
||||||
DB db = DB.getInstance(context);
|
DB db = DB.getInstance(context);
|
||||||
try {
|
try {
|
||||||
db.beginTransaction();
|
db.beginTransaction();
|
||||||
|
|
||||||
db.message().setMessageUiHide(id, true);
|
|
||||||
|
|
||||||
EntityMessage message = db.message().getMessage(id);
|
EntityMessage message = db.message().getMessage(id);
|
||||||
EntityFolder spam = db.folder().getFolderByType(message.account, EntityFolder.JUNK);
|
db.message().setMessageUiSeen(message.id, false);
|
||||||
EntityOperation.queue(db, message, EntityOperation.MOVE, spam.id);
|
EntityOperation.queue(db, message, EntityOperation.SEEN, true);
|
||||||
|
|
||||||
db.setTransactionSuccessful();
|
db.setTransactionSuccessful();
|
||||||
} finally {
|
} finally {
|
||||||
|
@ -1060,15 +949,126 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onLoaded(Bundle args, Void ignored) {
|
||||||
|
properties.setExpanded(data.message.id, false);
|
||||||
|
notifyDataSetChanged();
|
||||||
|
}
|
||||||
|
}.load(context, owner, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onFlag(ActionData data) {
|
||||||
|
Bundle args = new Bundle();
|
||||||
|
args.putLong("id", data.message.id);
|
||||||
|
args.putBoolean("flagged", !data.message.ui_flagged);
|
||||||
|
Log.i(Helper.TAG, "Set message id=" + data.message.id + " flagged=" + !data.message.ui_flagged);
|
||||||
|
|
||||||
|
new SimpleTask<Void>() {
|
||||||
|
@Override
|
||||||
|
protected Void onLoad(Context context, Bundle args) throws Throwable {
|
||||||
|
long id = args.getLong("id");
|
||||||
|
boolean flagged = args.getBoolean("flagged");
|
||||||
|
DB db = DB.getInstance(context);
|
||||||
|
EntityMessage message = db.message().getMessage(id);
|
||||||
|
db.message().setMessageUiFlagged(message.id, flagged);
|
||||||
|
EntityOperation.queue(db, message, EntityOperation.FLAG, flagged);
|
||||||
|
EntityOperation.process(context);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onException(Bundle args, Throwable ex) {
|
protected void onException(Bundle args, Throwable ex) {
|
||||||
Helper.unexpectedError(context, ex);
|
Helper.unexpectedError(context, ex);
|
||||||
}
|
}
|
||||||
}.load(context, owner, args);
|
}.load(context, owner, args);
|
||||||
}
|
}
|
||||||
})
|
|
||||||
.setNegativeButton(android.R.string.cancel, null)
|
private void onShowHeaders(ActionData data) {
|
||||||
.show();
|
boolean show_headers = !properties.showHeaders(data.message.id);
|
||||||
|
properties.setHeaders(data.message.id, show_headers);
|
||||||
|
if (show_headers) {
|
||||||
|
grpHeaders.setVisibility(View.VISIBLE);
|
||||||
|
pbHeaders.setVisibility(View.VISIBLE);
|
||||||
|
|
||||||
|
Bundle args = new Bundle();
|
||||||
|
args.putLong("id", data.message.id);
|
||||||
|
|
||||||
|
new SimpleTask<Void>() {
|
||||||
|
@Override
|
||||||
|
protected Void onLoad(Context context, Bundle args) {
|
||||||
|
Long id = args.getLong("id");
|
||||||
|
DB db = DB.getInstance(context);
|
||||||
|
EntityMessage message = db.message().getMessage(id);
|
||||||
|
EntityOperation.queue(db, message, EntityOperation.HEADERS);
|
||||||
|
EntityOperation.process(context);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onException(Bundle args, Throwable ex) {
|
||||||
|
Helper.unexpectedError(context, ex);
|
||||||
|
}
|
||||||
|
}.load(context, owner, args);
|
||||||
|
} else
|
||||||
|
notifyDataSetChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onShowHtml(ActionData data) {
|
||||||
|
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
|
||||||
|
lbm.sendBroadcast(
|
||||||
|
new Intent(ActivityView.ACTION_VIEW_FULL)
|
||||||
|
.putExtra("id", data.message.id)
|
||||||
|
.putExtra("from", MessageHelper.getFormattedAddresses(data.message.from, true)));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onMore(final ActionData data) {
|
||||||
|
boolean inOutbox = EntityFolder.OUTBOX.equals(data.message.folderType);
|
||||||
|
boolean show_headers = properties.showHeaders(data.message.id);
|
||||||
|
|
||||||
|
View anchor = bnvActions.findViewById(R.id.action_more);
|
||||||
|
PopupMenu popupMenu = new PopupMenu(context, anchor);
|
||||||
|
popupMenu.inflate(R.menu.menu_message);
|
||||||
|
popupMenu.getMenu().findItem(R.id.menu_forward).setVisible(data.message.content && !inOutbox);
|
||||||
|
popupMenu.getMenu().findItem(R.id.menu_show_headers).setChecked(show_headers);
|
||||||
|
popupMenu.getMenu().findItem(R.id.menu_show_headers).setEnabled(data.message.uid != null);
|
||||||
|
popupMenu.getMenu().findItem(R.id.menu_show_html).setEnabled(data.message.content && Helper.classExists("android.webkit.WebView"));
|
||||||
|
popupMenu.getMenu().findItem(R.id.menu_flag).setChecked(data.message.uid != null && data.message.unflagged != 1);
|
||||||
|
popupMenu.getMenu().findItem(R.id.menu_reply_all).setVisible(data.message.content && !inOutbox);
|
||||||
|
|
||||||
|
popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onMenuItemClick(MenuItem target) {
|
||||||
|
switch (target.getItemId()) {
|
||||||
|
case R.id.menu_junk:
|
||||||
|
onJunk(data);
|
||||||
|
return true;
|
||||||
|
case R.id.menu_forward:
|
||||||
|
onForward(data);
|
||||||
|
return true;
|
||||||
|
case R.id.menu_reply_all:
|
||||||
|
onReplyAll(data);
|
||||||
|
return true;
|
||||||
|
case R.id.menu_show_headers:
|
||||||
|
onShowHeaders(data);
|
||||||
|
return true;
|
||||||
|
case R.id.menu_show_html:
|
||||||
|
onShowHtml(data);
|
||||||
|
return true;
|
||||||
|
case R.id.menu_flag:
|
||||||
|
onFlag(data);
|
||||||
|
return true;
|
||||||
|
case R.id.menu_unseen:
|
||||||
|
onUnseen(data);
|
||||||
|
return true;
|
||||||
|
case R.id.menu_answer:
|
||||||
|
onAnswer(data);
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
popupMenu.show();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onDelete(final ActionData data) {
|
private void onDelete(final ActionData data) {
|
||||||
|
|
|
@ -13,13 +13,8 @@
|
||||||
android:title="@string/title_reply_all" />
|
android:title="@string/title_reply_all" />
|
||||||
|
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_show_headers"
|
android:id="@+id/menu_answer"
|
||||||
android:checkable="true"
|
android:title="@string/title_answer_reply" />
|
||||||
android:title="@string/title_show_headers" />
|
|
||||||
|
|
||||||
<item
|
|
||||||
android:id="@+id/menu_show_html"
|
|
||||||
android:title="@string/title_show_html" />
|
|
||||||
|
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_unseen"
|
android:id="@+id/menu_unseen"
|
||||||
|
@ -31,6 +26,11 @@
|
||||||
android:title="@string/title_flag" />
|
android:title="@string/title_flag" />
|
||||||
|
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_answer"
|
android:id="@+id/menu_show_headers"
|
||||||
android:title="@string/title_answer_reply" />
|
android:checkable="true"
|
||||||
|
android:title="@string/title_show_headers" />
|
||||||
|
|
||||||
|
<item
|
||||||
|
android:id="@+id/menu_show_html"
|
||||||
|
android:title="@string/title_show_html" />
|
||||||
</menu>
|
</menu>
|
||||||
|
|
Loading…
Reference in New Issue