Package ro.fortsoft.wicket.dashboard.web

Examples of ro.fortsoft.wicket.dashboard.web.DashboardContext


    getResourceSettings().getStringResourceLoaders().add(0, new LabelResourceLoader());
   
    super.init();
   
    // register some widgets
    dashboardContext = new DashboardContext();
    dashboardContext.setDashboardPersiter(new UserDashboardPersister());
    WidgetRegistry widgetRegistry = dashboardContext.getWidgetRegistry();
    widgetRegistry.registerWidget(new PrivateRoomsWidgetDescriptor());
    widgetRegistry.registerWidget(new WelcomeWidgetDescriptor());
    widgetRegistry.registerWidget(new StartWidgetDescriptor());
View Full Code Here


    String tzCode = get().getClientTZCode();
    return tzCode == null ? null : TimeZone.getTimeZone(tzCode);
  }
 
  private void initDashboard() {
    DashboardContext dashboardContext = getDashboardContext();
    dashboard = dashboardContext.getDashboardPersiter().load();
    if (dashboard == null) {
      dashboard = new DefaultDashboard("default", "Default");
     
      WidgetFactory widgetFactory = dashboardContext.getWidgetFactory();
      dashboard.addWidget(widgetFactory.createWidget(new WelcomeWidgetDescriptor()));
      dashboard.addWidget(widgetFactory.createWidget(new StartWidgetDescriptor()));
      ConfigurationDao cfgDao = getBean(ConfigurationDao.class);
      if (1 == cfgDao.getConfValue(CONFIG_DASHBOARD_SHOW_MYROOMS_KEY, Integer.class, "0")) {
        dashboard.addWidget(widgetFactory.createWidget(new PrivateRoomsWidgetDescriptor()));
      }
      if (1 == cfgDao.getConfValue(CONFIG_DASHBOARD_SHOW_RSS_KEY, Integer.class, "0")) {
        dashboard.addWidget(widgetFactory.createWidget(new RssWidgetDescriptor()));
      }
      dashboardContext.getDashboardPersiter().save(dashboard);
    } else {
      for (Widget w : dashboard.getWidgets()) {
        w.init();
      }
    }
View Full Code Here

    }
    return _zone == null ? null : _zone.getID();
  }
 
  private void initDashboard() {
    DashboardContext dashboardContext = getDashboardContext();
    dashboard = dashboardContext.getDashboardPersiter().load();
    if (dashboard == null) {
      dashboard = new DefaultDashboard("default", "Default");
     
      WidgetFactory widgetFactory = dashboardContext.getWidgetFactory();
      dashboard.addWidget(widgetFactory.createWidget(new WelcomeWidgetDescriptor()));
      dashboard.addWidget(widgetFactory.createWidget(new StartWidgetDescriptor()));
      ConfigurationDao cfgDao = getBean(ConfigurationDao.class);
      if ("1".equals(cfgDao.getConfValue(CONFIG_DASHBOARD_SHOW_MYROOMS_KEY, Integer.class, "0"))) {
        dashboard.addWidget(widgetFactory.createWidget(new PrivateRoomsWidgetDescriptor()));
      }
      if ("1".equals(cfgDao.getConfValue(CONFIG_DASHBOARD_SHOW_RSS_KEY, Integer.class, "0"))) {
        dashboard.addWidget(widgetFactory.createWidget(new RssWidgetDescriptor()));
      }
      dashboardContext.getDashboardPersiter().save(dashboard);
    } else {
      for (Widget w : dashboard.getWidgets()) {
        w.init();
      }
    }
View Full Code Here

    getResourceSettings().getStringResourceLoaders().add(0, new LabelResourceLoader());
   
    super.init();
   
    // register some widgets
    dashboardContext = new DashboardContext();
    dashboardContext.setDashboardPersiter(new UserDashboardPersister());
    WidgetRegistry widgetRegistry = dashboardContext.getWidgetRegistry();
    widgetRegistry.registerWidget(new PrivateRoomsWidgetDescriptor());
    widgetRegistry.registerWidget(new WelcomeWidgetDescriptor());
    widgetRegistry.registerWidget(new StartWidgetDescriptor());
View Full Code Here

          @Override
          protected void onUpdate(AjaxRequestTarget target) {
            Widget w = isDisplayed(wd);
            boolean b = getModelObject();
            DashboardContext dashboardContext = getDashboardContext();
            Dashboard d = getDashboard();
            if (w != null && !b) {
              d.deleteWidget(w.getId());
            }
            if (w == null && b) {
              d.addWidget(dashboardContext.getWidgetFactory().createWidget(wd));
            }
            dashboardContext.getDashboardPersiter().save(d);
          }
        });
      }
    });
  }
