/* * PatientView * * Copyright (c) Worth Solutions Limited 2004-2013 * * This file is part of PatientView. * * PatientView 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. * PatientView 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 PatientView in a file * titled COPYING. If not, see <http://www.gnu.org/licenses/>. * * @package PatientView * @link http://www.patientview.org * @author PatientView <info@patientview.org> * @copyright Copyright (c) 2004-2013, Worth Solutions Limited * @license http://www.gnu.org/licenses/gpl-3.0.html The GNU General Public License V3.0 */ package org.patientview.radar.web.pages.patient.hnf1b; import org.apache.wicket.AttributeModifier; import org.apache.wicket.Component; import org.apache.wicket.MarkupContainer; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.IAjaxCallDecorator; import org.apache.wicket.ajax.markup.html.AjaxLink; import org.apache.wicket.authroles.authorization.strategies.role.annotations.AuthorizeInstantiation; import org.apache.wicket.markup.html.WebMarkupContainer; import org.apache.wicket.markup.html.basic.Label; import org.apache.wicket.model.AbstractReadOnlyModel; import org.apache.wicket.model.IModel; import org.apache.wicket.model.Model; import org.apache.wicket.request.mapper.parameter.PageParameters; import org.apache.wicket.spring.injection.annot.SpringBean; import org.patientview.model.Patient; import org.patientview.radar.model.user.User; import org.patientview.radar.service.PatientManager; import org.patientview.radar.web.RadarApplication; import org.patientview.radar.web.behaviours.RadarBehaviourFactory; import org.patientview.radar.web.pages.BasePage; import org.patientview.radar.web.panels.NonAlportGeneticsPanel; import org.patientview.radar.web.panels.alport.MedicinePanel; import org.patientview.radar.web.panels.generic.GenericDemographicsPanel; import org.patientview.radar.web.panels.generic.MedicalResultsPanel; import org.patientview.radar.web.panels.hnf1b.HNF1BMiscPanel; import org.patientview.radar.web.visitors.PatientFormVisitor; @AuthorizeInstantiation({User.ROLE_PROFESSIONAL, User.ROLE_SUPER_USER}) public class HNF1BPatientPage extends BasePage { public enum Tab { // Used for storing the current tab DEMOGRAPHICS(1), GENETICS(2), PROTEINURIA(3), HNF1BMisc(4), MEDICAL_RESULTS(5), MEDICINE(RadarApplication.MEDICINE_PAGE_NO); private int pageNumber; Tab(int pageNumber) { this.pageNumber = pageNumber; } public int getPageNumber() { return pageNumber; } } protected static final String PARAM_ID = "id"; @SpringBean private PatientManager patientManager; private Patient patient; private MarkupContainer linksContainer; // The panels we are using private GenericDemographicsPanel genericDemographicsPanel; private NonAlportGeneticsPanel geneticsPanel; private HNF1BMiscPanel hnf1BMiscPanel; private MedicalResultsPanel medicalResultsPanel; private MedicinePanel medicinePanel; private Tab currentTab = Tab.DEMOGRAPHICS; public HNF1BPatientPage(){ init(new Patient()); } public HNF1BPatientPage(Patient patient, PageParameters pageParameters) { super(pageParameters); this.patient = patient; init(patient); } public HNF1BPatientPage(PageParameters pageParameters) { // this constructor is used when a patient exists patient = patientManager.getPatientByRadarNumber(pageParameters.get("id").toLong()); init(patient); } public void init(Patient patient) { // init all the panels genericDemographicsPanel = new GenericDemographicsPanel("demographicsPanel", patient) { @Override public boolean isVisible() { return currentTab.equals(Tab.DEMOGRAPHICS); } }; add(genericDemographicsPanel); geneticsPanel = new NonAlportGeneticsPanel("geneticsPanel", patient) { @Override public boolean isVisible() { return currentTab.equals(Tab.GENETICS); } }; add(geneticsPanel); hnf1BMiscPanel = new HNF1BMiscPanel("hnf1BMiscPanel", patient) { @Override public boolean isVisible() { return currentTab.equals(Tab.HNF1BMisc); } }; add(hnf1BMiscPanel); medicalResultsPanel = new MedicalResultsPanel("medicalResultsPanel", patient) { @Override public boolean isVisible() { return currentTab.equals(Tab.MEDICAL_RESULTS); } }; medicalResultsPanel.setOutputMarkupPlaceholderTag(true); add(medicalResultsPanel); add(genericDemographicsPanel, medicalResultsPanel); medicinePanel = new MedicinePanel("medicinePanel", patient) { @Override public boolean isVisible() { return currentTab.equals(Tab.MEDICINE); } }; medicinePanel.setOutputMarkupPlaceholderTag(true); add(medicinePanel); // Add a container for the links to update the highlighted tab linksContainer = new WebMarkupContainer("linksContainer"); linksContainer.setOutputMarkupId(true); add(linksContainer); // Add the links to switch tab linksContainer.add(new TabAjaxLink("demographicsLink", Tab.DEMOGRAPHICS)); linksContainer.add(new TabAjaxLink("geneticsLink", Tab.GENETICS)); linksContainer.add(new TabAjaxLink("hnf1BMiscLink", Tab.HNF1BMisc)); linksContainer.add(new TabAjaxLink("medicalResultsLink", Tab.MEDICAL_RESULTS)); linksContainer.add(new TabAjaxLink("medicineLink", Tab.MEDICINE)); IModel<Integer> pageNumberModel = new Model<Integer>(); pageNumberModel.setObject(Tab.DEMOGRAPHICS.getPageNumber()); Label pageNumber = new Label("pageNumber", pageNumberModel); pageNumber.setOutputMarkupPlaceholderTag(true); add(pageNumber); visitChildren(new PatientFormVisitor()); add(RadarBehaviourFactory.getWarningOnPatientPageExitBehaviour()); } public static PageParameters getPageParameters(Patient patient) { return new PageParameters().set(PARAM_ID, patient.getRadarNo()); } public Tab getCurrentTab() { return currentTab; } private class TabAjaxLink extends AjaxLink { private Tab tab; public TabAjaxLink(String id, Tab tab) { super(id); this.tab = tab; // Decorate span with class="hovered" if we're active tab MarkupContainer span = new WebMarkupContainer("span"); span.add(new AttributeModifier("class", new AbstractReadOnlyModel<String>() { @Override public String getObject() { return currentTab.equals(TabAjaxLink.this.tab) ? "hovered" : ""; } })); add(span); } @Override public void onClick(AjaxRequestTarget target) { if (patient != null && patient.hasValidId()) { currentTab = tab; // Add the links container to update hover class target.add(linksContainer); // add each panel to the response target.add(genericDemographicsPanel, geneticsPanel, hnf1BMiscPanel, medicalResultsPanel, medicinePanel); Component pageNumber = getPage().get("pageNumber"); IModel pageNumberModel = pageNumber.getDefaultModel(); pageNumberModel.setObject(HNF1BPatientPage.this.currentTab.getPageNumber()); target.add(pageNumber); } } @Override protected IAjaxCallDecorator getAjaxCallDecorator() { return RadarBehaviourFactory.getWarningOnFormExitCallDecorator(); } } }