package org.mian.gitnex.viewmodels; import android.content.Context; import androidx.annotation.NonNull; import androidx.lifecycle.LiveData; import androidx.lifecycle.MutableLiveData; import androidx.lifecycle.ViewModel; import java.util.List; import org.gitnex.tea4j.v2.models.Issue; import org.mian.gitnex.R; import org.mian.gitnex.adapters.ExploreIssuesAdapter; import org.mian.gitnex.clients.RetrofitClient; import org.mian.gitnex.helpers.Constants; import org.mian.gitnex.helpers.Toasty; import retrofit2.Call; import retrofit2.Callback; import retrofit2.Response; /** * @author M M Arif */ public class IssuesViewModel extends ViewModel { private MutableLiveData> issuesList; private int resultLimit; public LiveData> getIssuesList( String searchKeyword, String type, Boolean created, String state, Boolean assignedToMe, Context ctx) { issuesList = new MutableLiveData<>(); resultLimit = Constants.getCurrentResultLimit(ctx); loadIssuesList(searchKeyword, type, created, state, assignedToMe, ctx); return issuesList; } public void loadIssuesList( String searchKeyword, String type, Boolean created, String state, Boolean assignedToMe, Context ctx) { Call> call = RetrofitClient.getApiInterface(ctx) .issueSearchIssues( state, null, null, searchKeyword, null, type, null, null, assignedToMe, created, null, null, null, null, null, 1, resultLimit); call.enqueue( new Callback<>() { @Override public void onResponse( @NonNull Call> call, @NonNull Response> response) { if (response.isSuccessful()) { issuesList.postValue(response.body()); } else { Toasty.error(ctx, ctx.getString(R.string.genericError)); } } @Override public void onFailure(@NonNull Call> call, @NonNull Throwable t) { Toasty.error(ctx, ctx.getString(R.string.genericServerResponseError)); } }); } public void loadMoreIssues( String searchKeyword, String type, Boolean created, String state, int page, Boolean assignedToMe, Context ctx, ExploreIssuesAdapter adapter) { Call> call = RetrofitClient.getApiInterface(ctx) .issueSearchIssues( state, null, null, searchKeyword, null, type, null, null, assignedToMe, created, null, null, null, null, null, page, resultLimit); call.enqueue( new Callback<>() { @Override public void onResponse( @NonNull Call> call, @NonNull Response> response) { if (response.isSuccessful()) { List list = issuesList.getValue(); assert list != null; assert response.body() != null; if (response.body().size() != 0) { list.addAll(response.body()); adapter.updateList(list); } else { adapter.setMoreDataAvailable(false); } } else { Toasty.error(ctx, ctx.getString(R.string.genericError)); } } @Override public void onFailure(@NonNull Call> call, @NonNull Throwable t) { Toasty.error(ctx, ctx.getString(R.string.genericServerResponseError)); } }); } }