@backstage/plugin-catalog 1.29.1-next.1 → 1.29.1-next.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @backstage/plugin-catalog
2
2
 
3
+ ## 1.29.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - bf85d37: Fix for missing `routeRef` when using `core-plugin-api` in a dialog context
8
+ - Updated dependencies
9
+ - @backstage/core-plugin-api@1.10.7-next.0
10
+ - @backstage/core-compat-api@0.4.2-next.2
11
+ - @backstage/core-components@0.17.2-next.1
12
+ - @backstage/frontend-plugin-api@0.10.2-next.1
13
+ - @backstage/integration-react@1.2.7-next.2
14
+ - @backstage/plugin-catalog-react@1.18.0-next.2
15
+ - @backstage/plugin-permission-react@0.4.34-next.1
16
+ - @backstage/plugin-search-react@1.9.0-next.1
17
+ - @backstage/catalog-client@1.10.0-next.0
18
+ - @backstage/catalog-model@1.7.3
19
+ - @backstage/errors@1.2.7
20
+ - @backstage/types@1.2.1
21
+ - @backstage/version-bridge@1.0.11
22
+ - @backstage/plugin-catalog-common@1.1.4-next.0
23
+ - @backstage/plugin-scaffolder-common@1.5.11-next.0
24
+ - @backstage/plugin-search-common@1.2.18-next.0
25
+
3
26
  ## 1.29.1-next.1
4
27
 
5
28
  ### Patch Changes
@@ -12,6 +12,7 @@ import { useEntity, UnregisterEntityDialog } from '@backstage/plugin-catalog-rea
12
12
  import { rootRouteRef, unregisterRedirectRouteRef } from '../routes.esm.js';
13
13
  import { catalogEntityDeletePermission } from '@backstage/plugin-catalog-common/alpha';
14
14
  import { useEffect } from 'react';
15
+ import { compatWrapper } from '@backstage/core-compat-api';
15
16
 
