@backstage/plugin-catalog-graph 0.5.8-next.0 → 0.6.0-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 +47 -0
- package/dist/alpha.d.ts +0 -1
- package/dist/components/CatalogGraphCard/CatalogGraphCard.esm.js +16 -24
- package/dist/components/CatalogGraphCard/CatalogGraphCard.esm.js.map +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/package.json.esm.js +3 -1
- package/dist/package.json.esm.js.map +1 -1
- package/package.json +13 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-graph
|
|
2
2
|
|
|
3
|
+
## 0.6.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d14b6e0: **BREAKING**: Migrated `MembersListCard`, `OwnershipCard`, and `CatalogGraphCard` to use BUI card primitives via `EntityInfoCard`.
|
|
8
|
+
|
|
9
|
+
- `OwnershipCard`: Removed `variant` and `maxScrollHeight` props. Card height and scrolling are now controlled by the parent container — the card fills its container and the body scrolls automatically when content overflows.
|
|
10
|
+
- `CatalogGraphCard`: Removed `variant` prop.
|
|
11
|
+
- `MembersListCard`: Translation keys `subtitle`, `paginationLabel`, `aggregateMembersToggle.directMembers`, `aggregateMembersToggle.aggregatedMembers`, and `aggregateMembersToggle.ariaLabel` have been removed. The `title` key now includes `{{groupName}}`. New keys added: `cardLabel`, `noSearchResult`, `aggregateMembersToggle.label`.
|
|
12
|
+
- `OwnershipCard`: Translation keys `aggregateRelationsToggle.directRelations`, `aggregateRelationsToggle.aggregatedRelations`, and `aggregateRelationsToggle.ariaLabel` have been removed. New key added: `aggregateRelationsToggle.label`.
|
|
13
|
+
- Removed `MemberComponentClassKey` export, and `root` and `cardContent` from `MembersListCardClassKey`, `card` from `OwnershipCardClassKey`, and `card` from `CatalogGraphCardClassKey`.
|
|
14
|
+
|
|
15
|
+
**Migration:**
|
|
16
|
+
|
|
17
|
+
```diff
|
|
18
|
+
- <EntityOwnershipCard variant="gridItem" />
|
|
19
|
+
+ <EntityOwnershipCard />
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
```diff
|
|
23
|
+
- <EntityCatalogGraphCard variant="gridItem" height={400} />
|
|
24
|
+
+ <EntityCatalogGraphCard height={400} />
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- @backstage/ui@0.13.0-next.2
|
|
31
|
+
- @backstage/frontend-plugin-api@0.15.0-next.1
|
|
32
|
+
- @backstage/core-plugin-api@1.12.4-next.1
|
|
33
|
+
- @backstage/catalog-client@1.14.0-next.2
|
|
34
|
+
- @backstage/plugin-catalog-react@2.1.0-next.2
|
|
35
|
+
- @backstage/core-components@0.18.8-next.1
|
|
36
|
+
|
|
37
|
+
## 0.5.8-next.1
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
- @backstage/catalog-client@1.14.0-next.1
|
|
43
|
+
- @backstage/plugin-catalog-react@2.1.0-next.1
|
|
44
|
+
- @backstage/catalog-model@1.7.6
|
|
45
|
+
- @backstage/core-components@0.18.8-next.0
|
|
46
|
+
- @backstage/core-plugin-api@1.12.4-next.0
|
|
47
|
+
- @backstage/frontend-plugin-api@0.14.2-next.0
|
|
48
|
+
- @backstage/types@1.2.2
|
|
49
|
+
|
|
3
50
|
## 0.5.8-next.0
|
|
4
51
|
|
|
5
52
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -153,7 +153,6 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
153
153
|
kind: "page";
|
|
154
154
|
name: undefined;
|
|
155
155
|
params: {
|
|
156
|
-
defaultPath?: [Error: `Use the 'path' param instead`];
|
|
157
156
|
path: string;
|
|
158
157
|
title?: string;
|
|
159
158
|
icon?: _backstage_frontend_plugin_api.IconElement;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { getCompoundEntityRef, parseEntityRef, stringifyEntityRef } from '@backstage/catalog-model';
|
|
3
|
-
import { InfoCard } from '@backstage/core-components';
|
|
4
3
|
import { useRouteRef, useAnalytics } from '@backstage/core-plugin-api';
|
|
5
|
-
import { useEntity, entityRouteRef, humanizeEntityRef } from '@backstage/plugin-catalog-react';
|
|
4
|
+
import { useEntity, entityRouteRef, humanizeEntityRef, EntityInfoCard } from '@backstage/plugin-catalog-react';
|
|
5
|
+
import { ButtonLink } from '@backstage/ui';
|
|
6
|
+
import { RiArrowRightLine } from '@remixicon/react';
|
|
6
7
|
import { makeStyles } from '@material-ui/core/styles';
|
|
7
8
|
import qs from 'qs';
|
|
8
9
|
import { useMemo, useCallback } from 'react';
|
|
@@ -16,19 +17,9 @@ import classNames from 'classnames';
|
|
|
16
17
|
|
|
17
18
|
const useStyles = makeStyles(
|
|
18
19
|
{
|
|
19
|
-
card: ({ height }) => ({
|
|
20
|
-
display: "flex",
|
|
21
|
-
flexDirection: "column",
|
|
22
|
-
...height && {
|
|
23
|
-
height,
|
|
24
|
-
maxHeight: height,
|
|
25
|
-
minHeight: height
|
|
26
|
-
}
|
|
27
|
-
}),
|
|
28
20
|
graph: ({ height }) => ({
|
|
29
|
-
|
|
30
|
-
minHeight: 0
|
|
31
|
-
...height && { height }
|
|
21
|
+
height: height ?? "100%",
|
|
22
|
+
minHeight: 0
|
|
32
23
|
})
|
|
33
24
|
},
|
|
34
25
|
{ name: "PluginCatalogGraphCatalogGraphCard" }
|
|
@@ -36,7 +27,6 @@ const useStyles = makeStyles(
|
|
|
36
27
|
const CatalogGraphCard = (props) => {
|
|
37
28
|
const { t } = useTranslationRef(catalogGraphTranslationRef);
|
|
38
29
|
const {
|
|
39
|
-
variant = "gridItem",
|
|
40
30
|
relationPairs,
|
|
41
31
|
maxDepth = 1,
|
|
42
32
|
unidirectional = true,
|
|
@@ -91,17 +81,19 @@ const CatalogGraphCard = (props) => {
|
|
|
91
81
|
);
|
|
92
82
|
const catalogGraphUrl = `${catalogGraphRoute()}${catalogGraphParams}`;
|
|
93
83
|
return /* @__PURE__ */ jsx(
|
|
94
|
-
|
|
84
|
+
EntityInfoCard,
|
|
95
85
|
{
|
|
96
86
|
title,
|
|
97
|
-
action,
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
87
|
+
headerActions: action,
|
|
88
|
+
footerActions: /* @__PURE__ */ jsx(
|
|
89
|
+
ButtonLink,
|
|
90
|
+
{
|
|
91
|
+
iconEnd: /* @__PURE__ */ jsx(RiArrowRightLine, {}),
|
|
92
|
+
variant: "tertiary",
|
|
93
|
+
href: catalogGraphUrl,
|
|
94
|
+
children: t("catalogGraphCard.deepLinkTitle")
|
|
95
|
+
}
|
|
96
|
+
),
|
|
105
97
|
children: /* @__PURE__ */ jsx(
|
|
106
98
|
EntityRelationsGraph,
|
|
107
99
|
{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CatalogGraphCard.esm.js","sources":["../../../src/components/CatalogGraphCard/CatalogGraphCard.tsx"],"sourcesContent":["/*\n * Copyright 2021 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 getCompoundEntityRef,\n parseEntityRef,\n stringifyEntityRef,\n} from '@backstage/catalog-model';\nimport {
|
|
1
|
+
{"version":3,"file":"CatalogGraphCard.esm.js","sources":["../../../src/components/CatalogGraphCard/CatalogGraphCard.tsx"],"sourcesContent":["/*\n * Copyright 2021 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 getCompoundEntityRef,\n parseEntityRef,\n stringifyEntityRef,\n} from '@backstage/catalog-model';\nimport { useAnalytics, useRouteRef } from '@backstage/core-plugin-api';\nimport {\n EntityInfoCard,\n humanizeEntityRef,\n useEntity,\n entityRouteRef,\n} from '@backstage/plugin-catalog-react';\nimport { ButtonLink } from '@backstage/ui';\nimport { RiArrowRightLine } from '@remixicon/react';\nimport { makeStyles, Theme } from '@material-ui/core/styles';\nimport qs from 'qs';\nimport { MouseEvent, ReactNode, useCallback, useMemo } from 'react';\nimport { useNavigate } from 'react-router-dom';\nimport { catalogGraphRouteRef } from '../../routes';\nimport {\n EntityRelationsGraph,\n EntityRelationsGraphProps,\n} from '../EntityRelationsGraph';\nimport { useTranslationRef } from '@backstage/frontend-plugin-api';\nimport { catalogGraphTranslationRef } from '../../translation';\nimport { Direction, EntityNode } from '../../lib/types';\nimport classNames from 'classnames';\n\n/** @public */\nexport type CatalogGraphCardClassKey = 'graph';\n\nconst useStyles = makeStyles<Theme, { height?: number }>(\n {\n graph: ({ height }) => ({\n height: height ?? '100%',\n minHeight: 0,\n }),\n },\n { name: 'PluginCatalogGraphCatalogGraphCard' },\n);\n\nexport const CatalogGraphCard = (\n props: Partial<EntityRelationsGraphProps> & {\n height?: number;\n title?: string;\n action?: ReactNode;\n },\n) => {\n const { t } = useTranslationRef(catalogGraphTranslationRef);\n const {\n relationPairs,\n maxDepth = 1,\n unidirectional = true,\n mergeRelations = true,\n direction = Direction.LEFT_RIGHT,\n kinds,\n relations,\n entityFilter,\n height,\n className,\n action,\n rootEntityNames,\n onNodeClick,\n title = t('catalogGraphCard.title'),\n zoom = 'enable-on-click',\n } = props;\n\n const { entity } = useEntity();\n const entityName = useMemo(() => getCompoundEntityRef(entity), [entity]);\n const catalogEntityRoute = useRouteRef(entityRouteRef);\n const catalogGraphRoute = useRouteRef(catalogGraphRouteRef);\n const navigate = useNavigate();\n const classes = useStyles({ height });\n const analytics = useAnalytics();\n\n const defaultOnNodeClick = useCallback(\n (node: EntityNode, _: MouseEvent<unknown>) => {\n const nodeEntityName = parseEntityRef(node.id);\n const path = catalogEntityRoute({\n kind: nodeEntityName.kind.toLocaleLowerCase('en-US'),\n namespace: nodeEntityName.namespace.toLocaleLowerCase('en-US'),\n name: nodeEntityName.name,\n });\n analytics.captureEvent(\n 'click',\n node.entity.metadata.title ?? humanizeEntityRef(nodeEntityName),\n { attributes: { to: path } },\n );\n navigate(path);\n },\n [catalogEntityRoute, navigate, analytics],\n );\n\n const catalogGraphParams = qs.stringify(\n {\n rootEntityRefs: [stringifyEntityRef(entity)],\n maxDepth: maxDepth,\n unidirectional,\n mergeRelations,\n selectedKinds: kinds,\n selectedRelations: relations,\n direction,\n },\n { arrayFormat: 'brackets', addQueryPrefix: true },\n );\n const catalogGraphUrl = `${catalogGraphRoute()}${catalogGraphParams}`;\n\n return (\n <EntityInfoCard\n title={title}\n headerActions={action}\n footerActions={\n <ButtonLink\n iconEnd={<RiArrowRightLine />}\n variant=\"tertiary\"\n href={catalogGraphUrl}\n >\n {t('catalogGraphCard.deepLinkTitle')}\n </ButtonLink>\n }\n >\n <EntityRelationsGraph\n {...props}\n rootEntityNames={rootEntityNames || entityName}\n onNodeClick={onNodeClick || defaultOnNodeClick}\n className={classNames(classes.graph, className)}\n maxDepth={maxDepth}\n unidirectional={unidirectional}\n mergeRelations={mergeRelations}\n direction={direction}\n relationPairs={relationPairs}\n entityFilter={entityFilter}\n zoom={zoom}\n />\n </EntityInfoCard>\n );\n};\n"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { Entity, CompoundEntityRef } from '@backstage/catalog-model';
|
|
3
|
-
import * as _backstage_core_components from '@backstage/core-components';
|
|
4
3
|
import { DependencyGraphTypes } from '@backstage/core-components';
|
|
5
4
|
import * as react from 'react';
|
|
6
5
|
import { MouseEventHandler, MouseEvent } from 'react';
|
|
@@ -187,7 +186,6 @@ type CustomNodeClassKey = 'node' | 'text' | 'clickable';
|
|
|
187
186
|
* @public
|
|
188
187
|
*/
|
|
189
188
|
declare const EntityCatalogGraphCard: (props: Partial<EntityRelationsGraphProps> & {
|
|
190
|
-
variant?: _backstage_core_components.InfoCardVariants;
|
|
191
189
|
height?: number;
|
|
192
190
|
title?: string;
|
|
193
191
|
action?: react.ReactNode;
|
package/dist/package.json.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage/plugin-catalog-graph";
|
|
2
|
-
var version = "0.
|
|
2
|
+
var version = "0.6.0-next.2";
|
|
3
3
|
var backstage = {
|
|
4
4
|
role: "frontend-plugin",
|
|
5
5
|
pluginId: "catalog-graph",
|
|
@@ -55,9 +55,11 @@ var dependencies = {
|
|
|
55
55
|
"@backstage/frontend-plugin-api": "workspace:^",
|
|
56
56
|
"@backstage/plugin-catalog-react": "workspace:^",
|
|
57
57
|
"@backstage/types": "workspace:^",
|
|
58
|
+
"@backstage/ui": "workspace:^",
|
|
58
59
|
"@material-ui/core": "^4.12.2",
|
|
59
60
|
"@material-ui/icons": "^4.9.1",
|
|
60
61
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
62
|
+
"@remixicon/react": "^4.6.0",
|
|
61
63
|
classnames: "^2.3.1",
|
|
62
64
|
lodash: "^4.17.15",
|
|
63
65
|
"p-limit": "^3.1.0",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-graph",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0-next.2",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "catalog-graph",
|
|
@@ -61,16 +61,18 @@
|
|
|
61
61
|
"test": "backstage-cli package test"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@backstage/catalog-client": "1.
|
|
64
|
+
"@backstage/catalog-client": "1.14.0-next.2",
|
|
65
65
|
"@backstage/catalog-model": "1.7.6",
|
|
66
|
-
"@backstage/core-components": "0.18.8-next.
|
|
67
|
-
"@backstage/core-plugin-api": "1.12.4-next.
|
|
68
|
-
"@backstage/frontend-plugin-api": "0.
|
|
69
|
-
"@backstage/plugin-catalog-react": "2.0
|
|
66
|
+
"@backstage/core-components": "0.18.8-next.1",
|
|
67
|
+
"@backstage/core-plugin-api": "1.12.4-next.1",
|
|
68
|
+
"@backstage/frontend-plugin-api": "0.15.0-next.1",
|
|
69
|
+
"@backstage/plugin-catalog-react": "2.1.0-next.2",
|
|
70
70
|
"@backstage/types": "1.2.2",
|
|
71
|
+
"@backstage/ui": "0.13.0-next.2",
|
|
71
72
|
"@material-ui/core": "^4.12.2",
|
|
72
73
|
"@material-ui/icons": "^4.9.1",
|
|
73
74
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
75
|
+
"@remixicon/react": "^4.6.0",
|
|
74
76
|
"classnames": "^2.3.1",
|
|
75
77
|
"lodash": "^4.17.15",
|
|
76
78
|
"p-limit": "^3.1.0",
|
|
@@ -78,11 +80,11 @@
|
|
|
78
80
|
"react-use": "^17.2.4"
|
|
79
81
|
},
|
|
80
82
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "0.
|
|
82
|
-
"@backstage/core-app-api": "1.19.6-next.
|
|
83
|
-
"@backstage/dev-utils": "1.1.21-next.
|
|
84
|
-
"@backstage/frontend-test-utils": "0.5.1-next.
|
|
85
|
-
"@backstage/plugin-catalog": "
|
|
83
|
+
"@backstage/cli": "0.36.0-next.2",
|
|
84
|
+
"@backstage/core-app-api": "1.19.6-next.1",
|
|
85
|
+
"@backstage/dev-utils": "1.1.21-next.1",
|
|
86
|
+
"@backstage/frontend-test-utils": "0.5.1-next.2",
|
|
87
|
+
"@backstage/plugin-catalog": "2.0.0-next.2",
|
|
86
88
|
"@backstage/test-utils": "1.7.16-next.0",
|
|
87
89
|
"@testing-library/dom": "^10.0.0",
|
|
88
90
|
"@testing-library/jest-dom": "^6.0.0",
|