@red-hat-developer-hub/backstage-plugin-global-header 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/app-config.dynamic.yaml +71 -0
  3. package/dist/components/GlobalHeader.esm.js +75 -61
  4. package/dist/components/GlobalHeader.esm.js.map +1 -1
  5. package/dist/components/HeaderButtonComponent/HeaderButton.esm.js +17 -0
  6. package/dist/components/HeaderButtonComponent/HeaderButton.esm.js.map +1 -0
  7. package/dist/components/HeaderButtonComponent/LogoutButton.esm.js +15 -0
  8. package/dist/components/HeaderButtonComponent/LogoutButton.esm.js.map +1 -0
  9. package/dist/components/HeaderDropdownComponent/CreateDropdown.esm.js +61 -56
  10. package/dist/components/HeaderDropdownComponent/CreateDropdown.esm.js.map +1 -1
  11. package/dist/components/HeaderDropdownComponent/HeaderDropdownComponent.esm.js +2 -49
  12. package/dist/components/HeaderDropdownComponent/HeaderDropdownComponent.esm.js.map +1 -1
  13. package/dist/components/HeaderDropdownComponent/MenuSection.esm.js +11 -22
  14. package/dist/components/HeaderDropdownComponent/MenuSection.esm.js.map +1 -1
  15. package/dist/components/HeaderDropdownComponent/ProfileDropdown.esm.js +36 -42
  16. package/dist/components/HeaderDropdownComponent/ProfileDropdown.esm.js.map +1 -1
  17. package/dist/components/HeaderDropdownComponent/RegisterAComponentSection.esm.js +29 -0
  18. package/dist/components/HeaderDropdownComponent/RegisterAComponentSection.esm.js.map +1 -0
  19. package/dist/components/HeaderDropdownComponent/SoftwareTemplatesSection.esm.js +23 -0
  20. package/dist/components/HeaderDropdownComponent/SoftwareTemplatesSection.esm.js.map +1 -0
  21. package/dist/components/HeaderIconButtonComponent/HeaderIcon.esm.js +33 -0
  22. package/dist/components/HeaderIconButtonComponent/HeaderIcon.esm.js.map +1 -0
  23. package/dist/components/HeaderIconButtonComponent/HeaderIconButton.esm.js +25 -0
  24. package/dist/components/HeaderIconButtonComponent/HeaderIconButton.esm.js.map +1 -0
  25. package/dist/components/HeaderLinkComponent/HeaderItemContent.esm.js +19 -0
  26. package/dist/components/HeaderLinkComponent/HeaderItemContent.esm.js.map +1 -0
  27. package/dist/components/HeaderLinkComponent/HeaderLink.esm.js +29 -0
  28. package/dist/components/HeaderLinkComponent/HeaderLink.esm.js.map +1 -0
  29. package/dist/components/NotificationBanner.esm.js +66 -0
  30. package/dist/components/NotificationBanner.esm.js.map +1 -0
  31. package/dist/components/SearchComponent/SearchBar.esm.js +1 -1
  32. package/dist/components/SearchComponent/SearchBar.esm.js.map +1 -1
  33. package/dist/hooks/useCreateDropdownMountPoints.esm.js +10 -0
  34. package/dist/hooks/useCreateDropdownMountPoints.esm.js.map +1 -0
  35. package/dist/hooks/useGlobalHeaderMountPoints.esm.js +10 -0
  36. package/dist/hooks/useGlobalHeaderMountPoints.esm.js.map +1 -0
  37. package/dist/hooks/useProfileDropdownMountPoints.esm.js +10 -0
  38. package/dist/hooks/useProfileDropdownMountPoints.esm.js.map +1 -0
  39. package/dist/index.d.ts +155 -5
  40. package/dist/index.esm.js +1 -1
  41. package/dist/index.esm.js.map +1 -1
  42. package/dist/plugin.esm.js +85 -1
  43. package/dist/plugin.esm.js.map +1 -1
  44. package/dist/types.esm.js +17 -0
  45. package/dist/types.esm.js.map +1 -0
  46. package/package.json +27 -16
  47. package/dist/components/HeaderDropdownComponent/MenuItemContent.esm.js +0 -15
  48. package/dist/components/HeaderDropdownComponent/MenuItemContent.esm.js.map +0 -1
  49. package/dist/components/HeaderIconButton/HeaderIconButton.esm.js +0 -22
  50. package/dist/components/HeaderIconButton/HeaderIconButton.esm.js.map +0 -1
  51. package/dist/components/HeaderIconButton/SmallIconWrapper.esm.js +0 -11
  52. package/dist/components/HeaderIconButton/SmallIconWrapper.esm.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @red-hat-developer-hub/backstage-plugin-global-header
2
2
 
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - a07a84a: Update dependencies to Backstage 1.35.0
8
+ - 02cd530: add new mountpoints for the search, create dropdown, profile dropdown, software templates, register a component, logout button, header link and header icon
9
+
10
+ ## 0.0.3
11
+
12
+ ### Patch Changes
13
+
14
+ - 4959ebb: add new notificationbanner component
15
+
3
16
  ## 0.0.2
4
17
 
5
18
  ### Patch Changes
