Search in sources :

Example 1 with Page

use of com.instructure.canvasapi2.models.Page in project instructure-android by instructure.

the class BaseParentActivity method handleError.

public void handleError(int code, String error) {
    if (code == 418) {
        // Parse the message from the response body
        Gson gson = new Gson();
        JsonParser parser = new JsonParser();
        JsonElement mJson = parser.parse(error);
        RevokedTokenResponse revokedTokenResponse = gson.fromJson(mJson, RevokedTokenResponse.class);
        showRevokedTokenDialog(revokedTokenResponse, this);
    }
    if (code == 403) {
        // Parse the message from the response body
        Gson gson = new Gson();
        JsonParser parser = new JsonParser();
        JsonElement mJson = parser.parse(error);
        BlockedStudentResponse blockedStudentResponse = gson.fromJson(mJson, BlockedStudentResponse.class);
        if (blockedStudentResponse.code.equals("studentBlocked")) {
            Prefs prefs = new Prefs(this, getString(R.string.app_name_parent));
            String parentId = prefs.load(Const.ID, "");
            // We want to refresh cache so the main activity can load quickly with accurate information
            UserManager.getStudentsForParentAirwolf(ApiPrefs.getAirwolfDomain(), parentId, new StatusCallback<List<Student>>() {

                @Override
                public void onResponse(@NonNull Response<List<Student>> response, @NonNull LinkHeaders linkHeaders, @NonNull ApiType type) {
                    if (response.body() != null && !response.body().isEmpty()) {
                        // They have students that they are observing, take them to that activity
                        startActivity(StudentViewActivity.createIntent(BaseParentActivity.this, response.body()));
                        overridePendingTransition(0, 0);
                        finish();
                    } else {
                        // Take the parent to the add user page.
                        FindSchoolActivity.Companion.createIntent(BaseParentActivity.this, true);
                        finish();
                    }
                }
            });
        }
    }
    if (code == 451) {
        // Parse the message from the response body
        Gson gson = new Gson();
        JsonParser parser = new JsonParser();
        JsonElement mJson = parser.parse(error);
        MismatchedRegionResponse mismatchedRegionResponse = gson.fromJson(mJson, MismatchedRegionResponse.class);
        showMismatchedRegionDialog(mismatchedRegionResponse.getStudentRegion(), this);
    }
}
Also used : BlockedStudentResponse(com.instructure.canvasapi2.models.BlockedStudentResponse) LinkHeaders(com.instructure.canvasapi2.utils.LinkHeaders) Gson(com.google.gson.Gson) Prefs(com.instructure.pandautils.utils.Prefs) ApiPrefs(com.instructure.canvasapi2.utils.ApiPrefs) MismatchedRegionResponse(com.instructure.canvasapi2.models.MismatchedRegionResponse) RevokedTokenResponse(com.instructure.canvasapi2.models.RevokedTokenResponse) JsonElement(com.google.gson.JsonElement) ApiType(com.instructure.canvasapi2.utils.ApiType) List(java.util.List) JsonParser(com.google.gson.JsonParser)

Example 2 with Page

use of com.instructure.canvasapi2.models.Page in project instructure-android by instructure.

the class StudentViewActivity method setupViews.

private void setupViews() {
    if (statusBarHeightId > 0) {
        // else it uses the default dimens in XML
        // Configure views to slide under status bar, will only effect > API 21
        int statusBarHeight = getResources().getDimensionPixelSize(statusBarHeightId);
        RelativeLayout root = (RelativeLayout) findViewById(R.id.rootView);
        RelativeLayout navigationWrapper = (RelativeLayout) findViewById(R.id.navigationWrapper);
        FrameLayout.LayoutParams rootParams = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.MATCH_PARENT);
        rootParams.setMargins(0, -statusBarHeight, 0, 0);
        root.setLayoutParams(rootParams);
        navigationWrapper.setPadding(0, statusBarHeight, 0, 0);
    } else {
        RelativeLayout root = (RelativeLayout) findViewById(R.id.rootView);
        RelativeLayout navigationWrapper = (RelativeLayout) findViewById(R.id.navigationWrapper);
        FrameLayout.LayoutParams rootParams = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.MATCH_PARENT);
        rootParams.setMargins(0, 0, 0, 0);
        root.setLayoutParams(rootParams);
        navigationWrapper.setPadding(0, 0, 0, 0);
    }
    mSettingsButton = (ImageButton) findViewById(R.id.settings);
    mStudentName = (TextView) findViewById(R.id.studentName);
    // Get the ViewPager and set it's PagerAdapter so that it can display items
    final ViewPager viewPager = (ViewPager) findViewById(R.id.viewpager);
    if (mPagerAdapter == null) {
        mPagerAdapter = new StudentActivityFragmentPagerAdapter(getSupportFragmentManager(), StudentViewActivity.this);
    }
    viewPager.setAdapter(mPagerAdapter);
    // When loading course page, alert page will need to be updated so we need to be sure to
    // keep all fragments in memory
    viewPager.setOffscreenPageLimit(2);
    // Give the TabLayout the ViewPager
    mTabLayout = (TabLayout) findViewById(R.id.sliding_tabs);
    mTabLayout.setupWithViewPager(viewPager);
    mTabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {

        @Override
        public void onTabSelected(TabLayout.Tab tab) {
            if (tab.getCustomView() != null) {
                tab.getCustomView().setAlpha(1f);
            }
            viewPager.setCurrentItem(tab.getPosition());
            // set the tab content description to the title of the tab, for a11y/testing
            tab.setContentDescription(tab.getText());
            onPageScrolled(mCarouselViewPager.getCurrentItem(), 0, 0);
        }

        @Override
        public void onTabUnselected(TabLayout.Tab tab) {
            if (tab.getCustomView() != null) {
                tab.getCustomView().setAlpha(.30f);
            }
        }

        @Override
        public void onTabReselected(TabLayout.Tab tab) {
        }
    });
    // Iterate over all tabs and set the custom view
    for (int i = 0; i < mTabLayout.getTabCount(); i++) {
        TabLayout.Tab tab = mTabLayout.getTabAt(i);
        tab.setCustomView(mPagerAdapter.getTabView(i));
        if (i != viewPager.getCurrentItem()) {
            tab.getCustomView().setAlpha(.30f);
        }
    }
    configureUserCarousel();
    Prefs prefs = new Prefs(StudentViewActivity.this, com.instructure.parentapp.util.Const.CANVAS_PARENT_SP);
    int pos = prefs.load(Const.TAB, 0);
    if (pos != 0) {
        viewPager.setCurrentItem(pos);
    }
    // update unread count
    mPagerAdapter.setAlertFragmentUnreadCount(mUnreadAlertCount);
}
Also used : TabLayout(android.support.design.widget.TabLayout) FrameLayout(android.widget.FrameLayout) RelativeLayout(android.widget.RelativeLayout) StudentActivityFragmentPagerAdapter(com.instructure.parentapp.adapter.StudentActivityFragmentPagerAdapter) ApiPrefs(com.instructure.canvasapi2.utils.ApiPrefs) Prefs(com.instructure.pandautils.utils.Prefs) ViewPager(android.support.v4.view.ViewPager)