16
17
  const copyEntityUrlContextMenuItem = EntityContextMenuItemBlueprint.make(
17
18
  {
@@ -77,20 +78,24 @@ const unregisterEntityContextMenuItem = EntityContextMenuItemBlueprint.make({
77
78
  title: t("entityContextMenu.unregisterMenuTitle"),
78
79
  disabled: !unregisterPermission.allowed,
79
80
  onClick: async () => {
80
- dialogApi.showModal(({ dialog }) => /* @__PURE__ */ jsx(
81
- UnregisterEntityDialog,
82
- {
83
- open: true,
84
- entity,
85
- onClose: () => dialog.close(),
86
- onConfirm: () => {
87
- dialog.close();
88
- navigate(
89
- unregisterRedirectRoute ? unregisterRedirectRoute() : catalogRoute()
90
- );
91
- }
92
- }
93
- ));
81
+ dialogApi.showModal(
82
+ ({ dialog }) => compatWrapper(
83
+ /* @__PURE__ */ jsx(
84
+ UnregisterEntityDialog,
85
+ {
86
+ open: true,
87
+ entity,
88
+ onClose: () => dialog.close(),
89
+ onConfirm: () => {
90
+ dialog.close();
91
+ navigate(
92
+ unregisterRedirectRoute ? unregisterRedirectRoute() : catalogRoute()
93
+ );
94
+ }
95
+ }
96
+ )
97
+ )
98
+ );
94
99
  }
95
100
  };
96
101
  }
@@ -1 +1 @@
1
- {"version":3,"file":"contextMenuItems.esm.js","sources":["../../src/alpha/contextMenuItems.tsx"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\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 {\n EntityContextMenuItemBlueprint,\n useEntityPermission,\n} from '@backstage/plugin-catalog-react/alpha';\nimport FileCopyTwoToneIcon from '@material-ui/icons/FileCopyTwoTone';\nimport BugReportIcon from '@material-ui/icons/BugReport';\nimport CancelIcon from '@material-ui/icons/Cancel';\nimport useCopyToClipboard from 'react-use/esm/useCopyToClipboard';\nimport { alertApiRef, useApi, useRouteRef } from '@backstage/core-plugin-api';\nimport {\n dialogApiRef,\n useTranslationRef,\n type DialogApiDialog,\n} from '@backstage/frontend-plugin-api';\nimport { catalogTranslationRef } from './translation';\nimport { useNavigate, useSearchParams } from 'react-router-dom';\nimport {\n UnregisterEntityDialog,\n useEntity,\n} from '@backstage/plugin-catalog-react';\nimport { rootRouteRef, unregisterRedirectRouteRef } from '../routes';\nimport { catalogEntityDeletePermission } from '@backstage/plugin-catalog-common/alpha';\nimport { useEffect } from 'react';\n\nexport const copyEntityUrlContextMenuItem = EntityContextMenuItemBlueprint.make(\n {\n name: 'copy-entity-url',\n params: {\n icon: <FileCopyTwoToneIcon fontSize=\"small\" />,\n useProps: () => {\n const [copyState, copyToClipboard] = useCopyToClipboard();\n const alertApi = useApi(alertApiRef);\n const { t } = useTranslationRef(catalogTranslationRef);\n\n useEffect(() => {\n if (!copyState.error && copyState.value) {\n alertApi.post({\n message: t('entityContextMenu.copiedMessage'),\n severity: 'info',\n display: 'transient',\n });\n }\n }, [copyState, alertApi, t]);\n\n return {\n title: t('entityContextMenu.copyURLMenuTitle'),\n onClick: async () => {\n copyToClipboard(window.location.toString());\n },\n };\n },\n },\n },\n);\n\nexport const inspectEntityContextMenuItem = EntityContextMenuItemBlueprint.make(\n {\n name: 'inspect-entity',\n params: {\n icon: <BugReportIcon fontSize=\"small\" />,\n useProps: () => {\n const [_, setSearchParams] = useSearchParams();\n const { t } = useTranslationRef(catalogTranslationRef);\n\n return {\n title: t('entityContextMenu.inspectMenuTitle'),\n onClick: async () => {\n setSearchParams('inspect');\n },\n };\n },\n },\n },\n);\n\nexport const unregisterEntityContextMenuItem =\n EntityContextMenuItemBlueprint.make({\n name: 'unregister-entity',\n params: {\n icon: <CancelIcon fontSize=\"small\" />,\n useProps: () => {\n const { entity } = useEntity();\n const dialogApi = useApi(dialogApiRef);\n const navigate = useNavigate();\n const catalogRoute = useRouteRef(rootRouteRef);\n const { t } = useTranslationRef(catalogTranslationRef);\n const unregisterRedirectRoute = useRouteRef(unregisterRedirectRouteRef);\n const unregisterPermission = useEntityPermission(\n catalogEntityDeletePermission,\n );\n\n return {\n title: t('entityContextMenu.unregisterMenuTitle'),\n disabled: !unregisterPermission.allowed,\n onClick: async () => {\n dialogApi.showModal(({ dialog }: { dialog: DialogApiDialog }) => (\n <UnregisterEntityDialog\n open\n entity={entity}\n onClose={() => dialog.close()}\n onConfirm={() => {\n dialog.close();\n navigate(\n unregisterRedirectRoute\n ? unregisterRedirectRoute()\n : catalogRoute(),\n );\n }}\n />\n ));\n },\n };\n },\n },\n });\n\nexport default [\n unregisterEntityContextMenuItem,\n inspectEntityContextMenuItem,\n copyEntityUrlContextMenuItem,\n];\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"contextMenuItems.esm.js","sources":["../../src/alpha/contextMenuItems.tsx"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\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 {\n EntityContextMenuItemBlueprint,\n useEntityPermission,\n} from '@backstage/plugin-catalog-react/alpha';\nimport FileCopyTwoToneIcon from '@material-ui/icons/FileCopyTwoTone';\nimport BugReportIcon from '@material-ui/icons/BugReport';\nimport CancelIcon from '@material-ui/icons/Cancel';\nimport useCopyToClipboard from 'react-use/esm/useCopyToClipboard';\nimport { alertApiRef, useApi, useRouteRef } from '@backstage/core-plugin-api';\nimport {\n dialogApiRef,\n useTranslationRef,\n type DialogApiDialog,\n} from '@backstage/frontend-plugin-api';\nimport { catalogTranslationRef } from './translation';\nimport { useNavigate, useSearchParams } from 'react-router-dom';\nimport {\n UnregisterEntityDialog,\n useEntity,\n} from '@backstage/plugin-catalog-react';\nimport { rootRouteRef, unregisterRedirectRouteRef } from '../routes';\nimport { catalogEntityDeletePermission } from '@backstage/plugin-catalog-common/alpha';\nimport { useEffect } from 'react';\nimport { compatWrapper } from '@backstage/core-compat-api';\n\nexport const copyEntityUrlContextMenuItem = EntityContextMenuItemBlueprint.make(\n {\n name: 'copy-entity-url',\n params: {\n icon: <FileCopyTwoToneIcon fontSize=\"small\" />,\n useProps: () => {\n const [copyState, copyToClipboard] = useCopyToClipboard();\n const alertApi = useApi(alertApiRef);\n const { t } = useTranslationRef(catalogTranslationRef);\n\n useEffect(() => {\n if (!copyState.error && copyState.value) {\n alertApi.post({\n message: t('entityContextMenu.copiedMessage'),\n severity: 'info',\n display: 'transient',\n });\n }\n }, [copyState, alertApi, t]);\n\n return {\n title: t('entityContextMenu.copyURLMenuTitle'),\n onClick: async () => {\n copyToClipboard(window.location.toString());\n },\n };\n },\n },\n },\n);\n\nexport const inspectEntityContextMenuItem = EntityContextMenuItemBlueprint.make(\n {\n name: 'inspect-entity',\n params: {\n icon: <BugReportIcon fontSize=\"small\" />,\n useProps: () => {\n const [_, setSearchParams] = useSearchParams();\n const { t } = useTranslationRef(catalogTranslationRef);\n\n return {\n title: t('entityContextMenu.inspectMenuTitle'),\n onClick: async () => {\n setSearchParams('inspect');\n },\n };\n },\n },\n },\n);\n\nexport const unregisterEntityContextMenuItem =\n EntityContextMenuItemBlueprint.make({\n name: 'unregister-entity',\n params: {\n icon: <CancelIcon fontSize=\"small\" />,\n useProps: () => {\n const { entity } = useEntity();\n const dialogApi = useApi(dialogApiRef);\n const navigate = useNavigate();\n const catalogRoute = useRouteRef(rootRouteRef);\n\n const { t } = useTranslationRef(catalogTranslationRef);\n const unregisterRedirectRoute = useRouteRef(unregisterRedirectRouteRef);\n const unregisterPermission = useEntityPermission(\n catalogEntityDeletePermission,\n );\n\n return {\n title: t('entityContextMenu.unregisterMenuTitle'),\n disabled: !unregisterPermission.allowed,\n onClick: async () => {\n dialogApi.showModal(({ dialog }: { dialog: DialogApiDialog }) =>\n compatWrapper(\n <UnregisterEntityDialog\n open\n entity={entity}\n onClose={() => dialog.close()}\n onConfirm={() => {\n dialog.close();\n navigate(\n unregisterRedirectRoute\n ? unregisterRedirectRoute()\n : catalogRoute(),\n );\n }}\n />,\n ),\n );\n },\n };\n },\n },\n });\n\nexport default [\n unregisterEntityContextMenuItem,\n inspectEntityContextMenuItem,\n copyEntityUrlContextMenuItem,\n];\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAyCO,MAAM,+BAA+B,8BAA+B,CAAA,IAAA;AAAA,EACzE;AAAA,IACE,IAAM,EAAA,iBAAA;AAAA,IACN,MAAQ,EAAA;AAAA,MACN,IAAM,kBAAA,GAAA,CAAC,mBAAoB,EAAA,EAAA,QAAA,EAAS,OAAQ,EAAA,CAAA;AAAA,MAC5C,UAAU,MAAM;AACd,QAAA,MAAM,CAAC,SAAA,EAAW,eAAe,CAAA,GAAI,kBAAmB,EAAA;AACxD,QAAM,MAAA,QAAA,GAAW,OAAO,WAAW,CAAA;AACnC,QAAA,MAAM,EAAE,CAAA,EAAM,GAAA,iBAAA,CAAkB,qBAAqB,CAAA;AAErD,QAAA,SAAA,CAAU,MAAM;AACd,UAAA,IAAI,CAAC,SAAA,CAAU,KAAS,IAAA,SAAA,CAAU,KAAO,EAAA;AACvC,YAAA,QAAA,CAAS,IAAK,CAAA;AAAA,cACZ,OAAA,EAAS,EAAE,iCAAiC,CAAA;AAAA,cAC5C,QAAU,EAAA,MAAA;AAAA,cACV,OAAS,EAAA;AAAA,aACV,CAAA;AAAA;AACH,SACC,EAAA,CAAC,SAAW,EAAA,QAAA,EAAU,CAAC,CAAC,CAAA;AAE3B,QAAO,OAAA;AAAA,UACL,KAAA,EAAO,EAAE,oCAAoC,CAAA;AAAA,UAC7C,SAAS,YAAY;AACnB,YAAgB,eAAA,CAAA,MAAA,CAAO,QAAS,CAAA,QAAA,EAAU,CAAA;AAAA;AAC5C,SACF;AAAA;AACF;AACF;AAEJ;AAEO,MAAM,+BAA+B,8BAA+B,CAAA,IAAA;AAAA,EACzE;AAAA,IACE,IAAM,EAAA,gBAAA;AAAA,IACN,MAAQ,EAAA;AAAA,MACN,IAAM,kBAAA,GAAA,CAAC,aAAc,EAAA,EAAA,QAAA,EAAS,OAAQ,EAAA,CAAA;AAAA,MACtC,UAAU,MAAM;AACd,QAAA,MAAM,CAAC,CAAA,EAAG,eAAe,CAAA,GAAI,eAAgB,EAAA;AAC7C,QAAA,MAAM,EAAE,CAAA,EAAM,GAAA,iBAAA,CAAkB,qBAAqB,CAAA;AAErD,QAAO,OAAA;AAAA,UACL,KAAA,EAAO,EAAE,oCAAoC,CAAA;AAAA,UAC7C,SAAS,YAAY;AACnB,YAAA,eAAA,CAAgB,SAAS,CAAA;AAAA;AAC3B,SACF;AAAA;AACF;AACF;AAEJ;AAEa,MAAA,+BAAA,GACX,+BAA+B,IAAK,CAAA;AAAA,EAClC,IAAM,EAAA,mBAAA;AAAA,EACN,MAAQ,EAAA;AAAA,IACN,IAAM,kBAAA,GAAA,CAAC,UAAW,EAAA,EAAA,QAAA,EAAS,OAAQ,EAAA,CAAA;AAAA,IACnC,UAAU,MAAM;AACd,MAAM,MAAA,EAAE,MAAO,EAAA,GAAI,SAAU,EAAA;AAC7B,MAAM,MAAA,SAAA,GAAY,OAAO,YAAY,CAAA;AACrC,MAAA,MAAM,WAAW,WAAY,EAAA;AAC7B,MAAM,MAAA,YAAA,GAAe,YAAY,YAAY,CAAA;AAE7C,MAAA,MAAM,EAAE,CAAA,EAAM,GAAA,iBAAA,CAAkB,qBAAqB,CAAA;AACrD,MAAM,MAAA,uBAAA,GAA0B,YAAY,0BAA0B,CAAA;AACtE,MAAA,MAAM,oBAAuB,GAAA,mBAAA;AAAA,QAC3B;AAAA,OACF;AAEA,MAAO,OAAA;AAAA,QACL,KAAA,EAAO,EAAE,uCAAuC,CAAA;AAAA,QAChD,QAAA,EAAU,CAAC,oBAAqB,CAAA,OAAA;AAAA,QAChC,SAAS,YAAY;AACnB,UAAU,SAAA,CAAA,SAAA;AAAA,YAAU,CAAC,EAAE,MAAA,EACrB,KAAA,aAAA;AAAA,8BACE,GAAA;AAAA,gBAAC,sBAAA;AAAA,gBAAA;AAAA,kBACC,IAAI,EAAA,IAAA;AAAA,kBACJ,MAAA;AAAA,kBACA,OAAA,EAAS,MAAM,MAAA,CAAO,KAAM,EAAA;AAAA,kBAC5B,WAAW,MAAM;AACf,oBAAA,MAAA,CAAO,KAAM,EAAA;AACb,oBAAA,QAAA;AAAA,sBACE,uBAAA,GACI,uBAAwB,EAAA,GACxB,YAAa;AAAA,qBACnB;AAAA;AACF;AAAA;AACF;AACF,WACF;AAAA;AACF,OACF;AAAA;AACF;AAEJ,CAAC;AAEH,uBAAe;AAAA,EACb,+BAAA;AAAA,EACA,4BAAA;AAAA,EACA;AACF,CAAA;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog",
3
- "version": "1.29.1-next.1",
3
+ "version": "1.29.1-next.2",
4
4
  "description": "The Backstage plugin for browsing the Backstage catalog",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
@@ -72,18 +72,18 @@
72
72
  "dependencies": {
73
73
  "@backstage/catalog-client": "1.10.0-next.0",
74
74
  "@backstage/catalog-model": "1.7.3",
75
- "@backstage/core-compat-api": "0.4.2-next.1",
76
- "@backstage/core-components": "0.17.2-next.0",
77
- "@backstage/core-plugin-api": "1.10.6",
75
+ "@backstage/core-compat-api": "0.4.2-next.2",
76
+ "@backstage/core-components": "0.17.2-next.1",
77
+ "@backstage/core-plugin-api": "1.10.7-next.0",
78
78
  "@backstage/errors": "1.2.7",
79
- "@backstage/frontend-plugin-api": "0.10.2-next.0",
80
- "@backstage/integration-react": "1.2.7-next.1",
79
+ "@backstage/frontend-plugin-api": "0.10.2-next.1",
80
+ "@backstage/integration-react": "1.2.7-next.2",
81
81
  "@backstage/plugin-catalog-common": "1.1.4-next.0",
82
- "@backstage/plugin-catalog-react": "1.18.0-next.1",
83
- "@backstage/plugin-permission-react": "0.4.34-next.0",
82
+ "@backstage/plugin-catalog-react": "1.18.0-next.2",
83
+ "@backstage/plugin-permission-react": "0.4.34-next.1",
84
84
  "@backstage/plugin-scaffolder-common": "1.5.11-next.0",
85
85
  "@backstage/plugin-search-common": "1.2.18-next.0",
86
- "@backstage/plugin-search-react": "1.9.0-next.0",
86
+ "@backstage/plugin-search-react": "1.9.0-next.1",
87
87
  "@backstage/types": "1.2.1",
88
88
  "@backstage/version-bridge": "1.0.11",
89
89
  "@material-ui/core": "^4.12.2",
@@ -100,12 +100,12 @@
100
100
  "zen-observable": "^0.10.0"
101
101
  },
102
102
  "devDependencies": {
103
- "@backstage/cli": "0.32.1-next.1",
104
- "@backstage/core-app-api": "1.16.1",
105
- "@backstage/dev-utils": "1.1.10-next.1",
106
- "@backstage/frontend-test-utils": "0.3.2-next.1",
103
+ "@backstage/cli": "0.32.1-next.2",
104
+ "@backstage/core-app-api": "1.16.2-next.0",
105
+ "@backstage/dev-utils": "1.1.10-next.2",
106
+ "@backstage/frontend-test-utils": "0.3.2-next.2",
107
107
  "@backstage/plugin-permission-common": "0.9.0-next.0",
108
- "@backstage/test-utils": "1.7.8-next.0",
108
+ "@backstage/test-utils": "1.7.8-next.1",
109
109
  "@testing-library/dom": "^10.0.0",
110
110
  "@testing-library/jest-dom": "^6.0.0",
111
111
  "@testing-library/react": "^16.0.0",