sentry: port to new composability API

Co-authored-by: blam <ben@blam.sh>
This commit is contained in:
Patrik Oldsberg
2020-12-23 18:32:59 +01:00
parent 920b5a4f54
commit 29afabd440
4 changed files with 61 additions and 0 deletions
+1
View File
@@ -33,6 +33,7 @@
"dependencies": {
"@backstage/catalog-model": "^0.6.0",
"@backstage/core": "^0.4.2",
"@backstage/plugin-catalog": "^0.2.8",
"@backstage/theme": "^0.2.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
+56
View File
@@ -0,0 +1,56 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import {
createComponentExtension,
createRoutableExtension,
} from '@backstage/core';
import { useEntity } from '@backstage/plugin-catalog';
import { plugin, rootRouteRef } from './plugin';
export const EntitySentryContent = plugin.provide(
createRoutableExtension({
mountPoint: rootRouteRef,
component: () =>
import('./components/SentryIssuesWidget').then(
({ SentryIssuesWidget }) => {
const SentryPage = () => {
const { entity } = useEntity();
return <SentryIssuesWidget entity={entity} statsFor="24h" />;
};
return SentryPage;
},
),
}),
);
export const EntitySentryCard = plugin.provide(
createComponentExtension({
component: {
lazy: () =>
import('./components/SentryIssuesWidget').then(
({ SentryIssuesWidget }) => {
const SentryCard = () => {
const { entity } = useEntity();
return <SentryIssuesWidget entity={entity} />;
};
return SentryCard;
},
),
},
}),
);
+1
View File
@@ -17,4 +17,5 @@
export * from './api';
export * from './components';
export { plugin } from './plugin';
export { EntitySentryCard, EntitySentryContent } from './extensions';
export { Router } from './components/Router';
+3
View File
@@ -41,4 +41,7 @@ export const plugin = createPlugin({
),
}),
],
routes: {
root: rootRouteRef,
},
});