feat(core-compat-api): create system icon abstraction

Signed-off-by: Camila Belo <camilaibs@gmail.com>
This commit is contained in:
Camila Belo
2024-02-13 09:57:17 +01:00
parent fdf3917787
commit 0562a7011f
3 changed files with 71 additions and 0 deletions
@@ -0,0 +1,52 @@
/*
* Copyright 2024 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 { useApp } from '@backstage/core-plugin-api';
import React from 'react';
import { compatWrapper } from '../compatWrapper';
/**
* @public
* Props for the System Icon component.
*/
export type SystemIconProps = {
// The id of the system icon to render.
id: string;
// An optional fallback element to render when the system icon is not found.
fallback?: JSX.Element;
};
function SystemIcon(props: SystemIconProps) {
const { id, fallback = null } = props;
const app = useApp();
const Component = app.getSystemIcon(id);
return Component ? <Component /> : fallback;
}
/**
* @public
* SystemIcon is a component that renders a system icon by its id.
* @example
* Rendering the "kind:api" icon:
* ```tsx
* <SystemIcon id="kind:api" />
* ```
*/
function CompatSystemIcon(props: SystemIconProps) {
return compatWrapper(<SystemIcon {...props} />);
}
export { CompatSystemIcon as SystemIcon };
@@ -0,0 +1,17 @@
/*
* Copyright 2024 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.
*/
export { SystemIcon, type SystemIconProps } from './SystemIcon';
+2
View File
@@ -17,6 +17,8 @@ export * from './compatWrapper';
export * from './apis';
export * from './components';
export { convertLegacyApp } from './convertLegacyApp';
export {
convertLegacyRouteRef,