Showcases

Showcases are pre-configured variations of a section. When merchants add a section to a page through the Instant Site Editor, they see showcases as selectable presets — each with different default content, design values, and optionally a specific layout. Showcases let you demonstrate multiple visual styles for the same section.

Folder Structure

Showcase files live in the showcases/ directory alongside your section files:

sections/<section-name>/showcases/
├── 1.ts               # First showcase
├── 2.ts               # Second showcase
├── 3.ts               # Third showcase
└── translations.ts    # Showcase-specific translations
circle-info

Naming Convention

Both the filename and showcaseId are user-defined strings. The showcaseId is the identifier used throughout the product to reference a specific showcase.

Showcase Properties

Each showcase is created using the showcase.init() factory:

import { showcase } from '@lightspeed/crane-api';
Property
Type
Required
Description

showcaseId

string

Yes

Unique identifier for this showcase

blockName

string

Yes

Display name in the editor (translation key)

previewImage

object

Yes

Preview thumbnail shown in the editor

content

Record<string, ContentEditorDefaults>

Yes

Content default overrides

design

Record<string, DesignEditorDefaults>

Yes

Design default overrides

layoutId

string

No

Selects a specific Layout

Preview Image

The previewImage object has the same structure as the IMAGE editor's imageData — a set with at least one image resolution key, and an optional borderInfo:

Image URLs reference files in the section's assets/ directory.

Content and Design Defaults

The content and design records provide default values for the section's fields. Keys must match those defined in your content.ts and design.ts files.

Use the content.default.*() and design.default.*() factories to create these defaults:

DECK in Showcases

For DECK editors, showcase defaults provide a cards array where each card has a settings record matching the deck's defaultCardContent.settings keys:

Showcase Translations

Showcase-specific translations live in a separate translations.ts file inside the showcases/ directory. This file follows the same format as settings translations — a record keyed by language code:

Showcase Overrides

Showcases can also be overridden at the template page level using showcase_overrides on custom sections. This allows a template to reuse a section but adjust its showcase defaults without creating a new showcase file. See Templates — Pages for details.

Validation

Crane validates showcases at build time. The following rules are enforced:

Content Validation

  • Every key in content must exist in the section's content.ts. Unknown keys produce: "Element is not defined in content.ts."

  • Editor types must match between showcase and content.ts. Mismatches produce: "Element type mismatch: showcase has type X but content.ts has type Y."

  • Selectbox default values must match one of the options defined in content.ts. Invalid values produce: "Option value is not defined in content.ts options."

  • DECK card settings keys must exist in content.ts defaultCardContent.settings. Invalid keys produce: "Setting is not defined in content.ts defaultCardContent.settings."

Design Validation

  • Every key in design must exist in the section's design.ts. Unknown keys produce: "Element is not defined in design.ts."

  • Editor types must match between showcase and design.ts. Mismatches produce: "Element type mismatch: showcase has type X but design.ts has type Y."

Layout Validation

  • If layoutId is specified, it must match a layout defined in the section's layout.ts. Invalid IDs produce: "LayoutId must exist in section's layout configuration file."

Asset Validation

  • Image URLs in showcase content must reference files that exist in the section's assets/ directory. Missing images produce: "Image is missing from assets folder."

Last updated

Was this helpful?