blob: 4962a0fea9bf1db7a5e574cc1294dfd999015a8d [file] [log] [blame]
/*
* Copyright 2011 Marc Grue.
*
* 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 org.qi4j.sample.dcicargo.sample_a.communication.web.booking;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.apache.wicket.Session;
import org.apache.wicket.devutils.stateless.StatelessComponent;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.list.ListItem;
import org.apache.wicket.markup.html.list.ListView;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.Model;
import org.qi4j.sample.dcicargo.sample_a.communication.query.CommonQueries;
import org.qi4j.sample.dcicargo.sample_a.communication.query.dto.CargoDTO;
import org.qi4j.sample.dcicargo.sample_a.data.shipping.delivery.Delivery;
import org.qi4j.sample.dcicargo.sample_a.data.shipping.delivery.RoutingStatus;
import org.qi4j.sample.dcicargo.sample_a.data.shipping.handling.HandlingEventType;
import org.qi4j.sample.dcicargo.sample_a.infrastructure.wicket.color.ErrorColor;
import org.qi4j.sample.dcicargo.sample_a.infrastructure.wicket.link.LinkPanel;
import org.qi4j.sample.dcicargo.sample_a.infrastructure.wicket.prevnext.PrevNext;
/**
* List of Cargos
*/
@StatelessComponent
public class CargoListPage extends BookingBasePage
{
public CargoListPage()
{
IModel<List<CargoDTO>> cargoList = new CommonQueries().cargoList();
// Save current trackingIds in session (for prev/next buttons on details page)
ArrayList<String> ids = new ArrayList<String>();
for( CargoDTO cargo : cargoList.getObject() )
{
ids.add( cargo.trackingId().get().id().get() );
}
PrevNext.registerIds( Session.get(), ids );
add( new ListView<CargoDTO>( "list", cargoList )
{
@Override
protected void populateItem( ListItem<CargoDTO> item )
{
CargoDTO cargo = item.getModelObject();
String trackingId = cargo.trackingId().get().id().get();
Delivery delivery = cargo.delivery().get();
RoutingStatus routingStatus = cargo.delivery().get().routingStatus().get();
item.add( new LinkPanel( "trackingId", CargoDetailsPage.class, trackingId ) );
item.add( new Label( "origin", cargo.origin().get().getCode() ) );
item.add( new Label( "destination", cargo.routeSpecification().get().destination().get().getCode() ) );
item.add( new Label( "deadline", new Model<Date>( cargo.routeSpecification()
.get()
.arrivalDeadline()
.get() ) ) );
item.add( new Label( "routingStatus", routingStatus.toString() ).add( new ErrorColor( routingStatus == RoutingStatus.MISROUTED ) ) );
Boolean inCustoms = delivery.lastHandlingEvent().get() != null
&& delivery.lastHandlingEvent()
.get()
.handlingEventType()
.get() == HandlingEventType.CUSTOMS;
String customsLabel = delivery.transportStatus().get().name() + ( inCustoms ? " (CUSTOMS)" : "" );
item.add( new Label( "transportStatus", customsLabel ) );
IModel directed = new Model<String>( delivery.isMisdirected().get() ? "Misdirected" : "On track" );
item.add( new Label( "deliveryStatus", directed ).add( new ErrorColor( delivery.isMisdirected()
.get() ) ) );
}
} );
}
}