use of com.instructure.canvasapi2.models.PollChoiceResponse in project instructure-android by instructure.
the class PollSessionListFragment method setupCallbacks.
@Override
public void setupCallbacks() {
pollSessionCallback = new StatusCallback<PollSessionResponse>() {
@Override
public void onResponse(@NonNull Response<PollSessionResponse> response, @NonNull LinkHeaders linkHeaders, @NonNull ApiType type) {
if (getActivity() == null || type.isCache())
return;
List<PollSession> pollSessions = response.body().getPollSessions();
sessionNextUrl = linkHeaders.nextUrl;
if (pollSessions != null) {
for (PollSession pollSession : pollSessions) {
addItem(pollSession);
SectionManager.getSection(pollSession.getCourse_id(), pollSession.getCourse_section_id(), sectionCallback, true);
}
}
}
@Override
public void onFinished(ApiType type) {
if (swipeRefreshLayout != null) {
swipeRefreshLayout.setRefreshing(false);
}
}
};
sectionCallback = new StatusCallback<Section>() {
@Override
public void onResponse(@NonNull Response<Section> response, @NonNull LinkHeaders linkHeaders, @NonNull ApiType type) {
if (getActivity() == null || type.isCache())
return;
sectionMap.put(response.body().getId(), response.body());
notifyDataSetChanged();
}
};
pollChoiceCallback = new StatusCallback<PollChoiceResponse>() {
@Override
public void onResponse(@NonNull Response<PollChoiceResponse> response, @NonNull LinkHeaders linkHeaders, @NonNull ApiType type) {
if (getActivity() == null || type.isCache())
return;
List<PollChoice> pollChoices = response.body().getPollChoices();
if (pollChoices != null) {
pollChoiceArrayList.addAll(pollChoices);
}
// or generate the CSV, depending on which action they selected
if (!StatusCallback.moreCallsExist(linkHeaders)) {
if (fromGenerateCSV) {
// generate a map from the array list of poll choices
for (PollChoice choice : pollChoiceArrayList) {
pollChoiceMap.put(choice.getId(), choice);
}
generateCSV();
} else {
AddQuestionFragment addQuestionFragment = new AddQuestionFragment();
// populate the current data with the bundle
Bundle bundle = new Bundle();
bundle.putParcelable(Constants.POLL_BUNDLE, poll);
bundle.putParcelableArrayList(Constants.POLL_CHOICES, pollChoiceArrayList);
addQuestionFragment.setArguments(bundle);
((FragmentManagerActivity) getActivity()).swapFragments(addQuestionFragment, AddQuestionFragment.class.getSimpleName(), R.anim.slide_in_from_bottom, 0, 0, R.anim.slide_out_to_bottom);
}
} else {
// otherwise, get the next group of poll choices.
PollsManager.getNextPagePollChoices(linkHeaders.nextUrl, pollChoiceCallback, false);
}
}
@Override
public void onFinished(ApiType type) {
if (swipeRefreshLayout != null) {
swipeRefreshLayout.setRefreshing(false);
}
}
};
responseCanvasCallback = new StatusCallback<ResponseBody>() {
@Override
public void onFail(@Nullable Call<ResponseBody> call, @NonNull Throwable error, @Nullable Response response) {
AppMsg.makeText(getActivity(), getString(R.string.errorDeletingPollSession), AppMsg.STYLE_ERROR).show();
// we didn't actually delete anything, but we removed the item from the list to make the animation smoother, so now
// lets get the poll sessions again
reloadData();
}
};
}
use of com.instructure.canvasapi2.models.PollChoiceResponse in project instructure-android by instructure.
the class QuestionListFragment method setupCallbacks.
@Override
public void setupCallbacks() {
pollCallback = new StatusCallback<PollResponse>() {
@Override
public void onResponse(@NonNull Response<PollResponse> response, @NonNull LinkHeaders linkHeaders, @NonNull ApiType type) {
if (getActivity() == null || type.isCache())
return;
nextUrl = linkHeaders.nextUrl;
if (response.body().getPolls().size() == 0) {
displayEmptyState();
} else {
List<Poll> polls = response.body().getPolls();
for (Poll poll : polls) {
// add all the polls to a list. we'll use the list later to populate the
// different groups after we get some session information about each poll
pollList.add(poll);
PollsManager.getFirstPagePollSessions(poll.getId(), pollSessionCallback, true);
}
}
}
@Override
public void onFinished(ApiType type) {
if (swipeRefreshLayout != null) {
swipeRefreshLayout.setRefreshing(false);
}
}
};
responseCanvasCallback = new StatusCallback<ResponseBody>() {
@Override
public void onResponse(@NonNull Response<ResponseBody> response, @NonNull LinkHeaders linkHeaders, @NonNull ApiType type) {
if (response.code() == 204) {
if (pollToDelete != null) {
// reset it so we don't try to remove it from the list again
pollToDelete = null;
}
}
}
@Override
public void onFail(@Nullable Call<ResponseBody> call, @NonNull Throwable error, @Nullable Response response) {
AppMsg.makeText(getActivity(), getString(R.string.errorDeletingPoll), AppMsg.STYLE_ERROR).show();
// we didn't actually delete anything, but we removed the item from the list to make the animation smoother, so now
// lets get the polls again
reloadData();
}
};
pollSessionCallback = new StatusCallback<PollSessionResponse>() {
@Override
public void onResponse(@NonNull Response<PollSessionResponse> response, @NonNull LinkHeaders linkHeaders, @NonNull ApiType type) {
if (getActivity() == null || type.isCache())
return;
List<PollSession> pollSessions = response.body().getPollSessions();
for (PollSession session : pollSessions) {
if (session.is_published()) {
openSessions.put(session.getPoll_id(), session);
// we only care about there being one active poll session
break;
} else {
closedSessions.put(session.getPoll_id(), session);
}
}
// and add it to the "active" group
for (Poll poll : pollList) {
if (openSessions.containsKey(poll.getId())) {
removeItem(poll);
addItem(getString(R.string.active), poll);
} else // if the poll doesn't have an open session or any closed sessions, it is still in the draft state
if (!closedSessions.containsKey(poll.getId())) {
removeItem(poll);
addItem(getString(R.string.draft), poll);
} else {
removeItem(poll);
addItem(getString(R.string.inactive), poll);
}
}
expandAllGroups();
if (linkHeaders.nextUrl != null) {
PollsManager.getNextPagePollSessions(linkHeaders.nextUrl, pollSessionCallback, true);
}
notifyDataSetChanged();
}
@Override
public void onFinished(ApiType type) {
if (swipeRefreshLayout != null) {
swipeRefreshLayout.setRefreshing(false);
}
}
};
pollChoiceCallback = new StatusCallback<PollChoiceResponse>() {
@Override
public void onResponse(@NonNull Response<PollChoiceResponse> response, @NonNull LinkHeaders linkHeaders, @NonNull ApiType type) {
if (getActivity() == null || type.isCache())
return;
List<PollChoice> pollChoices = response.body().getPollChoices();
if (pollChoices != null) {
pollChoiceArrayList.addAll(pollChoices);
}
// or generate the CSV, depending on which action they selected
if (!StatusCallback.moreCallsExist(linkHeaders)) {
AddQuestionFragment addQuestionFragment = new AddQuestionFragment();
// populate the current data with the bundle
Bundle bundle = new Bundle();
bundle.putParcelable(Constants.POLL_BUNDLE, selectedPoll);
bundle.putParcelableArrayList(Constants.POLL_CHOICES, pollChoiceArrayList);
addQuestionFragment.setArguments(bundle);
((FragmentManagerActivity) getActivity()).swapFragments(addQuestionFragment, AddQuestionFragment.class.getSimpleName());
} else {
// otherwise, get the next group of poll choices.
PollsManager.getNextPagePollChoices(linkHeaders.nextUrl, pollChoiceCallback, true);
}
}
@Override
public void onFinished(ApiType type) {
if (swipeRefreshLayout != null) {
swipeRefreshLayout.setRefreshing(false);
}
}
};
}
use of com.instructure.canvasapi2.models.PollChoiceResponse in project instructure-android by instructure.
the class PollsManager method getNextPagePollChoices.
public static void getNextPagePollChoices(String nextUrl, StatusCallback<PollChoiceResponse> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
// TODO:
} else {
final RestBuilder adapter = new RestBuilder(callback);
final RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
PollsChoiceAPI.getNextPagePollChoices(nextUrl, adapter, params, callback);
}
}
use of com.instructure.canvasapi2.models.PollChoiceResponse in project instructure-android by instructure.
the class PollsManager method getFirstPagePollChoices.
public static void getFirstPagePollChoices(long pollId, StatusCallback<PollChoiceResponse> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
// TODO:
} else {
final RestBuilder adapter = new RestBuilder(callback);
final RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
PollsChoiceAPI.getFirstPagePollChoices(pollId, adapter, params, callback);
}
}
use of com.instructure.canvasapi2.models.PollChoiceResponse in project instructure-android by instructure.
the class PollsManager method createPollChoice.
public static void createPollChoice(long pollId, String text, boolean isCorrect, int position, StatusCallback<PollChoiceResponse> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
// TODO:
} else {
final RestBuilder adapter = new RestBuilder(callback);
final RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
PollsChoiceAPI.createPollChoice(pollId, text, isCorrect, position, adapter, params, callback);
}
}
Aggregations