@drodil/backstage-plugin-qeta 3.36.2 → 3.37.0
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/dist/alpha.d.ts +56 -8
- package/dist/alpha.esm.js +66 -13
- package/dist/alpha.esm.js.map +1 -1
- package/dist/package.json.esm.js +1 -1
- package/package.json +3 -3
package/dist/alpha.d.ts
CHANGED
|
@@ -41,21 +41,39 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
41
41
|
params: <TApi, TImpl extends TApi, TDeps extends { [name in string]: unknown; }>(params: _backstage_core_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_core_plugin_api.AnyApiFactory>;
|
|
42
42
|
}>;
|
|
43
43
|
"entity-content:qeta/entity-posts-content": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
44
|
-
kind: "entity-content";
|
|
45
|
-
name: "entity-posts-content";
|
|
46
44
|
config: {
|
|
45
|
+
showFilters: boolean | undefined;
|
|
46
|
+
showTitle: boolean | undefined;
|
|
47
|
+
showAskButton: boolean | undefined;
|
|
48
|
+
showWriteButton: boolean | undefined;
|
|
49
|
+
showLinkButton: boolean | undefined;
|
|
50
|
+
showNoQuestionsBtn: boolean | undefined;
|
|
51
|
+
initialPageSize: number | undefined;
|
|
52
|
+
type: "question" | "article" | "link" | undefined;
|
|
53
|
+
view: "grid" | "list" | undefined;
|
|
54
|
+
} & {
|
|
47
55
|
path: string | undefined;
|
|
48
56
|
title: string | undefined;
|
|
49
57
|
filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
50
58
|
group: string | false | undefined;
|
|
51
59
|
};
|
|
52
60
|
configInput: {
|
|
61
|
+
type?: "question" | "article" | "link" | undefined;
|
|
62
|
+
view?: "grid" | "list" | undefined;
|
|
63
|
+
showNoQuestionsBtn?: boolean | undefined;
|
|
64
|
+
initialPageSize?: number | undefined;
|
|
65
|
+
showFilters?: boolean | undefined;
|
|
66
|
+
showTitle?: boolean | undefined;
|
|
67
|
+
showAskButton?: boolean | undefined;
|
|
68
|
+
showWriteButton?: boolean | undefined;
|
|
69
|
+
showLinkButton?: boolean | undefined;
|
|
70
|
+
} & {
|
|
53
71
|
filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
54
72
|
title?: string | undefined;
|
|
55
73
|
path?: string | undefined;
|
|
56
74
|
group?: string | false | undefined;
|
|
57
75
|
};
|
|
58
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
76
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
59
77
|
optional: true;
|
|
60
78
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
|
|
61
79
|
optional: true;
|
|
@@ -64,7 +82,16 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
64
82
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
65
83
|
optional: true;
|
|
66
84
|
}>;
|
|
67
|
-
inputs: {
|
|
85
|
+
inputs: {
|
|
86
|
+
[x: string]: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ExtensionDataRef<unknown, string, {
|
|
87
|
+
optional?: true;
|
|
88
|
+
}>, {
|
|
89
|
+
optional: boolean;
|
|
90
|
+
singleton: boolean;
|
|
91
|
+
}>;
|
|
92
|
+
};
|
|
93
|
+
kind: "entity-content";
|
|
94
|
+
name: "entity-posts-content";
|
|
68
95
|
params: {
|
|
69
96
|
defaultPath?: [Error: `Use the 'path' param instead`];
|
|
70
97
|
path: string;
|
|
@@ -95,18 +122,39 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
95
122
|
};
|
|
96
123
|
}>;
|
|
97
124
|
"page:qeta": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
98
|
-
kind: "page";
|
|
99
|
-
name: undefined;
|
|
100
125
|
config: {
|
|
126
|
+
subtitle: string | undefined;
|
|
127
|
+
themeId: string | undefined;
|
|
128
|
+
headerTooltip: string | undefined;
|
|
129
|
+
headerType: string | undefined;
|
|
130
|
+
headerTypeLink: string | undefined;
|
|
131
|
+
} & {
|
|
101
132
|
path: string | undefined;
|
|
102
133
|
};
|
|
103
134
|
configInput: {
|
|
135
|
+
subtitle?: string | undefined;
|
|
136
|
+
themeId?: string | undefined;
|
|
137
|
+
headerTooltip?: string | undefined;
|
|
138
|
+
headerType?: string | undefined;
|
|
139
|
+
headerTypeLink?: string | undefined;
|
|
140
|
+
} & {
|
|
104
141
|
path?: string | undefined;
|
|
105
142
|
};
|
|
106
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
143
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
107
144
|
optional: true;
|
|
108
145
|
}>;
|
|
109
|
-
inputs: {
|
|
146
|
+
inputs: {
|
|
147
|
+
introElement: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<react.JSX.Element, "core.reactElement", {}>, {
|
|
148
|
+
singleton: true;
|
|
149
|
+
optional: true;
|
|
150
|
+
}>;
|
|
151
|
+
headerElements: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<react.JSX.Element, "core.reactElement", {}>, {
|
|
152
|
+
singleton: false;
|
|
153
|
+
optional: true;
|
|
154
|
+
}>;
|
|
155
|
+
};
|
|
156
|
+
kind: "page";
|
|
157
|
+
name: undefined;
|
|
110
158
|
params: {
|
|
111
159
|
defaultPath?: [Error: `Use the 'path' param instead`];
|
|
112
160
|
path: string;
|
package/dist/alpha.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
|
-
import { ApiBlueprint, PageBlueprint, NavItemBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
2
|
+
import { ApiBlueprint, PageBlueprint, createExtensionInput, coreExtensionData, NavItemBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
3
3
|
import { convertLegacyRouteRef, compatWrapper, convertLegacyRouteRefs } from '@backstage/core-compat-api';
|
|
4
4
|
import { qetaApiRef, qetaRouteRef } from '@drodil/backstage-plugin-qeta-react';
|
|
5
5
|
export { qetaTranslationRef } from '@drodil/backstage-plugin-qeta-react';
|
|
@@ -20,21 +20,74 @@ const qetaApi = ApiBlueprint.make({
|
|
|
20
20
|
}
|
|
21
21
|
})
|
|
22
22
|
});
|
|
23
|
-
const qetaPage = PageBlueprint.
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
23
|
+
const qetaPage = PageBlueprint.makeWithOverrides({
|
|
24
|
+
config: {
|
|
25
|
+
schema: {
|
|
26
|
+
subtitle: (z) => z.string().optional(),
|
|
27
|
+
themeId: (z) => z.string().optional(),
|
|
28
|
+
headerTooltip: (z) => z.string().optional(),
|
|
29
|
+
headerType: (z) => z.string().optional(),
|
|
30
|
+
headerTypeLink: (z) => z.string().optional()
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
inputs: {
|
|
34
|
+
introElement: createExtensionInput([coreExtensionData.reactElement], {
|
|
35
|
+
singleton: true,
|
|
36
|
+
optional: true
|
|
37
|
+
}),
|
|
38
|
+
headerElements: createExtensionInput([coreExtensionData.reactElement], {
|
|
39
|
+
singleton: false,
|
|
40
|
+
optional: true
|
|
41
|
+
})
|
|
42
|
+
},
|
|
43
|
+
factory: (originalFactory, { config, inputs }) => {
|
|
44
|
+
const introElement = inputs.introElement?.get(
|
|
45
|
+
coreExtensionData.reactElement
|
|
46
|
+
);
|
|
47
|
+
const headerElements = inputs.headerElements.map(
|
|
48
|
+
(e) => e.get(coreExtensionData.reactElement)
|
|
49
|
+
);
|
|
50
|
+
return originalFactory({
|
|
51
|
+
path: config.path ?? "/qeta",
|
|
52
|
+
routeRef: convertLegacyRouteRef(qetaRouteRef),
|
|
53
|
+
loader: () => import('./components/QetaPage/index.esm.js').then(
|
|
54
|
+
(m) => compatWrapper(
|
|
55
|
+
/* @__PURE__ */ jsx(
|
|
56
|
+
m.QetaPage,
|
|
57
|
+
{
|
|
58
|
+
...config,
|
|
59
|
+
introElement,
|
|
60
|
+
headerElements
|
|
61
|
+
}
|
|
62
|
+
)
|
|
63
|
+
)
|
|
64
|
+
)
|
|
65
|
+
});
|
|
28
66
|
}
|
|
29
67
|
});
|
|
30
|
-
const EntityPostsContent = EntityContentBlueprint.
|
|
68
|
+
const EntityPostsContent = EntityContentBlueprint.makeWithOverrides({
|
|
31
69
|
name: "entity-posts-content",
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
(
|
|
37
|
-
|
|
70
|
+
config: {
|
|
71
|
+
schema: {
|
|
72
|
+
showFilters: (z) => z.boolean().optional(),
|
|
73
|
+
showTitle: (z) => z.boolean().optional(),
|
|
74
|
+
showAskButton: (z) => z.boolean().optional(),
|
|
75
|
+
showWriteButton: (z) => z.boolean().optional(),
|
|
76
|
+
showLinkButton: (z) => z.boolean().optional(),
|
|
77
|
+
showNoQuestionsBtn: (z) => z.boolean().optional(),
|
|
78
|
+
initialPageSize: (z) => z.number().optional(),
|
|
79
|
+
type: (z) => z.enum(["question", "article", "link"]).optional(),
|
|
80
|
+
view: (z) => z.enum(["list", "grid"]).optional()
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
factory: (originalFactory, { config }) => {
|
|
84
|
+
return originalFactory({
|
|
85
|
+
path: config.path ?? "/qeta",
|
|
86
|
+
title: config.title ?? "Q&A",
|
|
87
|
+
loader: async () => import('./components/EntityPostsContent/EntityPostsContent.esm.js').then(
|
|
88
|
+
(m) => compatWrapper(/* @__PURE__ */ jsx(m.EntityPostsContent, { ...config }))
|
|
89
|
+
)
|
|
90
|
+
});
|
|
38
91
|
}
|
|
39
92
|
});
|
|
40
93
|
const qetaNavItem = NavItemBlueprint.make({
|
package/dist/alpha.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.tsx"],"sourcesContent":["import {\n ApiBlueprint,\n createFrontendPlugin,\n NavItemBlueprint,\n PageBlueprint,\n} from '@backstage/frontend-plugin-api';\nimport {\n compatWrapper,\n convertLegacyRouteRef,\n convertLegacyRouteRefs,\n} from '@backstage/core-compat-api';\nimport { qetaApiRef, qetaRouteRef } from '@drodil/backstage-plugin-qeta-react';\nimport { discoveryApiRef, fetchApiRef } from '@backstage/core-plugin-api';\nimport { QetaClient } from '@drodil/backstage-plugin-qeta-common';\nimport LiveHelpIcon from '@material-ui/icons/LiveHelp';\nimport { EntityContentBlueprint } from '@backstage/plugin-catalog-react/alpha';\n\nconst qetaApi = ApiBlueprint.make({\n params: defineParams =>\n defineParams({\n api: qetaApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory({ discoveryApi, fetchApi }) {\n return new QetaClient({ discoveryApi, fetchApi });\n },\n }),\n});\n\nconst qetaPage = PageBlueprint.
|
|
1
|
+
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.tsx"],"sourcesContent":["import {\n ApiBlueprint,\n coreExtensionData,\n createExtensionInput,\n createFrontendPlugin,\n NavItemBlueprint,\n PageBlueprint,\n} from '@backstage/frontend-plugin-api';\nimport {\n compatWrapper,\n convertLegacyRouteRef,\n convertLegacyRouteRefs,\n} from '@backstage/core-compat-api';\nimport { qetaApiRef, qetaRouteRef } from '@drodil/backstage-plugin-qeta-react';\nimport { discoveryApiRef, fetchApiRef } from '@backstage/core-plugin-api';\nimport { QetaClient } from '@drodil/backstage-plugin-qeta-common';\nimport LiveHelpIcon from '@material-ui/icons/LiveHelp';\nimport { EntityContentBlueprint } from '@backstage/plugin-catalog-react/alpha';\n\nconst qetaApi = ApiBlueprint.make({\n params: defineParams =>\n defineParams({\n api: qetaApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory({ discoveryApi, fetchApi }) {\n return new QetaClient({ discoveryApi, fetchApi });\n },\n }),\n});\n\nconst qetaPage = PageBlueprint.makeWithOverrides({\n config: {\n schema: {\n subtitle: z => z.string().optional(),\n themeId: z => z.string().optional(),\n headerTooltip: z => z.string().optional(),\n headerType: z => z.string().optional(),\n headerTypeLink: z => z.string().optional(),\n },\n },\n inputs: {\n introElement: createExtensionInput([coreExtensionData.reactElement], {\n singleton: true,\n optional: true,\n }),\n headerElements: createExtensionInput([coreExtensionData.reactElement], {\n singleton: false,\n optional: true,\n }),\n },\n factory: (originalFactory, { config, inputs }) => {\n const introElement = inputs.introElement?.get(\n coreExtensionData.reactElement,\n );\n const headerElements = inputs.headerElements.map(e =>\n e.get(coreExtensionData.reactElement),\n );\n return originalFactory({\n path: config.path ?? '/qeta',\n routeRef: convertLegacyRouteRef(qetaRouteRef),\n loader: () =>\n import('./components/QetaPage').then(m =>\n compatWrapper(\n <m.QetaPage\n {...config}\n introElement={introElement}\n headerElements={headerElements}\n />,\n ),\n ),\n });\n },\n});\n\nconst EntityPostsContent = EntityContentBlueprint.makeWithOverrides({\n name: 'entity-posts-content',\n config: {\n schema: {\n showFilters: z => z.boolean().optional(),\n showTitle: z => z.boolean().optional(),\n showAskButton: z => z.boolean().optional(),\n showWriteButton: z => z.boolean().optional(),\n showLinkButton: z => z.boolean().optional(),\n showNoQuestionsBtn: z => z.boolean().optional(),\n initialPageSize: z => z.number().optional(),\n type: z => z.enum(['question', 'article', 'link']).optional(),\n view: z => z.enum(['list', 'grid']).optional(),\n },\n },\n factory: (originalFactory, { config }) => {\n return originalFactory({\n path: config.path ?? '/qeta',\n title: config.title ?? 'Q&A',\n loader: async () =>\n import('./components/EntityPostsContent/EntityPostsContent.tsx').then(\n m => compatWrapper(<m.EntityPostsContent {...config} />),\n ),\n });\n },\n});\n\n/** @alpha */\nexport const qetaNavItem = NavItemBlueprint.make({\n params: {\n title: 'Q&A',\n routeRef: convertLegacyRouteRef(qetaRouteRef),\n icon: LiveHelpIcon,\n },\n});\n\n/**\n * Backstage frontend plugin.\n *\n * @alpha\n */\nexport default createFrontendPlugin({\n pluginId: 'qeta',\n info: { packageJson: () => import('../package.json') },\n routes: convertLegacyRouteRefs({\n root: qetaRouteRef,\n }),\n extensions: [qetaApi, qetaPage, EntityPostsContent, qetaNavItem],\n});\n\nexport { qetaTranslationRef } from '@drodil/backstage-plugin-qeta-react';\n"],"names":[],"mappings":"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"}
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"frontend",
|
|
8
8
|
"backstage.io"
|
|
9
9
|
],
|
|
10
|
-
"version": "3.
|
|
10
|
+
"version": "3.37.0",
|
|
11
11
|
"main": "./dist/index.esm.js",
|
|
12
12
|
"types": "./dist/index.d.ts",
|
|
13
13
|
"prepublishOnly": "yarn tsc && yarn build",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"@backstage/plugin-search-common": "^1.2.19",
|
|
84
84
|
"@backstage/plugin-search-react": "^1.9.4",
|
|
85
85
|
"@backstage/plugin-signals-react": "^0.0.15",
|
|
86
|
-
"@drodil/backstage-plugin-qeta-common": "^3.
|
|
87
|
-
"@drodil/backstage-plugin-qeta-react": "^3.
|
|
86
|
+
"@drodil/backstage-plugin-qeta-common": "^3.37.0",
|
|
87
|
+
"@drodil/backstage-plugin-qeta-react": "^3.37.0",
|
|
88
88
|
"@material-ui/core": "^4.12.2",
|
|
89
89
|
"@material-ui/icons": "^4.11.3",
|
|
90
90
|
"@material-ui/lab": "4.0.0-alpha.61",
|