mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-22 00:37:05 +08:00
**Directory Structure Changes** - Renamed multiple block-related directories by removing the "block-" prefix: - `block-attachment` → `attachment` - `block-bookmark` → `bookmark` - `block-callout` → `callout` - `block-code` → `code` - `block-data-view` → `data-view` - `block-database` → `database` - `block-divider` → `divider` - `block-edgeless-text` → `edgeless-text` - `block-embed` → `embed`
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import {
|
|
DarkLoadingIcon,
|
|
EmbedCardDarkBannerIcon,
|
|
EmbedCardDarkCubeIcon,
|
|
EmbedCardDarkHorizontalIcon,
|
|
EmbedCardDarkListIcon,
|
|
EmbedCardDarkVerticalIcon,
|
|
EmbedCardLightBannerIcon,
|
|
EmbedCardLightCubeIcon,
|
|
EmbedCardLightHorizontalIcon,
|
|
EmbedCardLightListIcon,
|
|
EmbedCardLightVerticalIcon,
|
|
LightLoadingIcon,
|
|
} from '@blocksuite/affine-components/icons';
|
|
import { ColorScheme } from '@blocksuite/affine-model';
|
|
import type { TemplateResult } from 'lit';
|
|
|
|
type EmbedCardIcons = {
|
|
LoadingIcon: TemplateResult<1>;
|
|
EmbedCardBannerIcon: TemplateResult<1>;
|
|
EmbedCardHorizontalIcon: TemplateResult<1>;
|
|
EmbedCardListIcon: TemplateResult<1>;
|
|
EmbedCardVerticalIcon: TemplateResult<1>;
|
|
EmbedCardCubeIcon: TemplateResult<1>;
|
|
};
|
|
|
|
export function getEmbedCardIcons(theme: ColorScheme): EmbedCardIcons {
|
|
if (theme === ColorScheme.Light) {
|
|
return {
|
|
LoadingIcon: LightLoadingIcon,
|
|
EmbedCardBannerIcon: EmbedCardLightBannerIcon,
|
|
EmbedCardHorizontalIcon: EmbedCardLightHorizontalIcon,
|
|
EmbedCardListIcon: EmbedCardLightListIcon,
|
|
EmbedCardVerticalIcon: EmbedCardLightVerticalIcon,
|
|
EmbedCardCubeIcon: EmbedCardLightCubeIcon,
|
|
};
|
|
} else {
|
|
return {
|
|
LoadingIcon: DarkLoadingIcon,
|
|
EmbedCardBannerIcon: EmbedCardDarkBannerIcon,
|
|
EmbedCardHorizontalIcon: EmbedCardDarkHorizontalIcon,
|
|
EmbedCardListIcon: EmbedCardDarkListIcon,
|
|
EmbedCardVerticalIcon: EmbedCardDarkVerticalIcon,
|
|
EmbedCardCubeIcon: EmbedCardDarkCubeIcon,
|
|
};
|
|
}
|
|
}
|