Files
outline/app/components/PluginIcon.tsx
Tom Moor 3d0160463c chore: Refactor client plugin management (#7053)
* Update clientside plugin management to work as server

* docs

* tsc

* Rebase main
2024-06-16 08:11:26 -07:00

44 lines
945 B
TypeScript

import { observer } from "mobx-react";
import * as React from "react";
import styled from "styled-components";
import Logger from "~/utils/Logger";
import { Hook, usePluginValue } from "~/utils/PluginManager";
type Props = {
/** The ID of the plugin to render an Icon for. */
id: string;
/** The size of the icon. */
size?: number;
/** The color of the icon. */
color?: string;
};
/**
* Renders an icon defined in a plugin (Hook.Icon).
*/
function PluginIcon({ id, color, size = 24 }: Props) {
const Icon = usePluginValue(Hook.Icon, id);
if (Icon) {
return (
<IconPosition>
<Icon size={size} fill={color} />
</IconPosition>
);
}
Logger.warn("No Icon registered for plugin", { id });
return null;
}
const IconPosition = styled.div`
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 24px;
height: 24px;
`;
export default observer(PluginIcon);