/**
* Copyright (C) 2013 Romain Guefveneu.
*
* This file is part of naonedbus.
*
* Naonedbus 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.
*
* Naonedbus 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 net.naonedbus.fragment.impl;
import net.naonedbus.R;
import net.naonedbus.activity.impl.MapActivity;
import net.naonedbus.activity.impl.ParcoursActivity;
import net.naonedbus.activity.map.overlay.TypeOverlayItem;
import net.naonedbus.bean.Equipement.Type;
import net.naonedbus.fragment.CustomCursorFragment;
import net.naonedbus.intent.ParamIntent;
import net.naonedbus.manager.impl.EquipementManager;
import net.naonedbus.provider.impl.EquipementProvider;
import net.naonedbus.provider.table.EquipementTable;
import net.naonedbus.widget.ModalSearchView;
import net.naonedbus.widget.ModalSearchView.OnQueryTextListener;
import net.naonedbus.widget.adapter.impl.EquipementCursorAdapter;
import net.naonedbus.widget.indexer.impl.EquipementCursorIndexer;
import android.app.SearchManager;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.database.CursorWrapper;
import android.database.DataSetObserver;
import android.os.Bundle;
import android.support.v4.content.CursorLoader;
import android.support.v4.content.Loader;
import android.support.v4.widget.CursorAdapter;
import android.view.View;
import android.widget.FilterQueryProvider;
import android.widget.ListView;
import com.actionbarsherlock.app.ActionBar;
import com.actionbarsherlock.app.SherlockFragmentActivity;
public class SearchFragment extends CustomCursorFragment implements OnQueryTextListener, FilterQueryProvider {
private EquipementCursorAdapter mAdapter;
private EquipementManager mEquipementManager;
private ModalSearchView mModalSearchView;
public SearchFragment() {
super(R.layout.fragment_listview_section);
}
@Override
public void onActivityCreated(final Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
final ActionBar actionBar = ((SherlockFragmentActivity) getActivity()).getSupportActionBar();
mModalSearchView = (ModalSearchView) actionBar.getCustomView();
mModalSearchView.setOnQueryTextListener(this);
mModalSearchView.requestFocus();
final Intent queryIntent = getActivity().getIntent();
final String queryAction = queryIntent.getAction();
if (Intent.ACTION_SEARCH.equals(queryAction)) {
if (queryIntent.getData() == null) {
// Lancer la recherche
final String query = queryIntent.getStringExtra(SearchManager.QUERY);
mModalSearchView.setText(query);
} else {
final Integer selectedItemId = Integer.valueOf(queryIntent.getStringExtra(SearchManager.QUERY));
final int typeId = Integer.valueOf(queryIntent.getStringExtra(SearchManager.EXTRA_DATA_KEY));
final TypeOverlayItem selectedItemType = TypeOverlayItem.getById(typeId);
if (selectedItemType.equals(TypeOverlayItem.TYPE_STATION)) {
// Afficher les parcours de l'arrêt sélectionné
final Intent intent = new Intent(getActivity(), ParcoursActivity.class);
intent.putExtra(ParcoursActivity.PARAM_ID_SATION, selectedItemId);
startActivity(intent);
} else {
// Afficher l'élément sur la carte
final ParamIntent intent = new ParamIntent(getActivity(), MapActivity.class);
intent.putExtra(MapFragment.PARAM_ITEM_ID, selectedItemId);
intent.putExtra(MapFragment.PARAM_ITEM_TYPE, selectedItemType.getId());
startActivity(intent);
}
getActivity().finish();
}
}
mModalSearchView.requestFocus();
}
@Override
public void onStop() {
super.onStop();
}
@Override
public void onListItemClick(final ListView l, final View v, final int position, final long id) {
final CursorWrapper equipement = (CursorWrapper) getListAdapter().getItem(position);
final int idType = equipement.getInt(equipement.getColumnIndex(EquipementTable.ID_TYPE));
Intent intent;
if (idType == Type.TYPE_ARRET.getId()) {
intent = new Intent(getActivity(), ParcoursActivity.class);
intent.putExtra(ParcoursActivity.PARAM_ID_SATION, (int) id);
} else {
intent = new Intent(getActivity(), MapActivity.class);
intent.putExtra(MapFragment.PARAM_ITEM_ID, id);
intent.putExtra(MapFragment.PARAM_ITEM_TYPE, idType);
}
startActivity(intent);
}
@Override
public Loader<Cursor> onCreateLoader(final int loaderId, final Bundle bundle) {
return new CursorLoader(getActivity(), EquipementProvider.CONTENT_URI, null, null, null, null);
}
@Override
protected CursorAdapter getCursorAdapter(final Context context) {
mEquipementManager = EquipementManager.getInstance();
final String[] types = getResources().getStringArray(R.array.types_equipements);
mAdapter = new EquipementCursorAdapter(getActivity(), null);
mAdapter.setIndexer(new EquipementCursorIndexer(null, types, EquipementTable.ID_TYPE));
mAdapter.setFilterQueryProvider(this);
mAdapter.registerDataSetObserver(new DataSetObserver() {
@Override
public void onChanged() {
if (mAdapter.getCount() == 0) {
showMessage();
} else {
showContent();
}
}
});
return mAdapter;
}
@Override
public void onQueryTextChange(final String newText) {
mAdapter.getFilter().filter(newText);
}
@Override
public Cursor runQuery(final CharSequence constraint) {
return mEquipementManager.getEquipementsCursorByName(getActivity().getContentResolver(), null,
constraint.toString());
}
}