2 * Copyright (C) 2011 Openismus GmbH
4 * This file is part of GWT-Glom.
6 * GWT-Glom is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
11 * GWT-Glom is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with GWT-Glom. If not, see <http://www.gnu.org/licenses/>.
20 package org.glom.web.client.activity;
22 import java.util.ArrayList;
24 import org.glom.web.client.ClientFactory;
25 import org.glom.web.client.OnlineGlomServiceAsync;
26 import org.glom.web.client.ui.DocumentSelectionView;
28 import com.google.gwt.activity.shared.AbstractActivity;
29 import com.google.gwt.event.shared.EventBus;
30 import com.google.gwt.place.shared.Place;
31 import com.google.gwt.user.client.Window;
32 import com.google.gwt.user.client.rpc.AsyncCallback;
33 import com.google.gwt.user.client.ui.AcceptsOneWidget;
35 public class DocumentSelectionActivity extends AbstractActivity implements DocumentSelectionView.Presenter {
37 // TODO inject with GIN
38 private final ClientFactory clientFactory;
40 public DocumentSelectionActivity(ClientFactory clientFactory) {
41 this.clientFactory = clientFactory;
45 public void start(AcceptsOneWidget panel, EventBus eventBus) {
46 Window.setTitle("Online Glom");
47 final DocumentSelectionView documentSelectionView = clientFactory.getDocumentSelectionView();
48 documentSelectionView.setPresenter(this);
50 AsyncCallback<ArrayList<String>> callback = new AsyncCallback<ArrayList<String>>() {
51 public void onFailure(Throwable caught) {
53 .setErrorMessage("Unable to communicate with the server. Check the error log for more information.");
56 public void onSuccess(ArrayList<String> documentTitles) {
57 documentSelectionView.clearHyperLinks();
58 if (!documentTitles.isEmpty()) {
59 for (String documentTitle : documentTitles) {
60 documentSelectionView.addDocumentLink(documentTitle);
64 .setErrorMessage("Could not find any Glom documents to load. Check the error log for more information.");
68 OnlineGlomServiceAsync.Util.getInstance().getDocumentTitles(callback);
70 panel.setWidget(documentSelectionView.asWidget());
74 public void goTo(Place place) {
75 clientFactory.getPlaceController().goTo(place);