d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
56 lines
2.1 KiB
TypeScript
56 lines
2.1 KiB
TypeScript
'use client'
|
|
|
|
import { memo, type SVGProps } from 'react'
|
|
import { cn } from '@sim/emcn'
|
|
import { Box } from 'lucide-react'
|
|
import type { BlockIcon } from '@/blocks/types'
|
|
|
|
/**
|
|
* Build a `BlockIcon` from an uploaded icon image URL. Rendered as an `<img>` so
|
|
* any uploaded PNG/JPEG/SVG works; `className` (size) is forwarded like every
|
|
* other block icon. Cached by URL so the component reference stays stable across
|
|
* the many tiles/nodes that render a custom block.
|
|
*/
|
|
const cache = new Map<string, BlockIcon>()
|
|
|
|
export function makeImageIcon(url: string): BlockIcon {
|
|
const cached = cache.get(url)
|
|
if (cached) return cached
|
|
|
|
// Fill the tile so an uploaded image/logo reads at the same footprint as other
|
|
// blocks' colored tiles, instead of a small glyph floating in a transparent
|
|
// square. Trailing `size-full` beats a consumer size *class* (twMerge keeps the
|
|
// last of a conflict group) so a tiled surface (canvas/toolbar/palette) fills;
|
|
// it loses to a consumer inline `style` (specificity) so a tile-less inline
|
|
// surface that sizes via `style={{ width, height }}` still renders at its px.
|
|
const ImageComponent = memo(({ className, style }: SVGProps<SVGSVGElement>) => (
|
|
<img
|
|
src={url}
|
|
alt=''
|
|
style={style}
|
|
className={cn('rounded-[4px] object-contain', className, 'size-full')}
|
|
/>
|
|
))
|
|
// double-cast-allowed: an <img> renderer must satisfy the SVG-typed BlockIcon slot
|
|
const Icon = ImageComponent as unknown as BlockIcon
|
|
|
|
cache.set(url, Icon)
|
|
return Icon
|
|
}
|
|
|
|
/** Fallback icon for custom blocks published without an uploaded image. */
|
|
// double-cast-allowed: a lucide icon component fills the SVG-typed BlockIcon slot
|
|
export const DefaultCustomBlockIcon: BlockIcon = Box as unknown as BlockIcon
|
|
|
|
/**
|
|
* Resolve a custom block's icon: the uploaded image, else the org's whitelabel logo
|
|
* (`fallbackUrl`), else the default glyph.
|
|
*/
|
|
export function getCustomBlockIcon(
|
|
iconUrl: string | null | undefined,
|
|
fallbackUrl?: string | null
|
|
): BlockIcon {
|
|
const url = iconUrl || fallbackUrl
|
|
return url ? makeImageIcon(url) : DefaultCustomBlockIcon
|
|
}
|