Android Open Source - EffectiveAndroidUI Tv Show Fragment






From Project

Back to project page EffectiveAndroidUI.

License

The source code is released under:

Apache License

If you think the Android project EffectiveAndroidUI listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2014 Pedro Vicente Gmez Snchez.
 *// ww w .  j a va  2 s.  c  o m
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.github.pedrovgs.effectiveandroidui.ui.fragment;

import android.app.Activity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.ProgressBar;
import android.widget.TextView;
import butterknife.InjectView;
import butterknife.OnClick;
import com.github.pedrovgs.effectiveandroidui.R;
import com.github.pedrovgs.effectiveandroidui.ui.renderer.chapterviewmodel.ChapterViewModelCollection;
import com.github.pedrovgs.effectiveandroidui.ui.renderer.chapterviewmodel.ChapterViewModelRendererAdapter;
import com.github.pedrovgs.effectiveandroidui.ui.renderer.chapterviewmodel.ChapterViewModelRendererAdapterFactory;
import com.github.pedrovgs.effectiveandroidui.ui.viewmodel.ChapterViewModel;
import com.github.pedrovgs.effectiveandroidui.ui.viewmodel.TvShowViewModel;
import com.github.pedrovgs.effectiveandroidui.ui.viewmodel.action.ActionCommand;
import com.github.pedrovgs.effectiveandroidui.util.ToastUtils;
import com.squareup.picasso.Picasso;
import java.util.List;
import javax.inject.Inject;

/**
 * Fragment created to show a TvShows. This fragment is going to be used in the tablet version.
 *
 * This Fragment uses a Model View View Model implementation to implement all the presentation
 * logic. Review TvShowViewModel to get more info about the implementation.
 *
 * This fragment contains duplicate code that you can see in TvShowDraggableFragment because I want
 * to show two different approaches to work over the Android UI layer with different patterns (MVVM
 * and MVP) and I don't want to mix both fragments in a hierarchy to clarify different
 * implementations.
 *
 * @author Pedro Vicente Gmez Snchez
 */
@SuppressWarnings("ALL") public class TvShowFragment extends BaseFragment
    implements TvShowViewModel.Listener {

  @Inject TvShowViewModel tvShowViewModel;
  @Inject ChapterViewModelRendererAdapterFactory chapterRendererAdapterFactory;

  private ChapterViewModelRendererAdapter adapter;
  private ChapterViewModelCollection chapterAdapteeCollection = new ChapterViewModelCollection();

  @InjectView(R.id.iv_fan_art) ImageView iv_fan_art;
  @InjectView(R.id.lv_chapters) ListView lv_chapters;
  @InjectView(R.id.pb_loading) ProgressBar pb_loading;
  @InjectView(R.id.v_empty_case) View v_empty_case;

  private TextView header_tv_show_chapters;

  @Override public void onViewCreated(View view, Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    initializeListView();
    bindViewModel();
  }

  @Override public void onAttach(Activity activity) {
    super.onAttach(activity);
    tvShowViewModel.setReady(true);
  }

  @Override public void onDetach() {
    super.onDetach();
    tvShowViewModel.setReady(false);
  }

  public void showTvShow(final String tvShowId) {
    if (isAdded()) {
      tvShowViewModel.loadTvShow(tvShowId);
    }
  }

  @Override protected int getFragmentLayout() {
    return R.layout.fragment_tv_show;
  }

  @Override public void onFanArtLoaded(final String fanArt) {
    Picasso.with(getActivity()).load(fanArt).placeholder(R.color.main_color).into(iv_fan_art);
  }

  @Override public void onTvShowTitleLoaded(final String tvShowTitle) {
    String tvShowHeaderTitle = getString(R.string.tv_show_title, tvShowTitle);
    header_tv_show_chapters.setText(tvShowHeaderTitle);
  }

  @Override public void onChaptersLoaded(List<ChapterViewModel> chapters) {
    chapterAdapteeCollection.clear();
    chapterAdapteeCollection.addAll(chapters);
    adapter.notifyDataSetChanged();
  }

  @Override public void onVisibilityChanged(final boolean visible) {
    int visibility = getVisibility(visible);
    iv_fan_art.setVisibility(visibility);
    lv_chapters.setVisibility(visibility);
  }

  @Override public void onLoadVisibilityChanged(final boolean visible) {
    pb_loading.setVisibility(getVisibility(visible));
  }

  @Override public void onEmptyCaseVisibilityChanged(final boolean visible) {
    v_empty_case.setVisibility(getVisibility(visible));
  }

  @Override public void onTvShowMessageNotFound() {
    ToastUtils.showError(getString(R.string.tv_show_not_found), getActivity());
  }

  @Override public void onConnectionErrorMessageNotFound() {
    ToastUtils.showError(getString(R.string.connection_error_message), getActivity());
  }

  @OnClick(R.id.iv_fan_art) void onFanArtClicked() {
    ActionCommand fanArtClickActionCommand = tvShowViewModel.getTvShowClickedCommand();
    fanArtClickActionCommand.execute();
  }

  private void initializeListView() {
    header_tv_show_chapters = (TextView) LayoutInflater.from(getActivity())
        .inflate(R.layout.header_tv_show_chapters, null);
    lv_chapters.addHeaderView(header_tv_show_chapters);
    adapter =
        (ChapterViewModelRendererAdapter) chapterRendererAdapterFactory.getChapterRendererAdapter(
            chapterAdapteeCollection);
    lv_chapters.setAdapter(adapter);
  }

  private void bindViewModel() {
    tvShowViewModel.setListener(this);
    tvShowViewModel.initialize();
  }

  private int getVisibility(final boolean visible) {
    return visible ? View.VISIBLE : View.GONE;
  }
}




