/**
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.ut.biolab.medsavant.client.patient;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.JPopupMenu;
import org.ut.biolab.medsavant.client.filter.SearchBar;
import org.ut.biolab.medsavant.shared.format.BasicPatientColumns;
import org.ut.biolab.medsavant.client.filter.StringListFilterView;
import org.ut.biolab.medsavant.client.filter.WhichTable;
import org.ut.biolab.medsavant.client.view.MedSavantFrame;
import org.ut.biolab.medsavant.client.view.genetics.GeneticsFilterPage;
import org.ut.biolab.medsavant.client.view.genetics.QueryUtils;
import org.ut.biolab.medsavant.client.view.util.DialogUtils;
import org.ut.biolab.medsavant.client.query.QueryViewController;
import org.ut.biolab.medsavant.client.query.SearchConditionGroupItem.QueryRelation;
import org.ut.biolab.medsavant.client.query.value.encode.NumericConditionEncoder;
import org.ut.biolab.medsavant.client.query.value.encode.StringConditionEncoder;
/**
*
* @author Andrew
*/
public class PatientUtils implements BasicPatientColumns {
public static JPopupMenu createPopup(final String famID) {
JPopupMenu popupMenu = new JPopupMenu();
JMenuItem filter1Item = new JMenuItem("Filter by Family");
filter1Item.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
GeneticsFilterPage.getSearchBar().loadFilters(StringListFilterView.wrapState(WhichTable.PATIENT, FAMILY_ID.getColumnName(), FAMILY_ID.getAlias(), Arrays.asList(famID)));
}
});
popupMenu.add(filter1Item);
return popupMenu;
}
public static JPopupMenu createPopup(final String[] hospitalIDs){
JPopupMenu popupMenu = new JPopupMenu();
JMenuItem filter1Item = new JMenuItem(String.format("<html>Filter by %s</html>", hospitalIDs.length == 1 ? "Hospital ID <i>" + hospitalIDs[0] + "</i>" : "Selected Hospital IDs"));
filter1Item.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
QueryViewController qvc = SearchBar.getInstance().getQueryViewController();
String encodedConditions = StringConditionEncoder.encodeConditions(Arrays.asList(hospitalIDs));
String description = StringConditionEncoder.getDescription(Arrays.asList(hospitalIDs));
qvc.replaceFirstLevelItem(BasicPatientColumns.HOSPITAL_ID.getAlias(), encodedConditions, description);
DialogUtils.displayMessage("Selected Hospital IDS have been added to query. Click 'Variants' to review and execute search.");
}
});
popupMenu.add(filter1Item);
return popupMenu;
}
/**
* Create a popup to filter by patient IDs.
*
* @param patIDs ids of selected patient(s)
*/
public static JPopupMenu createPopup(final int[] patIDs) {
JPopupMenu popupMenu = new JPopupMenu();
JMenuItem filter1Item = new JMenuItem(String.format("<html>Filter by %s</html>", patIDs.length == 1 ? "Patient <i>" + patIDs[0] + "</i>" : "Selected Patients"));
filter1Item.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
QueryUtils.addQueryOnPatients(patIDs);
}
});
popupMenu.add(filter1Item);
return popupMenu;
}
}