Example 3 with Page

use of com.instructure.canvasapi2.models.Page in project instructure-android by instructure.

the class StudentViewActivity method onPause.

@Override
protected void onPause() {
    super.onPause();
    // save the position so when the parent comes back to this page it will load the student they were on last
    Prefs prefs = new Prefs(this, com.instructure.parentapp.util.Const.CANVAS_PARENT_SP);
    prefs.save(Const.POSITION, mCarouselViewPager.getCurrentItem());
    prefs.save(Const.TAB, mTabLayout.getSelectedTabPosition());
}
Also used : ApiPrefs(com.instructure.canvasapi2.utils.ApiPrefs) Prefs(com.instructure.pandautils.utils.Prefs)

Example 4 with Page

use of com.instructure.canvasapi2.models.Page in project instructure-android by instructure.

the class PageListFragment method onCreateView.

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    super.onCreateView(inflater, container, savedInstanceState);
    mRootView = getLayoutInflater().inflate(R.layout.fragment_course_pages, container, false);
    mToolbar = mRootView.findViewById(R.id.toolbar);
    mRecyclerAdapter = new PageListRecyclerAdapter(getContext(), getCanvasContext(), new AdapterToFragmentCallback<Page>() {

        @Override
        public void onRowClicked(Page page, int position, boolean isOpenDetail) {
            Navigation navigation = getNavigation();
            if (navigation != null) {
                Bundle bundle = PageDetailsFragment.Companion.createBundle(page.getUrl(), getCanvasContext());
                navigation.addFragment(FragUtils.getFrag(PageDetailsFragment.class, bundle));
            }
        }

        @Override
        public void onRefreshFinished() {
            setRefreshing(false);
        }
    }, mDefaultSelectedPageTitle);
    configureRecyclerView(mRootView, getContext(), mRecyclerAdapter, R.id.swipeRefreshLayout, R.id.emptyPandaView, R.id.listView);
    return mRootView;
}
Also used : Navigation(com.instructure.interactions.Navigation) PageListRecyclerAdapter(com.instructure.candroid.adapter.PageListRecyclerAdapter) Bundle(android.os.Bundle) AdapterToFragmentCallback(com.instructure.candroid.interfaces.AdapterToFragmentCallback) Page(com.instructure.canvasapi2.models.Page)

Example 5 with Page

use of com.instructure.canvasapi2.models.Page in project instructure-android by instructure.

the class PageListRecycerAdapterTest method testAreContentsTheSame_titleSame.

@Test
public void testAreContentsTheSame_titleSame() {
    Page page = new Page();
    page.setTitle("HI");
    assertTrue(mAdapter.getItemCallback().areContentsTheSame(page, page));
}
Also used : Page(com.instructure.canvasapi2.models.Page) Test(org.junit.Test)

Aggregations

Page (com.instructure.canvasapi2.models.Page)3 ApiPrefs (com.instructure.canvasapi2.utils.ApiPrefs)3 Prefs (com.instructure.pandautils.utils.Prefs)3 Test (org.junit.Test)3 Bundle (android.os.Bundle)2 TabLayout (android.support.design.widget.TabLayout)1 ViewPager (android.support.v4.view.ViewPager)1 FrameLayout (android.widget.FrameLayout)1 RelativeLayout (android.widget.RelativeLayout)1 Gson (com.google.gson.Gson)1 JsonElement (com.google.gson.JsonElement)1 JsonParser (com.google.gson.JsonParser)1 PageListRecyclerAdapter (com.instructure.candroid.adapter.PageListRecyclerAdapter)1 ParentFragment (com.instructure.candroid.fragment.ParentFragment)1 AdapterToFragmentCallback (com.instructure.candroid.interfaces.AdapterToFragmentCallback)1 BlockedStudentResponse (com.instructure.canvasapi2.models.BlockedStudentResponse)1 Course (com.instructure.canvasapi2.models.Course)1 MismatchedRegionResponse (com.instructure.canvasapi2.models.MismatchedRegionResponse)1 ModuleItem (com.instructure.canvasapi2.models.ModuleItem)1 RevokedTokenResponse (com.instructure.canvasapi2.models.RevokedTokenResponse)1