/*
* Copyright (C) 2017 Team Gateship-One
* (Hendrik Borghorst & Frederik Luetkes)
*
* The AUTHORS.md file contains a detailed contributors list:
* <https://github.com/gateship-one/odyssey/blob/master/AUTHORS.md>
*
* This program 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.
*
* This program is distributed in the hope that it will be useful,
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.gateshipone.odyssey.dialogs;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.drawable.ColorDrawable;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v4.app.DialogFragment;
import android.support.v4.app.LoaderManager;
import android.support.v4.content.Loader;
import android.support.v7.app.AppCompatActivity;
import org.gateshipone.odyssey.R;
import org.gateshipone.odyssey.adapter.SavedPlaylistsAdapter;
import org.gateshipone.odyssey.listener.OnSaveDialogListener;
import org.gateshipone.odyssey.loaders.PlaylistLoader;
import org.gateshipone.odyssey.models.PlaylistModel;
import org.gateshipone.odyssey.utils.ThemeUtils;
import java.util.List;
public class ChoosePlaylistDialog extends DialogFragment implements LoaderManager.LoaderCallbacks<List<PlaylistModel>> {
/**
* Listener to save the bookmark
*/
OnSaveDialogListener mSaveCallback;
/**
* Adapter used for the ListView
*/
private SavedPlaylistsAdapter mPlaylistsListViewAdapter;
@Override
public void onAttach(Context context) {
super.onAttach(context);
// This makes sure that the container activity has implemented
// the callback interface. If not, it throws an exception
try {
mSaveCallback = (OnSaveDialogListener) context;
} catch (ClassCastException e) {
throw new ClassCastException(context.toString() + " must implement OnSaveDialogListener");
}
}
/**
* This method creates a new loader for this fragment.
*
* @param id The id of the loader
* @param args Optional arguments
* @return Return a new Loader instance that is ready to start loading.
*/
@Override
public Loader<List<PlaylistModel>> onCreateLoader(int id, Bundle args) {
return new PlaylistLoader(getActivity(), true);
}
/**
* Called when the loader finished loading its data.
*
* @param loader The used loader itself
* @param data Data of the loader
*/
@Override
public void onLoadFinished(Loader<List<PlaylistModel>> loader, List<PlaylistModel> data) {
mPlaylistsListViewAdapter.swapModel(data);
}
/**
* If a loader is reset the model data should be cleared.
*
* @param loader Loader that was resetted.
*/
@Override
public void onLoaderReset(Loader<List<PlaylistModel>> loader) {
mPlaylistsListViewAdapter.swapModel(null);
}
/**
* Create the dialog to choose to override an existing bookmark or to create a new bookmark.
*/
@NonNull
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
// Use the Builder class for convenient dialog construction
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
mPlaylistsListViewAdapter = new SavedPlaylistsAdapter(getActivity());
builder.setTitle(R.string.dialog_choose_playlist).setAdapter(mPlaylistsListViewAdapter, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
if (which == 0) {
// open save dialog to create a new bookmark
SaveDialog saveDialog = SaveDialog.newInstance(SaveDialog.OBJECTTYPE.PLAYLIST);
saveDialog.show(((AppCompatActivity) getContext()).getSupportFragmentManager(), "SaveDialog");
} else {
// override existing bookmark
PlaylistModel playlist = (PlaylistModel) mPlaylistsListViewAdapter.getItem(which);
String objectTitle = playlist.getPlaylistName();
mSaveCallback.onSaveObject(objectTitle, SaveDialog.OBJECTTYPE.PLAYLIST);
}
}
}).setNegativeButton(R.string.dialog_action_cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// User cancelled the dialog dont save object
getDialog().cancel();
}
});
// Prepare loader ( start new one or reuse old )
getLoaderManager().initLoader(0, getArguments(), this);
// set divider
AlertDialog dlg = builder.create();
dlg.getListView().setDivider(new ColorDrawable(ThemeUtils.getThemeColor(getContext(), R.attr.odyssey_color_background_selected)));
dlg.getListView().setDividerHeight(getResources().getDimensionPixelSize(R.dimen.list_divider_size));
return dlg;
}
}