Merge pull request #11596 from jsundquist/feat/sentry/add-check-for-available

feat(sentry): adding a check if sentry is available
This commit is contained in:
Johan Haals
2022-05-31 10:35:54 +02:00
committed by GitHub
4 changed files with 34 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-sentry': patch
---
Exported `isSentryAvailable` which can be used to determine if sentry is available.
+3
View File
@@ -31,6 +31,9 @@ export const EntitySentryContent: ({
tableOptions,
}: SentryPageProps) => JSX.Element;
// @public
export const isSentryAvailable: (entity: Entity) => boolean;
// Warning: (ae-missing-release-tag) "MockSentryApi" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
+1
View File
@@ -15,3 +15,4 @@
*/
export * from './SentryIssuesWidget';
export { isSentryAvailable } from './isSentryAvailable';
@@ -0,0 +1,25 @@
/*
* Copyright 2020 The Backstage Authors
*
* 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 { Entity } from '@backstage/catalog-model';
import { SENTRY_PROJECT_SLUG_ANNOTATION } from './useProjectSlug';
/**
* @public
* Checks to see if sentry is available
*/
export const isSentryAvailable = (entity: Entity) =>
Boolean(entity.metadata.annotations?.[SENTRY_PROJECT_SLUG_ANNOTATION]);