@@ -0,0 +1,71 @@
1
+ # please keep this in sync with rhdh/dynamic-plugins.default.yaml
2
+ dynamicPlugins:
3
+ frontend:
4
+ red-hat-developer-hub.backstage-plugin-global-header:
5
+ mountPoints:
6
+ - mountPoint: application/header
7
+ importName: GlobalHeader
8
+ config:
9
+ layout:
10
+ position: above-main-content # above-main-content | below-main-content
11
+ - mountPoint: global.header/component
12
+ importName: SearchComponent
13
+ config:
14
+ type: search
15
+ slot: header-start
16
+ priority: 100
17
+ - mountPoint: global.header/component
18
+ importName: CreateDropdown
19
+ config:
20
+ type: dropdown_button
21
+ key: create
22
+ slot: header-start
23
+ priority: 90
24
+ - mountPoint: global.header/create
25
+ importName: SoftwareTemplatesSection
26
+ config:
27
+ type: list
28
+ priority: 10
29
+ - mountPoint: global.header/create
30
+ importName: RegisterAComponentSection
31
+ config:
32
+ type: link
33
+ - mountPoint: global.header/component
34
+ importName: HeaderIconButton
35
+ config:
36
+ type: icon_button
37
+ slot: header-start
38
+ priority: 80
39
+ props:
40
+ icon: support
41
+ tooltip: 'Support'
42
+ - mountPoint: global.header/component
43
+ importName: HeaderIconButton
44
+ config:
45
+ type: icon_button
46
+ slot: header-start
47
+ priority: 70
48
+ props:
49
+ icon: notifications
50
+ tooltip: 'Notifications'
51
+ - mountPoint: global.header/component
52
+ importName: ProfileDropdown
53
+ config:
54
+ type: dropdown_button
55
+ key: profile
56
+ slot: header-end
57
+ priority: 0
58
+ - mountPoint: global.header/profile
59
+ importName: HeaderLink
60
+ config:
61
+ type: link
62
+ priority: 10
63
+ props:
64
+ title: Settings
65
+ link: /settings
66
+ icon: manageAccounts
67
+ - mountPoint: global.header/profile
68
+ importName: LogoutButton
69
+ config:
70
+ type: logout
71
+ priority: 0
@@ -1,51 +1,84 @@
1
- import React from 'react';
1
+ import React, { useMemo } from 'react';
2
2
  import AppBar from '@mui/material/AppBar';
3
3
  import Toolbar from '@mui/material/Toolbar';
4
- import { SearchComponent } from './SearchComponent/SearchComponent.esm.js';
5
- import { HeaderIconButton } from './HeaderIconButton/HeaderIconButton.esm.js';
6
- import CreateDropdown from './HeaderDropdownComponent/CreateDropdown.esm.js';
7
- import ProfileDropdown from './HeaderDropdownComponent/ProfileDropdown.esm.js';
8
4
  import Divider from '@mui/material/Divider';
9
- import HelpOutlineOutlinedIcon from '@mui/icons-material/HelpOutlineRounded';
10
- import NotificationsOutlinedIcon from '@mui/icons-material/NotificationsOutlined';
11
5
  import { useDropdownManager } from '../hooks/useDropdownManager.esm.js';
6
+ import { useGlobalHeaderMountPoints } from '../hooks/useGlobalHeaderMountPoints.esm.js';
7
+ import { Slot, ComponentType } from '../types.esm.js';
8
+ import { ErrorBoundary } from '@backstage/core-components';
9
+ import { useApi, configApiRef } from '@backstage/core-plugin-api';
12
10
 
