FairEmail/app/src/main/java/eu/faircode/email/ViewModelMessages.java

77 lines
2.3 KiB
Java
Raw Normal View History

package eu.faircode.email;
2018-10-29 08:09:56 +00:00
/*
This file is part of FairEmail.
FairEmail is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-10-29 08:09:56 +00:00
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-10-29 08:09:56 +00:00
Copyright 2018 by Marcel Bokhorst (M66B)
*/
import androidx.lifecycle.ViewModel;
import androidx.paging.PagedList;
public class ViewModelMessages extends ViewModel {
private PagedList<TupleMessageEx> messages = null;
void setMessages(PagedList<TupleMessageEx> messages) {
this.messages = messages;
}
2018-10-21 14:07:45 +00:00
@Override
protected void onCleared() {
messages = null;
}
2018-10-21 08:49:03 +00:00
Target[] getPrevNext(String thread) {
if (messages == null)
2018-10-21 08:49:03 +00:00
return new Target[]{null, null};
boolean found = false;
TupleMessageEx prev = null;
TupleMessageEx next = null;
for (int i = 0; i < messages.size(); i++) {
TupleMessageEx item = messages.get(i);
if (item == null)
continue;
if (found) {
2018-10-21 08:49:03 +00:00
prev = item;
messages.loadAround(i);
break;
}
if (thread.equals(item.thread))
found = true;
else
2018-10-21 08:49:03 +00:00
next = item;
}
2018-10-21 08:49:03 +00:00
return new Target[]{
prev == null ? null : new Target(prev.account, prev.thread, prev.id, prev.ui_found),
next == null ? null : new Target(next.account, next.thread, next.id, next.ui_found)};
2018-10-20 19:04:05 +00:00
}
2018-10-21 08:49:03 +00:00
class Target {
2018-10-20 19:04:05 +00:00
long account;
String thread;
long id;
boolean found;
2018-10-20 19:04:05 +00:00
Target(long account, String thread, long id, boolean found) {
2018-10-20 19:04:05 +00:00
this.account = account;
this.thread = thread;
this.id = id;
this.found = found;
2018-10-20 19:04:05 +00:00
}
}
}