Skip to content

Commit

Permalink
feat: Configure wallet navigation and pages for administration site -…
Browse files Browse the repository at this point in the history
… EXO-66546_66871 - Meeds-io/MIPs#88  (#430)
  • Loading branch information
azayati committed Nov 25, 2023
1 parent 289d0ca commit 1dbbbef
Show file tree
Hide file tree
Showing 5 changed files with 188 additions and 0 deletions.
1 change: 1 addition & 0 deletions translations.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ webui_en.properties=wallet-webapps/src/main/resources/locale/navigation/portal/g
RewardingGroupNavigation.properties=wallet-webapps/src/main/resources/locale/navigation/group/platform/rewarding_en.properties
NotificationAdministration.properties=wallet-webapps/src/main/resources/locale/portlet/NotificationAdministration_en.properties
Analytics.properties=wallet-webapps/src/main/resources/locale/portlet/Analytics_en.properties
navigation/administration.properties=wallet-webapps/src/main/resources/locale/navigation/portal/administration_en.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#
# This file is part of the Meeds project (https://meeds.io/).
# Copyright (C) 2023 Meeds Association
# [email protected]
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser 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
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
portal.administration.home=Platform settings
portal.administration.recognition=Recognition
portal.administration.wallet=Wallet
portal.administration.reward=Reward
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of the Meeds project (https://meeds.io/).
Copyright (C) 2020 Meeds Association
[email protected]
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.exoplatform.org/xml/ns/kernel_1_3.xsd http://www.exoplatform.org/xml/ns/kernel_1_3.xsd" xmlns="http://www.exoplatform.org/xml/ns/kernel_1_3.xsd">
<external-component-plugins>
<target-component>org.exoplatform.portal.config.UserPortalConfigService</target-component>
<component-plugin>
<name>new.portal.config.user.listener</name>
<set-method>initListener</set-method>
<type>org.exoplatform.portal.config.NewPortalConfigListener</type>
<description>this listener init the portal configuration</description>
<priority>780</priority>
<init-params>
<object-param>
<name>portal.configuration</name>
<object type="org.exoplatform.portal.config.NewPortalConfig">
<field name="predefinedOwner">
<collection type="java.util.HashSet">
<value>
<string>administration</string>
</value>
</collection>
</field>
<field name="ownerType">
<string>portal</string>
</field>
<field name="templateLocation">
<string>war:/conf/wallet/portal</string>
</field>
<field name="override">
<boolean>${exo.wallet.portalConfig.administration.override:true}</boolean>
</field>
<field name="importMode">
<string>${exo.wallet.portalConfig.administration.importmode:insert}</string>
</field>
</object>
</object-param>
</init-params>
</component-plugin>
</external-component-plugins>
</configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
This file is part of the Meeds project (https://meeds.io/).
Copyright (C) 2023 Meeds Association [email protected]
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<node-navigation
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.gatein.org/xml/ns/gatein_objects_1_6 http://www.gatein.org/xml/ns/gatein_objects_1_6"
xmlns="http://www.gatein.org/xml/ns/gatein_objects_1_6">
<priority>3</priority>

<page-nodes>
<node>
<name>home</name>
<label>#{portal.administration.home}</label>
<icon>fas fa-cog</icon>
<node>
<name>recognition</name>
<label>#{portal.administration.recognition}</label>
<icon>fas fa-trophy</icon>
<node>
<name>wallet</name>
<label>#{portal.administration.wallet}</label>
<icon>fas fa-wallet</icon>
<page-reference>portal::administration::walletAdministration</page-reference>
</node>
<node>
<name>reward</name>
<label>#{portal.administration.reward}</label>
<icon>fas fa-coins</icon>
<page-reference>portal::administration::rewardAdministration</page-reference>
</node>
</node>
</node>
</page-nodes>
</node-navigation>
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of the Meeds project (https://meeds.io/).
Copyright (C) 2023 Meeds Association [email protected]
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<page-set xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.exoplatform.org/xml/ns/gatein_objects_1_8 http://www.exoplatform.org/xml/ns/gatein_objects_1_8"
xmlns="http://www.exoplatform.org/xml/ns/gatein_objects_1_8">
<page>
<name>walletAdministration</name>
<title>Wallet adminsitration</title>
<access-permissions>*:/platform/rewarding</access-permissions>
<edit-permission>manager:/platform/rewarding</edit-permission>
<container id="singlePageApplicationContainer" template="system:/groovy/portal/webui/container/UIContainer.gtmpl" cssClass="singlePageApplication">
<access-permissions>*:/platform/users</access-permissions>
<portlet-application>
<portlet>
<application-ref>wallet</application-ref>
<portlet-ref>WalletAdmin</portlet-ref>
</portlet>
<title>Wallet adminsitration</title>
<access-permissions>*:/platform/rewarding</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
</page>
<page>
<name>rewardAdministration</name>
<title>Reward administration</title>
<access-permissions>*:/platform/rewarding</access-permissions>
<edit-permission>manager:/platform/rewarding</edit-permission>
<container id="singlePageApplicationContainer" template="system:/groovy/portal/webui/container/UIContainer.gtmpl" cssClass="singlePageApplication">
<access-permissions>*:/platform/users</access-permissions>
<portlet-application>
<portlet>
<application-ref>wallet</application-ref>
<portlet-ref>RewardAdmin</portlet-ref>
</portlet>
<title>Reward administration</title>
<access-permissions>*:/platform/rewarding</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
</page>
</page-set>

0 comments on commit 1dbbbef

Please sign in to comment.