Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit d9af72c

Browse files
committed
App Categories for Taas and Sample
1 parent 44036d4 commit d9af72c

File tree

1 file changed

+48
-13
lines changed

1 file changed

+48
-13
lines changed

src/constants/apps.js

Lines changed: 48 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
*/
44
import appReactIcon from "../assets/images/reactjs.svg";
55
import appAngularIcon from "../assets/images/angularjs.svg";
6+
import appTaasIcon from "../assets/images/integrations.svg";
67
import manageWorkIcon from "../assets/images/managework.svg";
78
import ondemandTalentIcon from "../assets/images/ondemand-talent.svg";
89
import myOrganizationIcon from "../assets/images/my-organization.svg";
910
import integrationsIcon from "../assets/images/integrations.svg";
11+
import customerplatformIcon from "../assets/images/managework.svg";
12+
import workmanagerIcon from "../assets/images/ondemand-talent.svg";
1013
import learnIcon from "../assets/images/learn.svg";
1114
import earnIcon from "../assets/images/earn.svg";
1215
import homeIcon from "../assets/images/home.svg";
@@ -51,6 +54,17 @@ export const APP_CATEGORIES = [
5154
{
5255
category: 'Manage',
5356
apps: [
57+
{
58+
title: "TaaS",
59+
icon: appTaasIcon,
60+
path: "/taas",
61+
menu: [
62+
{ title: "My Teams", path: "/taas/myteams", icon: myteamsIcon, activeIcon:myteamsGreenIcon },
63+
{ title: "Feedback", path: "/taas/feedback", icon: discussionsIcon, activeIcon:discussionsGreenIcon },
64+
{ title: "Invoices", path: "/taas/invoices", icon: apisIcon, activeIcon:apisGreenIcon },
65+
{ title: "Reports", path: "/taas/reports", icon: reportsIcon, activeIcon: reportsGreenIcon },
66+
],
67+
},
5468
{
5569
title: "Manage Work",
5670
icon: manageWorkIcon,
@@ -90,25 +104,25 @@ export const APP_CATEGORIES = [
90104
},
91105
{
92106
title: "Customer Platform",
93-
icon: appReactIcon,
94-
path: "/micro-frontends-react-route",
107+
icon: customerplatformIcon,
108+
path: "/customer-platform",
95109
menu: [
96-
{ title: "Catalog", path: "/micro-frontends-react-route", icon: homeIcon, activeIcon:homeGreenIcon },
97-
{ title: "My Work", path: "/micro-frontends-react-route/my-work", icon: apisIcon, activeIcon:apisGreenIcon },
98-
{ title: "Reports", path: "/micro-frontends-react-route/reports", icon: reportsIcon, activeIcon: reportsGreenIcon },
99-
{ title: "Testimonals", path: "/micro-frontends-react-route/testimonals", icon: testimonalsIcon, activeIcon: testimonalsGreenIcon },
100-
{ title: "FAQ", path: "/micro-frontends-react-route/FAQ", icon: faqIcon, activeIcon:faqGreenIcon },
110+
{ title: "Catalog", path: "/customer-platform", icon: homeIcon, activeIcon:homeGreenIcon },
111+
{ title: "My Work", path: "/customer-platform/my-work", icon: apisIcon, activeIcon:apisGreenIcon },
112+
{ title: "Reports", path: "/customer-platform/reports", icon: reportsIcon, activeIcon: reportsGreenIcon },
113+
{ title: "Testimonals", path: "/customer-platform/testimonals", icon: testimonalsIcon, activeIcon: testimonalsGreenIcon },
114+
{ title: "FAQ", path: "/customer-platform/FAQ", icon: faqIcon, activeIcon:faqGreenIcon },
101115
],
102116
},
103117
{
104118
title: "Work Manager",
105-
icon: appAngularIcon,
106-
path: "/micro-frontends-angular-route",
119+
icon: workmanagerIcon,
120+
path: "/work-manager",
107121
menu: [
108-
{ title: "Challenges/Tasks", path: "/micro-frontends-angular-route", icon: homeIcon, activeIcon:homeGreenIcon },
109-
{ title: "Discussions", path: "/micro-frontends-angular-route/discussions", icon: discussionsIcon, activeIcon:discussionsGreenIcon },
110-
{ title: "Files & Links", path: "/micro-frontends-angular-route/files-links", icon: filesIcon, activeIcon:filesGreenIcon },
111-
{ title: "Reports", path: "/micro-frontends-angular-route/reports", icon: reportsIcon, activeIcon:reportsGreenIcon },
122+
{ title: "Challenges/Tasks", path: "/work-manager", icon: homeIcon, activeIcon:homeGreenIcon },
123+
{ title: "Discussions", path: "/work-manager/discussions", icon: discussionsIcon, activeIcon:discussionsGreenIcon },
124+
{ title: "Files & Links", path: "/work-manager/files-links", icon: filesIcon, activeIcon:filesGreenIcon },
125+
{ title: "Reports", path: "/work-manager/reports", icon: reportsIcon, activeIcon:reportsGreenIcon },
112126
],
113127
},
114128
]
@@ -135,6 +149,27 @@ export const APP_CATEGORIES = [
135149
],
136150
}
137151
]
152+
},
153+
{
154+
category: 'Sample',
155+
apps: [
156+
{
157+
title: "React Example",
158+
icon: appReactIcon,
159+
path: "/micro-frontends-react-route",
160+
menu: [
161+
{ title: "Home", path: "/micro-frontends-react-route", icon: homeIcon, activeIcon:homeGreenIcon },
162+
],
163+
},
164+
{
165+
title: "Angular Example",
166+
icon: appAngularIcon,
167+
path: "/micro-frontends-angular-route",
168+
menu: [
169+
{ title: "Home", path: "/micro-frontends-angular-route", icon: homeIcon, activeIcon:homeGreenIcon },
170+
],
171+
},
172+
]
138173
}
139174
];
140175

0 commit comments

Comments
 (0)