You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/04/19 08:33:00 UTC

svn commit: r1739848 - /myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ThemeController.java

Author: lofwyr
Date: Tue Apr 19 06:33:00 2016
New Revision: 1739848

URL: http://svn.apache.org/viewvc?rev=1739848&view=rev
Log:
TOBAGO-1544: Revise Demo Application for Tobago 3.0
[developed by hnoeth]

Added:
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ThemeController.java

Added: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ThemeController.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ThemeController.java?rev=1739848&view=auto
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ThemeController.java (added)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ThemeController.java Tue Apr 19 06:33:00 2016
@@ -0,0 +1,74 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.apache.myfaces.tobago.example.demo;
+
+import org.apache.myfaces.tobago.config.TobagoConfig;
+import org.apache.myfaces.tobago.context.ClientProperties;
+import org.apache.myfaces.tobago.context.Theme;
+
+import javax.enterprise.context.SessionScoped;
+import javax.faces.context.FacesContext;
+import javax.faces.model.SelectItem;
+import javax.inject.Named;
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+@SessionScoped
+@Named
+public class ThemeController implements Serializable {
+
+  private Theme theme;
+  private SelectItem[] themeItems;
+
+  public ThemeController() {
+    final FacesContext facesContext = FacesContext.getCurrentInstance();
+    final TobagoConfig tobagoConfig = TobagoConfig.getInstance(facesContext);
+    final List<Theme> themes = new ArrayList<Theme>(tobagoConfig.getSupportedThemes());
+    themes.add(0, tobagoConfig.getDefaultTheme());
+    themeItems = new SelectItem[themes.size()];
+    for (int i = 0; i < themeItems.length; i++) {
+      final Theme themeItem = themes.get(i);
+      themeItems[i] = new SelectItem(themeItem, themeItem.getDisplayName());
+    }
+  }
+
+  public Theme getTheme() {
+    return theme;
+  }
+
+  public void setTheme(Theme theme) {
+    this.theme = theme;
+  }
+
+  public SelectItem[] getThemeItems() {
+    return themeItems;
+  }
+
+  public void setThemeItems(SelectItem[] themeItems) {
+    this.themeItems = themeItems;
+  }
+
+  public String submit() {
+    final ClientProperties client = ClientProperties.getInstance(FacesContext.getCurrentInstance());
+    client.setTheme(theme);
+    return null;
+  }
+}