View Full Code Here

    String tzCode = get().getClientTZCode();
    return tzCode == null ? null : TimeZone.getTimeZone(tzCode);
  }
 
  private void initDashboard() {
    DashboardContext dashboardContext = getDashboardContext();
    dashboard = (UserDashboard)dashboardContext.getDashboardPersiter().load();
    boolean existMyRoomWidget = false, existRssWidget = false;
    ConfigurationDao cfgDao = getBean(ConfigurationDao.class);
    boolean confShowMyRooms = 1 == cfgDao.getConfValue(CONFIG_DASHBOARD_SHOW_MYROOMS_KEY, Integer.class, "0");
    boolean confShowRss = 1 == cfgDao.getConfValue(CONFIG_DASHBOARD_SHOW_RSS_KEY, Integer.class, "0");
    boolean save = false;

    WidgetFactory widgetFactory = dashboardContext.getWidgetFactory();

    if (dashboard == null) {
      dashboard = new UserDashboard("default", "Default");

      dashboard.addWidget(widgetFactory.createWidget(new WelcomeWidgetDescriptor()));
      dashboard.addWidget(widgetFactory.createWidget(new StartWidgetDescriptor()));
      if (confShowMyRooms) {
        dashboard.addWidget(widgetFactory.createWidget(new MyRoomsWidgetDescriptor()));
      }
      if (confShowRss) {
        dashboard.addWidget(widgetFactory.createWidget(new RssWidgetDescriptor()));
      }
      save = true;
    } else {
      for (Iterator<Widget> iter = dashboard.getWidgets().iterator(); iter.hasNext();) {
        Widget w = iter.next();
        // PrivateRoomWidget is stored in the profile of user. Now, Show_MyRooms_key is disable.
        if (w.getClass().equals(MyRoomsWidget.class)) {
          existMyRoomWidget = true;
          if (!confShowMyRooms) {
            iter.remove();
          }
        } else if ((w.getClass().equals(RssWidget.class))) {
          // RssWidget is stored in the profile of user. Now, Show_RSS_Key is disable.
          existRssWidget = true;
          if (!confShowRss) {
            iter.remove();
          }
        } else {
          w.init();
        }
      }
      // PrivateRoomWidget was deleted from profile and now it's enabled. It's added again to dashboard.
      if (!existMyRoomWidget && confShowMyRooms && !dashboard.isWidgetMyRoomsDeleted()) {
        dashboard.addWidget(widgetFactory.createWidget(new MyRoomsWidgetDescriptor()));
        save = true;
      }
      // RssWidget was deleted from profile and now it's enabled. It's added again to dashboard.
      if (!existRssWidget && confShowRss && !dashboard.isWidgetRssDeleted()) {
        dashboard.addWidget(widgetFactory.createWidget(new RssWidgetDescriptor()));
        save = true;
      }
    }
    if (save) {
      dashboardContext.getDashboardPersiter().save(dashboard);
    }
  }
View Full Code Here

          @Override
          protected void onUpdate(AjaxRequestTarget target) {
            Widget w = isDisplayed(wd);
            boolean b = getModelObject();
            DashboardContext dashboardContext = getDashboardContext();
            Dashboard d = getDashboard();
            if (w != null && !b) {
              d.deleteWidget(w.getId());
            }
            if (w == null && b) {
              d.addWidget(dashboardContext.getWidgetFactory().createWidget(wd));
            }
            dashboardContext.getDashboardPersiter().save(d);
          }
        });
      }
    });
  }
View Full Code Here

    getResourceSettings().getStringResourceLoaders().add(0, new LabelResourceLoader());
   
    super.init();
   
    // register some widgets
    dashboardContext = new DashboardContext();
    dashboardContext.setDashboardPersiter(new UserDashboardPersister());
    WidgetRegistry widgetRegistry = dashboardContext.getWidgetRegistry();
    widgetRegistry.registerWidget(new MyRoomsWidgetDescriptor());
    widgetRegistry.registerWidget(new WelcomeWidgetDescriptor());
    widgetRegistry.registerWidget(new StartWidgetDescriptor());
View Full Code Here

    String tzCode = get().getClientTZCode();
    return tzCode == null ? null : TimeZone.getTimeZone(tzCode);
  }
 
  private void initDashboard() {
    DashboardContext dashboardContext = getDashboardContext();
    dashboard = dashboardContext.getDashboardPersiter().load();
    if (dashboard == null) {
      dashboard = new DefaultDashboard("default", "Default");
     
      WidgetFactory widgetFactory = dashboardContext.getWidgetFactory();
      dashboard.addWidget(widgetFactory.createWidget(new WelcomeWidgetDescriptor()));
      dashboard.addWidget(widgetFactory.createWidget(new StartWidgetDescriptor()));
      ConfigurationDao cfgDao = getBean(ConfigurationDao.class);
      if (1 == cfgDao.getConfValue(CONFIG_DASHBOARD_SHOW_MYROOMS_KEY, Integer.class, "0")) {
        dashboard.addWidget(widgetFactory.createWidget(new PrivateRoomsWidgetDescriptor()));
      }
      if (1 == cfgDao.getConfValue(CONFIG_DASHBOARD_SHOW_RSS_KEY, Integer.class, "0")) {
        dashboard.addWidget(widgetFactory.createWidget(new RssWidgetDescriptor()));
      }
      dashboardContext.getDashboardPersiter().save(dashboard);
    } else {
      for (Widget w : dashboard.getWidgets()) {
        w.init();
      }
    }
View Full Code Here

    getResourceSettings().getStringResourceLoaders().add(0, new LabelResourceLoader());
   
    super.init();
   
    // register some widgets
    dashboardContext = new DashboardContext();
    dashboardContext.setDashboardPersiter(new UserDashboardPersister());
    WidgetRegistry widgetRegistry = dashboardContext.getWidgetRegistry();
    widgetRegistry.registerWidget(new PrivateRoomsWidgetDescriptor());
    widgetRegistry.registerWidget(new WelcomeWidgetDescriptor());
    widgetRegistry.registerWidget(new StartWidgetDescriptor());
View Full Code Here

TOP

Related Classes of ro.fortsoft.wicket.dashboard.web.DashboardContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.