* Add 80+ additional icons from FontAwesome * fix: color switch transition, add 6 more icons to fill out grid * Add strict validation for collection icon * fix: Avoid import from app in server
58 lines
1.7 KiB
TypeScript
58 lines
1.7 KiB
TypeScript
import { observer } from "mobx-react";
|
|
import { CollectionIcon } from "outline-icons";
|
|
import { getLuminance } from "polished";
|
|
import * as React from "react";
|
|
import { IconLibrary } from "@shared/utils/IconLibrary";
|
|
import Collection from "~/models/Collection";
|
|
import useStores from "~/hooks/useStores";
|
|
import Logger from "~/utils/Logger";
|
|
|
|
type Props = {
|
|
/** The collection to show an icon for */
|
|
collection: Collection;
|
|
/** Whether the icon should be the "expanded" graphic when displaying the default collection icon */
|
|
expanded?: boolean;
|
|
/** The size of the icon, 24px is default to match standard icons */
|
|
size?: number;
|
|
/** The color of the icon, defaults to the collection color */
|
|
color?: string;
|
|
};
|
|
|
|
function ResolvedCollectionIcon({
|
|
collection,
|
|
color: inputColor,
|
|
expanded,
|
|
size,
|
|
}: Props) {
|
|
const { ui } = useStores();
|
|
|
|
// If the chosen icon color is very dark then we invert it in dark mode
|
|
// otherwise it will be impossible to see against the dark background.
|
|
const color =
|
|
inputColor ||
|
|
(ui.resolvedTheme === "dark" && collection.color !== "currentColor"
|
|
? getLuminance(collection.color) > 0.09
|
|
? collection.color
|
|
: "currentColor"
|
|
: collection.color);
|
|
|
|
if (collection.icon && collection.icon !== "collection") {
|
|
try {
|
|
const Component = IconLibrary.getComponent(collection.icon);
|
|
return (
|
|
<Component color={color} size={size}>
|
|
{collection.initial}
|
|
</Component>
|
|
);
|
|
} catch (error) {
|
|
Logger.warn("Failed to render custom icon", {
|
|
icon: collection.icon,
|
|
});
|
|
}
|
|
}
|
|
|
|
return <CollectionIcon color={color} expanded={expanded} size={size} />;
|
|
}
|
|
|
|
export default observer(ResolvedCollectionIcon);
|