/* * Copyright (c) 2015 Washington State Department of Transportation * * 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 gov.wa.wsdot.mobile.client.activities.camera; import com.google.gwt.core.client.GWT; import com.google.gwt.safehtml.client.SafeHtmlTemplates; import com.google.gwt.safehtml.shared.SafeHtml; import com.google.gwt.safehtml.shared.SafeHtmlBuilder; import com.google.gwt.safehtml.shared.SafeHtmlUtils; import com.googlecode.mgwt.ui.client.widget.list.celllist.Cell; import gov.wa.wsdot.mobile.client.css.AppBundle; public abstract class VideoCell<T> implements Cell<T> { private static Template TEMPLATE = GWT.create(Template.class); public interface Template extends SafeHtmlTemplates { @SafeHtmlTemplates.Template("<div class=\"{0}\"><div><video width=\"320\" height=\"240\" poster=\"{1}\" controls><source src=\"{2}\" type=\"video/mp4\"></video><div></div>") SafeHtml content(String class1, String posterUrl, String videoUrl); } @Override public void render(SafeHtmlBuilder safeHtmlBuilder, final T model) { safeHtmlBuilder.append(TEMPLATE.content( AppBundle.INSTANCE.css().cameraImage(), SafeHtmlUtils.htmlEscape(getUrl(model)), SafeHtmlUtils.htmlEscape(getVideoUrl(model)))); } public abstract String getUrl(T model); public abstract String getVideoUrl(T model); @Override public boolean canBeSelected(T model) { return false; } }