Java Source Code List

com.github.pedrovgs.effectiveandroidui.TvShowsApplication.java
com.github.pedrovgs.effectiveandroidui.di.ActivityContext.java
com.github.pedrovgs.effectiveandroidui.di.ActivityModule.java
com.github.pedrovgs.effectiveandroidui.di.RootModule.java
com.github.pedrovgs.effectiveandroidui.domain.GetTvShowByIdInteractor.java
com.github.pedrovgs.effectiveandroidui.domain.GetTvShowById.java
com.github.pedrovgs.effectiveandroidui.domain.GetTvShowsInteractor.java
com.github.pedrovgs.effectiveandroidui.domain.GetTvShows.java
com.github.pedrovgs.effectiveandroidui.domain.TvShowsModule.java
com.github.pedrovgs.effectiveandroidui.domain.exception.TvShowNotFoundException.java
com.github.pedrovgs.effectiveandroidui.domain.tvshow.Catalog.java
com.github.pedrovgs.effectiveandroidui.domain.tvshow.ChapterCollection.java
com.github.pedrovgs.effectiveandroidui.domain.tvshow.Chapter.java
com.github.pedrovgs.effectiveandroidui.domain.tvshow.TvShow.java
com.github.pedrovgs.effectiveandroidui.executor.ExecutorModule.java
com.github.pedrovgs.effectiveandroidui.executor.Executor.java
com.github.pedrovgs.effectiveandroidui.executor.Interactor.java
com.github.pedrovgs.effectiveandroidui.executor.MainThreadImpl.java
com.github.pedrovgs.effectiveandroidui.executor.MainThread.java
com.github.pedrovgs.effectiveandroidui.executor.ThreadExecutor.java
com.github.pedrovgs.effectiveandroidui.ui.activity.BaseActivity.java
com.github.pedrovgs.effectiveandroidui.ui.activity.MainActivity.java
com.github.pedrovgs.effectiveandroidui.ui.activity.Navigator.java
com.github.pedrovgs.effectiveandroidui.ui.activity.TvShowActivity.java
com.github.pedrovgs.effectiveandroidui.ui.fragment.BaseFragment.java
com.github.pedrovgs.effectiveandroidui.ui.fragment.TvShowCatalogFragment.java
com.github.pedrovgs.effectiveandroidui.ui.fragment.TvShowDraggableFragment.java
com.github.pedrovgs.effectiveandroidui.ui.fragment.TvShowFragment.java
com.github.pedrovgs.effectiveandroidui.ui.presenter.Presenter.java
com.github.pedrovgs.effectiveandroidui.ui.presenter.TvShowCatalogPresenter.java
com.github.pedrovgs.effectiveandroidui.ui.presenter.TvShowPresenter.java
com.github.pedrovgs.effectiveandroidui.ui.presenter.TvShowUIModule.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapter.ChapterAdapteeCollection.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapter.ChapterRendererAdapterFactory.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapter.ChapterRendererAdapter.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapter.ChapterRendererBuilder.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapter.ChapterRenderer.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapterviewmodel.ChapterViewModelCollection.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapterviewmodel.ChapterViewModelRendererAdapterFactory.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapterviewmodel.ChapterViewModelRendererAdapter.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapterviewmodel.ChapterViewModelRendererBuilder.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.chapterviewmodel.ChapterViewModelRenderer.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.tvshow.TvShowCollection.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.tvshow.TvShowRendererAdapterFactory.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.tvshow.TvShowRendererBuilder.java
com.github.pedrovgs.effectiveandroidui.ui.renderer.tvshow.TvShowRenderer.java
com.github.pedrovgs.effectiveandroidui.ui.viewmodel.ChapterViewModel.java
com.github.pedrovgs.effectiveandroidui.ui.viewmodel.TvShowViewModel.java
com.github.pedrovgs.effectiveandroidui.ui.viewmodel.action.ActionCommand.java
com.github.pedrovgs.effectiveandroidui.ui.viewmodel.action.ShowTvShowOnBrowserActionCommand.java
com.github.pedrovgs.effectiveandroidui.util.RandomUtils.java
com.github.pedrovgs.effectiveandroidui.util.StringUtils.java
com.github.pedrovgs.effectiveandroidui.util.TimeMachine.java
com.github.pedrovgs.effectiveandroidui.util.ToastUtils.java