Add page that lists all groups.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 31 Jul 2012 05:23:06 +0000 (07:23 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 31 Jul 2012 05:29:19 +0000 (07:29 +0200)
src/main/java/net/pterodactylus/demoscenemusic/page/admin/ListGroupsPage.java [new file with mode: 0644]
src/main/resources/templates/admin.list-groups [new file with mode: 0644]
src/main/resources/templates/include/admin.add-group [new file with mode: 0644]
src/main/webapp/WEB-INF/web.xml.template

diff --git a/src/main/java/net/pterodactylus/demoscenemusic/page/admin/ListGroupsPage.java b/src/main/java/net/pterodactylus/demoscenemusic/page/admin/ListGroupsPage.java
new file mode 100644 (file)
index 0000000..b27e02e
--- /dev/null
@@ -0,0 +1,74 @@
+/*
+ * DemosceneMusic - ListGroupsPage.java - Copyright © 2012 David Roden
+ *
+ * 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 net.pterodactylus.demoscenemusic.page.admin;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+import net.pterodactylus.demoscenemusic.core.Core;
+import net.pterodactylus.demoscenemusic.data.DefaultGroup;
+import net.pterodactylus.demoscenemusic.data.Group;
+import net.pterodactylus.demoscenemusic.page.ServletRequest;
+import net.pterodactylus.util.database.DatabaseException;
+import net.pterodactylus.util.template.Template;
+import net.pterodactylus.util.template.TemplateContext;
+import net.pterodactylus.util.template.TemplateContextFactory;
+import net.pterodactylus.util.web.RedirectException;
+
+/**
+ * Page that lists all {@link Group}s.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class ListGroupsPage extends AdminBasePage {
+
+       /**
+        * Creates a new “list groups” page.
+        *
+        * @param core
+        *            The core
+        * @param templateContextFactory
+        *            The template context factory
+        * @param template
+        *            The template to render
+        */
+       public ListGroupsPage(Core core, TemplateContextFactory templateContextFactory, Template template) {
+               super(core, templateContextFactory, template, "admin.list-groups");
+       }
+
+       //
+       // BASEPAGE METHODS
+       //
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       protected void processTemplate(TemplateContext templateContext, ServletRequest request) throws RedirectException {
+               super.processTemplate(templateContext, request);
+               try {
+                       List<Group> allGroups = new ArrayList<Group>(getCore().getDataManager().getAllGroups());
+                       Collections.sort(allGroups, DefaultGroup.NAME_COMPARATOR);
+                       templateContext.set("groups", allGroups);
+               } catch (DatabaseException de1) {
+                       throw new RuntimeException("Could not load all groups.", de1);
+               }
+       }
+
+}
diff --git a/src/main/resources/templates/admin.list-groups b/src/main/resources/templates/admin.list-groups
new file mode 100644 (file)
index 0000000..90acf98
--- /dev/null
@@ -0,0 +1,15 @@
+<%include include/header title=="Manage Groups">
+
+<h1>Manage Groups</h1>
+
+<%foreach groups group>
+       <%first><ul><%/first>
+       <li><% group.name|html> <a href="admin.edit-group?id=<% group.id|html>">edit</a></li>
+       <%last></ul><%/last>
+<%/foreach>
+
+<h2>Add a New Group</h2>
+
+<%include include/admin.add-group>
+
+<%include include/footer>
\ No newline at end of file
diff --git a/src/main/resources/templates/include/admin.add-group b/src/main/resources/templates/include/admin.add-group
new file mode 100644 (file)
index 0000000..f9d439f
--- /dev/null
@@ -0,0 +1,10 @@
+<form action="admin.add-group" method="post" accept-charset="utf-8">
+
+       <div>
+               Name:
+               <input type="text" name="name" value=""/>
+               <button type="submit">Add Group</button>
+       </div>
+
+</form>
+
index 5eb733b..7811de9 100644 (file)
                        <param-value>net.pterodactylus.demoscenemusic.page.admin.ListArtistsPage</param-value>
                </init-param>
                <init-param>
+                       <param-name>admin.list-groups</param-name>
+                       <param-value>net.pterodactylus.demoscenemusic.page.admin.ListGroupsPage</param-value>
+               </init-param>
+               <init-param>
                        <param-name>admin.list-parties</param-name>
                        <param-value>net.pterodactylus.demoscenemusic.page.admin.ListPartiesPage</param-value>
                </init-param>