13
- const iconButtons = [
14
- {
15
- key: "help",
16
- Icon: HelpOutlineOutlinedIcon,
17
- onClick: () => {
18
- }
19
- },
20
- {
21
- key: "notification",
22
- Icon: NotificationsOutlinedIcon,
23
- onClick: () => {
24
- }
25
- }
26
- ];
27
11
  const GlobalHeader = () => {
12
+ const config = useApi(configApiRef);
13
+ const frontendConfig = config.getOptionalConfig("dynamicPlugins.frontend");
14
+ const frontendData = frontendConfig?.get();
15
+ const allGlobalHeaderMountPoints = useGlobalHeaderMountPoints();
16
+ const filteredAndSortedGlobalHeaderComponents = useMemo(() => {
17
+ if (!allGlobalHeaderMountPoints) {
18
+ return [];
19
+ }
20
+ const filteredAndSorted = allGlobalHeaderMountPoints.filter(
21
+ (component) => (component.config?.priority ?? 0) > -1
22
+ );
23
+ filteredAndSorted.sort(
24
+ (a, b) => (b.config?.priority ?? 0) - (a.config?.priority ?? 0)
25
+ );
26
+ return filteredAndSorted;
27
+ }, [allGlobalHeaderMountPoints]);
28
+ const globalHeaderStartComponentsMountPoints = filteredAndSortedGlobalHeaderComponents.filter(
29
+ (component) => component.config?.slot === Slot.HEADER_START
30
+ );
31
+ const globalHeaderEndComponentsMountPoints = filteredAndSortedGlobalHeaderComponents.filter(
32
+ (component) => component.config?.slot === Slot.HEADER_END
33
+ );
28
34
  const { menuStates, handleOpen, handleClose } = useDropdownManager();
29
- const dropdownConfigs = [
30
- {
31
- key: "create",
32
- component: CreateDropdown,
33
- buttonProps: {
34
- handleMenu: handleOpen("create"),
35
- anchorEl: menuStates.create,
36
- setAnchorEl: handleClose("create")
37
- }
38
- },
39
- {
40
- key: "profile",
41
- component: ProfileDropdown,
42
- buttonProps: {
43
- handleMenu: handleOpen("profile"),
44
- anchorEl: menuStates.profile,
45
- setAnchorEl: handleClose("profile")
35
+ const getDropdownButtonProps = (key) => ({
36
+ handleMenu: handleOpen(key),
37
+ anchorEl: menuStates[key],
38
+ setAnchorEl: handleClose(key)
39
+ });
40
+ const getIconButtonProps = (props) => ({
41
+ icon: props.icon ?? "",
42
+ tooltip: props.tooltip ?? "",
43
+ to: props.to ?? ""
44
+ });
45
+ const renderComponents = (mountPoints) => mountPoints.map((mp, index) => {
46
+ let displayHeaderIcon = false;
47
+ if (frontendData) {
48
+ for (const pluginData of Object.values(frontendData)) {
49
+ const dynamicRoutes = pluginData.dynamicRoutes ?? [];
50
+ if (dynamicRoutes.some(
51
+ (route) => route.path === mp.config?.props?.to
52
+ )) {
53
+ displayHeaderIcon = true;
54
+ break;
55
+ }
46
56
  }
47
57
  }
48
- ];
58
+ switch (mp.config?.type) {
59
+ case ComponentType.SEARCH:
60
+ return /* @__PURE__ */ React.createElement(ErrorBoundary, null, /* @__PURE__ */ React.createElement(mp.Component, { key: index }));
61
+ case ComponentType.DROPDOWN_BUTTON:
62
+ return /* @__PURE__ */ React.createElement(ErrorBoundary, null, /* @__PURE__ */ React.createElement(
63
+ mp.Component,
64
+ {
65
+ key: index,
66
+ ...getDropdownButtonProps(mp.config?.key ?? index.toString()),
67
+ ...mp.config?.props
68
+ }
69
+ ));
70
+ case ComponentType.ICON_BUTTON:
71
+ return /* @__PURE__ */ React.createElement(ErrorBoundary, null, displayHeaderIcon && /* @__PURE__ */ React.createElement(
72
+ mp.Component,
73
+ {
74
+ key: index,
75
+ ...getIconButtonProps(mp.config?.props ?? {})
76
+ }
77
+ ));
78
+ default:
79
+ return null;
80
+ }
81
+ });
49
82
  return /* @__PURE__ */ React.createElement(
50
83
  AppBar,
51
84
  {
@@ -53,33 +86,14 @@ const GlobalHeader = () => {
53
86
  component: "nav",
54
87
  sx: { backgroundColor: "#212427" }
55
88
  },
56
- /* @__PURE__ */ React.createElement(Toolbar, null, /* @__PURE__ */ React.createElement(SearchComponent, null), /* @__PURE__ */ React.createElement(
57
- CreateDropdown,
58
- {
59
- key: dropdownConfigs[0].key,
60
- ...dropdownConfigs[0].buttonProps
61
- }
62
- ), iconButtons.map(({ key, Icon, onClick }) => /* @__PURE__ */ React.createElement(
63
- HeaderIconButton,
64
- {
65
- key: `header-icon-button-${key}`,
66
- Icon,
67
- onClick
68
- }
69
- )), /* @__PURE__ */ React.createElement(
89
+ /* @__PURE__ */ React.createElement(Toolbar, null, renderComponents(globalHeaderStartComponentsMountPoints), globalHeaderStartComponentsMountPoints.length > 0 && globalHeaderEndComponentsMountPoints.length > 0 && /* @__PURE__ */ React.createElement(
70
90
  Divider,
71
91
  {
72
92
  orientation: "vertical",
73
93
  flexItem: true,
74
- sx: { borderColor: "#373A40" }
75
- }
76
- ), /* @__PURE__ */ React.createElement(
77
- ProfileDropdown,
78
- {
79
- key: dropdownConfigs[1].key,
80
- ...dropdownConfigs[1].buttonProps
94
+ sx: { borderColor: "#4F5255", marginX: 1 }
81
95
  }
82
- ))
96
+ ), renderComponents(globalHeaderEndComponentsMountPoints))
83
97
  );
84
98
  };
85
99
 
@@ -1 +1 @@
1
- {"version":3,"file":"GlobalHeader.esm.js","sources":["../../src/components/GlobalHeader.tsx"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport React from 'react';\nimport AppBar from '@mui/material/AppBar';\nimport Toolbar from '@mui/material/Toolbar';\nimport { SearchComponent } from './SearchComponent/SearchComponent';\nimport { HeaderIconButton } from './HeaderIconButton/HeaderIconButton';\nimport CreateDropdown from './HeaderDropdownComponent/CreateDropdown';\nimport ProfileDropdown from './HeaderDropdownComponent/ProfileDropdown';\nimport Divider from '@mui/material/Divider';\nimport HelpOutlineOutlinedIcon from '@mui/icons-material/HelpOutlineRounded';\nimport NotificationsOutlinedIcon from '@mui/icons-material/NotificationsOutlined';\nimport { useDropdownManager } from '../hooks';\n\nconst iconButtons = [\n {\n key: 'help',\n Icon: HelpOutlineOutlinedIcon,\n onClick: () => {},\n },\n {\n key: 'notification',\n Icon: NotificationsOutlinedIcon,\n onClick: () => {},\n },\n];\n\nexport const GlobalHeader = () => {\n const { menuStates, handleOpen, handleClose } = useDropdownManager();\n const dropdownConfigs = [\n {\n key: 'create',\n component: CreateDropdown,\n buttonProps: {\n handleMenu: handleOpen('create'),\n anchorEl: menuStates.create,\n setAnchorEl: handleClose('create'),\n },\n },\n {\n key: 'profile',\n component: ProfileDropdown,\n buttonProps: {\n handleMenu: handleOpen('profile'),\n anchorEl: menuStates.profile,\n setAnchorEl: handleClose('profile'),\n },\n },\n ];\n\n return (\n <AppBar\n position=\"sticky\"\n component=\"nav\"\n sx={{ backgroundColor: '#212427' }}\n >\n <Toolbar>\n <SearchComponent />\n <CreateDropdown\n key={dropdownConfigs[0].key}\n {...dropdownConfigs[0].buttonProps}\n />\n {iconButtons.map(({ key, Icon, onClick }) => (\n <HeaderIconButton\n key={`header-icon-button-${key}`}\n Icon={Icon}\n onClick={onClick}\n />\n ))}\n <Divider\n orientation=\"vertical\"\n flexItem\n sx={{ borderColor: '#373A40' }}\n />\n <ProfileDropdown\n key={dropdownConfigs[1].key}\n {...dropdownConfigs[1].buttonProps}\n />\n </Toolbar>\n </AppBar>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;;;;AA4BA,MAAM,WAAc,GAAA;AAAA,EAClB;AAAA,IACE,GAAK,EAAA,MAAA;AAAA,IACL,IAAM,EAAA,uBAAA;AAAA,IACN,SAAS,MAAM;AAAA;AAAC,GAClB;AAAA,EACA;AAAA,IACE,GAAK,EAAA,cAAA;AAAA,IACL,IAAM,EAAA,yBAAA;AAAA,IACN,SAAS,MAAM;AAAA;AAAC;AAEpB,CAAA;AAEO,MAAM,eAAe,MAAM;AAChC,EAAA,MAAM,EAAE,UAAA,EAAY,UAAY,EAAA,WAAA,KAAgB,kBAAmB,EAAA;AACnE,EAAA,MAAM,eAAkB,GAAA;AAAA,IACtB;AAAA,MACE,GAAK,EAAA,QAAA;AAAA,MACL,SAAW,EAAA,cAAA;AAAA,MACX,WAAa,EAAA;AAAA,QACX,UAAA,EAAY,WAAW,QAAQ,CAAA;AAAA,QAC/B,UAAU,UAAW,CAAA,MAAA;AAAA,QACrB,WAAA,EAAa,YAAY,QAAQ;AAAA;AACnC,KACF;AAAA,IACA;AAAA,MACE,GAAK,EAAA,SAAA;AAAA,MACL,SAAW,EAAA,eAAA;AAAA,MACX,WAAa,EAAA;AAAA,QACX,UAAA,EAAY,WAAW,SAAS,CAAA;AAAA,QAChC,UAAU,UAAW,CAAA,OAAA;AAAA,QACrB,WAAA,EAAa,YAAY,SAAS;AAAA;AACpC;AACF,GACF;AAEA,EACE,uBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACC,QAAS,EAAA,QAAA;AAAA,MACT,SAAU,EAAA,KAAA;AAAA,MACV,EAAA,EAAI,EAAE,eAAA,EAAiB,SAAU;AAAA,KAAA;AAAA,oBAEhC,KAAA,CAAA,aAAA,CAAA,OAAA,EAAA,IAAA,kBACE,KAAA,CAAA,aAAA,CAAA,eAAA,EAAA,IAAgB,CACjB,kBAAA,KAAA,CAAA,aAAA;AAAA,MAAC,cAAA;AAAA,MAAA;AAAA,QACC,GAAA,EAAK,eAAgB,CAAA,CAAC,CAAE,CAAA,GAAA;AAAA,QACvB,GAAG,eAAgB,CAAA,CAAC,CAAE,CAAA;AAAA;AAAA,KACzB,EACC,YAAY,GAAI,CAAA,CAAC,EAAE,GAAK,EAAA,IAAA,EAAM,SAC7B,qBAAA,KAAA,CAAA,aAAA;AAAA,MAAC,gBAAA;AAAA,MAAA;AAAA,QACC,GAAA,EAAK,sBAAsB,GAAG,CAAA,CAAA;AAAA,QAC9B,IAAA;AAAA,QACA;AAAA;AAAA,KAEH,CACD,kBAAA,KAAA,CAAA,aAAA;AAAA,MAAC,OAAA;AAAA,MAAA;AAAA,QACC,WAAY,EAAA,UAAA;AAAA,QACZ,QAAQ,EAAA,IAAA;AAAA,QACR,EAAA,EAAI,EAAE,WAAA,EAAa,SAAU;AAAA;AAAA,KAE/B,kBAAA,KAAA,CAAA,aAAA;AAAA,MAAC,eAAA;AAAA,MAAA;AAAA,QACC,GAAA,EAAK,eAAgB,CAAA,CAAC,CAAE,CAAA,GAAA;AAAA,QACvB,GAAG,eAAgB,CAAA,CAAC,CAAE,CAAA;AAAA;AAAA,KAE3B;AAAA,GACF;AAEJ;;;;"}
1
+ {"version":3,"file":"GlobalHeader.esm.js","sources":["../../src/components/GlobalHeader.tsx"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport React, { useMemo } from 'react';\nimport AppBar from '@mui/material/AppBar';\nimport Toolbar from '@mui/material/Toolbar';\nimport Divider from '@mui/material/Divider';\nimport { useDropdownManager } from '../hooks';\nimport { useGlobalHeaderMountPoints } from '../hooks/useGlobalHeaderMountPoints';\nimport { ComponentType, GlobalHeaderComponentMountPoint, Slot } from '../types';\nimport { ErrorBoundary } from '@backstage/core-components';\nimport { configApiRef, useApi } from '@backstage/core-plugin-api';\n\nexport const GlobalHeader = () => {\n const config = useApi(configApiRef);\n const frontendConfig = config.getOptionalConfig('dynamicPlugins.frontend');\n const frontendData = frontendConfig?.get();\n\n const allGlobalHeaderMountPoints = useGlobalHeaderMountPoints();\n\n const filteredAndSortedGlobalHeaderComponents = useMemo(() => {\n if (!allGlobalHeaderMountPoints) {\n return [];\n }\n\n const filteredAndSorted = allGlobalHeaderMountPoints.filter(\n component => (component.config?.priority ?? 0) > -1,\n );\n\n filteredAndSorted.sort(\n (a, b) => (b.config?.priority ?? 0) - (a.config?.priority ?? 0),\n );\n\n return filteredAndSorted;\n }, [allGlobalHeaderMountPoints]);\n\n const globalHeaderStartComponentsMountPoints =\n filteredAndSortedGlobalHeaderComponents.filter(\n component => component.config?.slot === Slot.HEADER_START,\n );\n\n const globalHeaderEndComponentsMountPoints =\n filteredAndSortedGlobalHeaderComponents.filter(\n component => component.config?.slot === Slot.HEADER_END,\n );\n\n const { menuStates, handleOpen, handleClose } = useDropdownManager();\n\n const getDropdownButtonProps = (key: string) => ({\n handleMenu: handleOpen(key),\n anchorEl: menuStates[key],\n setAnchorEl: handleClose(key),\n });\n\n const getIconButtonProps = (props: Record<string, any>) => ({\n icon: props.icon ?? '',\n tooltip: props.tooltip ?? '',\n to: props.to ?? '',\n });\n const renderComponents = (mountPoints: GlobalHeaderComponentMountPoint[]) =>\n mountPoints.map((mp, index) => {\n let displayHeaderIcon = false;\n if (frontendData) {\n for (const pluginData of Object.values(frontendData)) {\n const dynamicRoutes = pluginData.dynamicRoutes ?? [];\n if (\n dynamicRoutes.some(\n (route: { path: string }) => route.path === mp.config?.props?.to,\n )\n ) {\n displayHeaderIcon = true;\n break;\n }\n }\n }\n\n switch (mp.config?.type) {\n case ComponentType.SEARCH:\n return (\n <ErrorBoundary>\n {/* eslint-disable-next-line react/no-array-index-key */}\n <mp.Component key={index} />\n </ErrorBoundary>\n );\n case ComponentType.DROPDOWN_BUTTON:\n return (\n <ErrorBoundary>\n <mp.Component\n // eslint-disable-next-line react/no-array-index-key\n key={index}\n {...getDropdownButtonProps(mp.config?.key ?? index.toString())}\n {...mp.config?.props}\n />\n </ErrorBoundary>\n );\n case ComponentType.ICON_BUTTON:\n return (\n <ErrorBoundary>\n {displayHeaderIcon && (\n <mp.Component\n // eslint-disable-next-line react/no-array-index-key\n key={index}\n {...getIconButtonProps(mp.config?.props ?? {})}\n />\n )}\n </ErrorBoundary>\n );\n default:\n return null;\n }\n });\n\n return (\n <AppBar\n position=\"sticky\"\n component=\"nav\"\n sx={{ backgroundColor: '#212427' }}\n >\n <Toolbar>\n {renderComponents(globalHeaderStartComponentsMountPoints)}\n {globalHeaderStartComponentsMountPoints.length > 0 &&\n globalHeaderEndComponentsMountPoints.length > 0 && (\n <Divider\n orientation=\"vertical\"\n flexItem\n sx={{ borderColor: '#4F5255', marginX: 1 }}\n />\n )}\n {renderComponents(globalHeaderEndComponentsMountPoints)}\n </Toolbar>\n </AppBar>\n );\n};\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,17 @@
1
+ import Box from '@mui/material/Box';
2
+ import React from 'react';
3
+ import HeaderItemContent from '../HeaderLinkComponent/HeaderItemContent.esm.js';
4
+
5
+ const HeaderButton = ({ title, icon, onClick }) => {
6
+ return /* @__PURE__ */ React.createElement(
7
+ Box,
8
+ {
9
+ onClick,
10
+ sx: { cursor: "pointer", width: "100%", color: "inherit" }
11
+ },
12
+ /* @__PURE__ */ React.createElement(HeaderItemContent, { icon, label: title })
13
+ );
14
+ };
15
+
16
+ export { HeaderButton };
17
+ //# sourceMappingURL=HeaderButton.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HeaderButton.esm.js","sources":["../../../src/components/HeaderButtonComponent/HeaderButton.tsx"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport Box from '@mui/material/Box';\nimport React from 'react';\nimport HeaderItemContent from '../HeaderLinkComponent/HeaderItemContent';\n\nexport type HeaderButtonProps = {\n title: string;\n icon: string;\n onClick?: () => void;\n};\n\nexport const HeaderButton = ({ title, icon, onClick }: HeaderButtonProps) => {\n return (\n <Box\n onClick={onClick}\n sx={{ cursor: 'pointer', width: '100%', color: 'inherit' }}\n >\n <HeaderItemContent icon={icon} label={title} />\n </Box>\n );\n};\n"],"names":[],"mappings":";;;;AA0BO,MAAM,eAAe,CAAC,EAAE,KAAO,EAAA,IAAA,EAAM,SAAiC,KAAA;AAC3E,EACE,uBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,GAAA;AAAA,IAAA;AAAA,MACC,OAAA;AAAA,MACA,IAAI,EAAE,MAAA,EAAQ,WAAW,KAAO,EAAA,MAAA,EAAQ,OAAO,SAAU;AAAA,KAAA;AAAA,oBAExD,KAAA,CAAA,aAAA,CAAA,iBAAA,EAAA,EAAkB,IAAY,EAAA,KAAA,EAAO,KAAO,EAAA;AAAA,GAC/C;AAEJ;;;;"}
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { useApi, errorApiRef, identityApiRef } from '@backstage/core-plugin-api';
3
+ import { HeaderButton } from './HeaderButton.esm.js';
4
+
5
+ const LogoutButton = () => {
6
+ const errorApi = useApi(errorApiRef);
7
+ const identityApi = useApi(identityApiRef);
8
+ const handleLogout = () => {
9
+ identityApi.signOut().catch((error) => errorApi.post(error));
10
+ };
11
+ return /* @__PURE__ */ React.createElement(HeaderButton, { title: "Logout", icon: "logout", onClick: handleLogout });
12
+ };
13
+
14
+ export { LogoutButton };
15
+ //# sourceMappingURL=LogoutButton.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LogoutButton.esm.js","sources":["../../../src/components/HeaderButtonComponent/LogoutButton.tsx"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport React from 'react';\nimport {\n errorApiRef,\n identityApiRef,\n useApi,\n} from '@backstage/core-plugin-api';\nimport { HeaderButton } from './HeaderButton';\n\nexport const LogoutButton = () => {\n const errorApi = useApi(errorApiRef);\n const identityApi = useApi(identityApiRef);\n\n const handleLogout = () => {\n identityApi.signOut().catch(error => errorApi.post(error));\n };\n\n return <HeaderButton title=\"Logout\" icon=\"logout\" onClick={handleLogout} />;\n};\n"],"names":[],"mappings":";;;;AAwBO,MAAM,eAAe,MAAM;AAChC,EAAM,MAAA,QAAA,GAAW,OAAO,WAAW,CAAA;AACnC,EAAM,MAAA,WAAA,GAAc,OAAO,cAAc,CAAA;AAEzC,EAAA,MAAM,eAAe,MAAM;AACzB,IAAA,WAAA,CAAY,SAAU,CAAA,KAAA,CAAM,WAAS,QAAS,CAAA,IAAA,CAAK,KAAK,CAAC,CAAA;AAAA,GAC3D;AAEA,EAAA,2CAAQ,YAAa,EAAA,EAAA,KAAA,EAAM,UAAS,IAAK,EAAA,QAAA,EAAS,SAAS,YAAc,EAAA,CAAA;AAC3E;;;;"}
@@ -1,69 +1,65 @@
1
- import React from 'react';
1
+ import React, { useState, useEffect, useMemo } from 'react';
2
+ import { catalogApiRef } from '@backstage/plugin-catalog-react';
2
3
  import HeaderDropdownComponent from './HeaderDropdownComponent.esm.js';
3
4
  import ArrowDropDownOutlinedIcon from '@mui/icons-material/ArrowDropDownOutlined';
4
- import CategoryOutlinedIcon from '@mui/icons-material/CategoryOutlined';
5
+ import { useApi } from '@backstage/core-plugin-api';
6
+ import CircularProgress from '@mui/material/CircularProgress';
7
+ import Box from '@mui/material/Box';
8
+ import Typography from '@mui/material/Typography';
9
+ import { ComponentType } from '../../types.esm.js';
10
+ import { HeaderLink } from '../HeaderLinkComponent/HeaderLink.esm.js';
11
+ import { useCreateDropdownMountPoints } from '../../hooks/useCreateDropdownMountPoints.esm.js';
5
12
 
6
- const models = [
7
- {
8
- key: "key-1",
9
- value: "argocd-template",
10
- label: "Add ArgoCD to an existing project"
11
- },
12
- {
13
- key: "key-2",
14
- value: "create-backend-plugin",
15
- label: "Create Backend Plugin Template"
16
- },
17
- {
18
- key: "key-3",
19
- value: "create-frontend-plugin",
20
- label: "Create Frontend Plugin Template"
21
- },
22
- {
23
- key: "key-4",
24
- value: "create-react-app-template-test-annotator",
25
- label: "Create React App Template with annotations"
26
- },
27
- {
28
- key: "key-5",
29
- value: "define-ansible-job-template",
30
- label: "Ansible Job Template"
31
- }
32
- ];
33
- const menuBottomItems = [
34
- {
35
- itemKey: "custom",
36
- icon: CategoryOutlinedIcon,
37
- label: "Register a component",
38
- subLabel: "Import it to the catalog page",
39
- link: "/catalog-import"
40
- }
41
- ];
42
13
  const CreateDropdown = ({
43
14
  handleMenu,
44
15
  anchorEl,
45
16
  setAnchorEl
46
17
  }) => {
47
- const menuSections = [
48
- {
49
- sectionKey: "templates",
50
- sectionLabel: "Use a template",
51
- optionalLinkLabel: "All templates",
52
- optionalLink: "/create",
53
- items: models.map((m) => ({
54
- itemKey: m.key,
55
- label: m.label,
56
- link: `/create/templates/default/${m.value}`
57
- })),
58
- handleClose: () => setAnchorEl(null)
59
- }
60
- ];
18
+ const catalogApi = useApi(catalogApiRef);
19
+ const [entities, setEntities] = useState([]);
20
+ const [loading, setLoading] = useState(true);
21
+ const [error, setError] = useState(null);
22
+ const createDropdownMountPoints = useCreateDropdownMountPoints();
23
+ useEffect(() => {
24
+ const fetchEntities = async () => {
25
+ try {
26
+ const response = await catalogApi.getEntities({
27
+ filter: { kind: ["Template"] }
28
+ });
29
+ setEntities(response.items);
30
+ } catch (err) {
31
+ setError(err);
32
+ } finally {
33
+ setLoading(false);
34
+ }
35
+ };
36
+ fetchEntities();
37
+ }, [catalogApi]);
38
+ const items = useMemo(() => {
39
+ return entities.filter((e) => e.kind === "Template").map((m) => ({
40
+ Component: HeaderLink,
41
+ type: ComponentType.LINK,
42
+ label: m.metadata.title ?? m.metadata.name,
43
+ link: `/create/templates/default/${m.metadata.name}`
44
+ }));
45
+ }, [entities]);
46
+ const menuSections = useMemo(() => {
47
+ return (createDropdownMountPoints ?? []).map((mp) => ({
48
+ Component: mp.Component,
49
+ type: mp.config?.type ?? ComponentType.LINK,
50
+ priority: mp.config?.priority ?? 0
51
+ })).sort((a, b) => (b.priority ?? 0) - (a.priority ?? 0));
52
+ }, [createDropdownMountPoints]);
53
+ if (loading) {
54
+ return /* @__PURE__ */ React.createElement(Box, { display: "flex", justifyContent: "center", alignItems: "center", p: 2 }, /* @__PURE__ */ React.createElement(CircularProgress, null), /* @__PURE__ */ React.createElement(Typography, { variant: "body1", sx: { ml: 2 } }, "Loading templates..."));
55
+ }
56
+ if (error) {
57
+ return /* @__PURE__ */ React.createElement(Box, { display: "flex", justifyContent: "center", alignItems: "center", p: 2 }, /* @__PURE__ */ React.createElement(Typography, { variant: "body1", color: "error" }, "Error fetching templates: ", error));
58
+ }
61
59
  return /* @__PURE__ */ React.createElement(
62
60
  HeaderDropdownComponent,
63
61
  {
64
62
  buttonContent: /* @__PURE__ */ React.createElement(React.Fragment, null, "Create ", /* @__PURE__ */ React.createElement(ArrowDropDownOutlinedIcon, { sx: { ml: 1 } })),
65
- menuSections,
66
- menuBottomItems,
67
63
  buttonProps: {
68
64
  color: "primary",
69
65
  variant: "contained",
@@ -72,9 +68,18 @@ const CreateDropdown = ({
72
68
  buttonClick: handleMenu,
73
69
  anchorEl,
74
70
  setAnchorEl
75
- }
71
+ },
72
+ menuSections.map((section, index) => /* @__PURE__ */ React.createElement(
73
+ section.Component,
74
+ {
75
+ key: `menu-section-${index.toString()}`,
76
+ hideDivider: index === menuSections.length - 1,
77
+ handleClose: () => setAnchorEl(null),
78
+ ...section.type === ComponentType.LIST ? { items } : {}
79
+ }
80
+ ))
76
81
  );
77
82
  };
78
83
 
79
- export { CreateDropdown as default };
84
+ export { CreateDropdown };
80
85
  //# sourceMappingURL=CreateDropdown.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"CreateDropdown.esm.js","sources":["../../../src/components/HeaderDropdownComponent/CreateDropdown.tsx"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport React from 'react';\nimport HeaderDropdownComponent from './HeaderDropdownComponent';\nimport ArrowDropDownOutlinedIcon from '@mui/icons-material/ArrowDropDownOutlined';\nimport CategoryOutlinedIcon from '@mui/icons-material/CategoryOutlined';\nimport { MenuItemConfig } from './MenuSection';\n\ninterface CreateButtonProps {\n handleMenu: (event: React.MouseEvent<HTMLElement>) => void;\n anchorEl: HTMLElement | null;\n setAnchorEl: React.Dispatch<React.SetStateAction<HTMLElement | null>>;\n}\n\nconst models = [\n {\n key: 'key-1',\n value: 'argocd-template',\n label: 'Add ArgoCD to an existing project',\n },\n {\n key: 'key-2',\n value: 'create-backend-plugin',\n label: 'Create Backend Plugin Template',\n },\n {\n key: 'key-3',\n value: 'create-frontend-plugin',\n label: 'Create Frontend Plugin Template',\n },\n {\n key: 'key-4',\n value: 'create-react-app-template-test-annotator',\n label: 'Create React App Template with annotations',\n },\n {\n key: 'key-5',\n value: 'define-ansible-job-template',\n label: 'Ansible Job Template',\n },\n];\n\nconst menuBottomItems: MenuItemConfig[] = [\n {\n itemKey: 'custom',\n icon: CategoryOutlinedIcon,\n label: 'Register a component',\n subLabel: 'Import it to the catalog page',\n link: '/catalog-import',\n },\n];\nconst CreateDropdown: React.FC<CreateButtonProps> = ({\n handleMenu,\n anchorEl,\n setAnchorEl,\n}) => {\n const menuSections = [\n {\n sectionKey: 'templates',\n sectionLabel: 'Use a template',\n optionalLinkLabel: 'All templates',\n optionalLink: '/create',\n items: models.map(m => ({\n itemKey: m.key,\n label: m.label,\n link: `/create/templates/default/${m.value}`,\n })),\n handleClose: () => setAnchorEl(null),\n },\n ];\n return (\n <HeaderDropdownComponent\n buttonContent={\n <>\n Create <ArrowDropDownOutlinedIcon sx={{ ml: 1 }} />\n </>\n }\n menuSections={menuSections}\n menuBottomItems={menuBottomItems}\n buttonProps={{\n color: 'primary',\n variant: 'contained',\n sx: { mr: 2 },\n }}\n buttonClick={handleMenu}\n anchorEl={anchorEl}\n setAnchorEl={setAnchorEl}\n />\n );\n};\n\nexport default CreateDropdown;\n"],"names":[],"mappings":";;;;;AA4BA,MAAM,MAAS,GAAA;AAAA,EACb;AAAA,IACE,GAAK,EAAA,OAAA;AAAA,IACL,KAAO,EAAA,iBAAA;AAAA,IACP,KAAO,EAAA;AAAA,GACT;AAAA,EACA;AAAA,IACE,GAAK,EAAA,OAAA;AAAA,IACL,KAAO,EAAA,uBAAA;AAAA,IACP,KAAO,EAAA;AAAA,GACT;AAAA,EACA;AAAA,IACE,GAAK,EAAA,OAAA;AAAA,IACL,KAAO,EAAA,wBAAA;AAAA,IACP,KAAO,EAAA;AAAA,GACT;AAAA,EACA;AAAA,IACE,GAAK,EAAA,OAAA;AAAA,IACL,KAAO,EAAA,0CAAA;AAAA,IACP,KAAO,EAAA;AAAA,GACT;AAAA,EACA;AAAA,IACE,GAAK,EAAA,OAAA;AAAA,IACL,KAAO,EAAA,6BAAA;AAAA,IACP,KAAO,EAAA;AAAA;AAEX,CAAA;AAEA,MAAM,eAAoC,GAAA;AAAA,EACxC;AAAA,IACE,OAAS,EAAA,QAAA;AAAA,IACT,IAAM,EAAA,oBAAA;AAAA,IACN,KAAO,EAAA,sBAAA;AAAA,IACP,QAAU,EAAA,+BAAA;AAAA,IACV,IAAM,EAAA;AAAA;AAEV,CAAA;AACA,MAAM,iBAA8C,CAAC;AAAA,EACnD,UAAA;AAAA,EACA,QAAA;AAAA,EACA;AACF,CAAM,KAAA;AACJ,EAAA,MAAM,YAAe,GAAA;AAAA,IACnB;AAAA,MACE,UAAY,EAAA,WAAA;AAAA,MACZ,YAAc,EAAA,gBAAA;AAAA,MACd,iBAAmB,EAAA,eAAA;AAAA,MACnB,YAAc,EAAA,SAAA;AAAA,MACd,KAAA,EAAO,MAAO,CAAA,GAAA,CAAI,CAAM,CAAA,MAAA;AAAA,QACtB,SAAS,CAAE,CAAA,GAAA;AAAA,QACX,OAAO,CAAE,CAAA,KAAA;AAAA,QACT,IAAA,EAAM,CAA6B,0BAAA,EAAA,CAAA,CAAE,KAAK,CAAA;AAAA,OAC1C,CAAA,CAAA;AAAA,MACF,WAAA,EAAa,MAAM,WAAA,CAAY,IAAI;AAAA;AACrC,GACF;AACA,EACE,uBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,uBAAA;AAAA,IAAA;AAAA,MACC,aAAA,kBACI,KAAA,CAAA,aAAA,CAAA,KAAA,CAAA,QAAA,EAAA,IAAA,EAAA,SAAA,kBACQ,KAAA,CAAA,aAAA,CAAA,yBAAA,EAAA,EAA0B,IAAI,EAAE,EAAA,EAAI,CAAE,EAAA,EAAG,CACnD,CAAA;AAAA,MAEF,YAAA;AAAA,MACA,eAAA;AAAA,MACA,WAAa,EAAA;AAAA,QACX,KAAO,EAAA,SAAA;AAAA,QACP,OAAS,EAAA,WAAA;AAAA,QACT,EAAA,EAAI,EAAE,EAAA,EAAI,CAAE;AAAA,OACd;AAAA,MACA,WAAa,EAAA,UAAA;AAAA,MACb,QAAA;AAAA,MACA;AAAA;AAAA,GACF;AAEJ;;;;"}
1
+ {"version":3,"file":"CreateDropdown.esm.js","sources":["../../../src/components/HeaderDropdownComponent/CreateDropdown.tsx"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport React, { useEffect, useMemo, useState } from 'react';\nimport { catalogApiRef } from '@backstage/plugin-catalog-react';\nimport HeaderDropdownComponent from './HeaderDropdownComponent';\nimport ArrowDropDownOutlinedIcon from '@mui/icons-material/ArrowDropDownOutlined';\nimport { MenuItemConfig } from './MenuSection';\nimport { useApi } from '@backstage/core-plugin-api';\nimport { Entity } from '@backstage/catalog-model';\nimport CircularProgress from '@mui/material/CircularProgress';\nimport Box from '@mui/material/Box';\nimport Typography from '@mui/material/Typography';\nimport { ComponentType } from '../../types';\nimport { HeaderLink } from '../HeaderLinkComponent/HeaderLink';\nimport { useCreateDropdownMountPoints } from '../../hooks/useCreateDropdownMountPoints';\n\n/**\n * @public\n * Create button properties\n */\nexport interface CreateButtonProps {\n handleMenu: (event: React.MouseEvent<HTMLElement>) => void;\n anchorEl: HTMLElement | null;\n setAnchorEl: React.Dispatch<React.SetStateAction<HTMLElement | null>>;\n}\n\n/**\n * @public\n * Props for each dropdown section component\n */\ninterface SectionComponentProps {\n handleClose: () => void;\n hideDivider: boolean;\n items?: MenuItemConfig[];\n}\n\nexport const CreateDropdown = ({\n handleMenu,\n anchorEl,\n setAnchorEl,\n}: CreateButtonProps) => {\n const catalogApi = useApi(catalogApiRef);\n const [entities, setEntities] = useState<Entity[]>([]);\n const [loading, setLoading] = useState(true);\n const [error, setError] = useState(null);\n const createDropdownMountPoints = useCreateDropdownMountPoints();\n\n useEffect(() => {\n const fetchEntities = async () => {\n try {\n const response = await catalogApi.getEntities({\n filter: { kind: ['Template'] },\n });\n setEntities(response.items);\n } catch (err) {\n setError(err);\n } finally {\n setLoading(false);\n }\n };\n\n fetchEntities();\n }, [catalogApi]);\n\n const items = useMemo(() => {\n return entities\n .filter(e => e.kind === 'Template')\n .map(m => ({\n Component: HeaderLink as React.ComponentType,\n type: ComponentType.LINK,\n label: m.metadata.title ?? m.metadata.name,\n link: `/create/templates/default/${m.metadata.name}`,\n }));\n }, [entities]);\n\n const menuSections = useMemo(() => {\n return (createDropdownMountPoints ?? [])\n .map(mp => ({\n Component: mp.Component as React.ComponentType<SectionComponentProps>,\n type: mp.config?.type ?? ComponentType.LINK,\n priority: mp.config?.priority ?? 0,\n }))\n .sort((a, b) => (b.priority ?? 0) - (a.priority ?? 0));\n }, [createDropdownMountPoints]);\n\n if (loading) {\n return (\n <Box display=\"flex\" justifyContent=\"center\" alignItems=\"center\" p={2}>\n <CircularProgress />\n <Typography variant=\"body1\" sx={{ ml: 2 }}>\n Loading templates...\n </Typography>\n </Box>\n );\n }\n\n if (error) {\n return (\n <Box display=\"flex\" justifyContent=\"center\" alignItems=\"center\" p={2}>\n <Typography variant=\"body1\" color=\"error\">\n Error fetching templates: {error}\n </Typography>\n </Box>\n );\n }\n\n return (\n <HeaderDropdownComponent\n buttonContent={\n <>\n Create <ArrowDropDownOutlinedIcon sx={{ ml: 1 }} />\n </>\n }\n buttonProps={{\n color: 'primary',\n variant: 'contained',\n sx: { mr: 2 },\n }}\n buttonClick={handleMenu}\n anchorEl={anchorEl}\n setAnchorEl={setAnchorEl}\n >\n {menuSections.map((section, index) => (\n <section.Component\n key={`menu-section-${index.toString()}`}\n hideDivider={index === menuSections.length - 1}\n handleClose={() => setAnchorEl(null)}\n {...(section.type === ComponentType.LIST ? { items } : {})}\n />\n ))}\n </HeaderDropdownComponent>\n );\n};\n"],"names":[],"mappings":"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"}
@@ -1,12 +1,8 @@
1
1
  import React from 'react';
2
2
  import Menu from '@mui/material/Menu';
3
- import MenuItem from '@mui/material/MenuItem';
4
3
  import Button from '@mui/material/Button';
5
- import Typography from '@mui/material/Typography';
6
- import { Link } from '@backstage/core-components';
7
4
  import { styled } from '@mui/material/styles';
8
5
  import Box from '@mui/material/Box';
9
- import MenuSection from './MenuSection.esm.js';
10
6
 
11
7
  const Listbox = styled("ul")(
12
8
  ({ theme }) => `
@@ -29,14 +25,12 @@ const Listbox = styled("ul")(
29
25
  );
30
26
  const HeaderDropdownComponent = ({
31
27
  buttonContent,
32
- menuSections = [],
33
- menuBottomItems = [],
28
+ children,
34
29
  buttonProps,
35
30
  buttonClick,
36
31
  anchorEl,
37
32
  setAnchorEl
38
33
  }) => {
39
- const shouldHideDivider = (index) => menuSections.length === 1 && index === menuSections.length - 1 && menuBottomItems.length === 0;
40
34
  return /* @__PURE__ */ React.createElement(Box, null, /* @__PURE__ */ React.createElement(
41
35
  Button,
42
36
  {
@@ -68,48 +62,7 @@ const HeaderDropdownComponent = ({
68
62
  }
69
63
  }
70
64
  },
71
- /* @__PURE__ */ React.createElement(Listbox, { role: "menu" }, menuSections.map((section, index) => /* @__PURE__ */ React.createElement(
72
- MenuSection,
73
- {
74
- key: `menu-section-${section.sectionKey}`,
75
- ...{ hideDivider: shouldHideDivider(index), ...section },
76
- handleClose: section.handleClose
77
- }
78
- )), menuBottomItems.map(
79
- ({ itemKey, icon: Icon, label, subLabel, link }) => /* @__PURE__ */ React.createElement(
80
- MenuItem,
81
- {
82
- key: `menu-item-${itemKey}`,
83
- sx: { my: "8px", "&:hover": { background: "transparent" } },
84
- onClick: () => setAnchorEl(null),
85
- disableRipple: true
86
- },
87
- link && /* @__PURE__ */ React.createElement(
88
- Link,
89
- {
90
- to: link,
91
- style: {
92
- display: "flex",
93
- color: "inherit",
94
- alignItems: "center",
95
- textDecoration: "none"
96
- }
97
- },
98
- Icon && /* @__PURE__ */ React.createElement(
99
- Icon,
100
- {
101
- fontSize: "small",
102
- style: {
103
- marginRight: "0.5rem",
104
- flexShrink: 0,
105
- color: "slategray"
106
- }
107
- }
108
- ),
109
- /* @__PURE__ */ React.createElement(Box, null, /* @__PURE__ */ React.createElement(Typography, { variant: "body2" }, label), subLabel && /* @__PURE__ */ React.createElement(Typography, { variant: "caption", color: "text.secondary" }, subLabel))
110
- )
111
- )
112
- ))
65
+ /* @__PURE__ */ React.createElement(Listbox, { role: "menu" }, children)
113
66
  ));
114
67
  };
115
68