create-skybridge 0.0.0-dev.356dbec → 0.0.0-dev.35a7b38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +353 -157
- package/package.json +9 -7
- package/templates/blank/.dockerignore +4 -0
- package/templates/blank/AGENTS.md +1 -0
- package/templates/blank/Dockerfile +53 -0
- package/templates/blank/README.md +92 -0
- package/templates/blank/_gitignore +7 -0
- package/templates/blank/alpic.json +3 -0
- package/templates/blank/node_modules/.bin/alpic +21 -0
- package/templates/blank/node_modules/.bin/sb +21 -0
- package/templates/blank/node_modules/.bin/skybridge +21 -0
- package/templates/blank/node_modules/.bin/tsc +21 -0
- package/templates/blank/node_modules/.bin/tsserver +21 -0
- package/templates/blank/node_modules/.bin/tsx +21 -0
- package/templates/blank/node_modules/.bin/vite +21 -0
- package/templates/blank/package.json +29 -0
- package/templates/blank/src/helpers.ts +4 -0
- package/templates/blank/src/server.ts +16 -0
- package/templates/blank/tsconfig.json +5 -0
- package/templates/blank/vite.config.ts +6 -0
- package/templates/demo/.dockerignore +4 -0
- package/templates/demo/AGENTS.md +1 -0
- package/templates/demo/Dockerfile +53 -0
- package/templates/demo/README.md +95 -0
- package/templates/demo/_gitignore +7 -0
- package/templates/demo/alpic.json +3 -0
- package/templates/demo/node_modules/.bin/alpic +21 -0
- package/templates/demo/node_modules/.bin/sb +21 -0
- package/templates/demo/node_modules/.bin/skybridge +21 -0
- package/templates/demo/node_modules/.bin/tsc +21 -0
- package/templates/demo/node_modules/.bin/tsserver +21 -0
- package/templates/demo/node_modules/.bin/tsx +21 -0
- package/templates/demo/node_modules/.bin/vite +21 -0
- package/templates/demo/package.json +41 -0
- package/templates/demo/src/helpers.ts +4 -0
- package/templates/demo/src/index.css +59 -0
- package/templates/demo/src/server.ts +94 -0
- package/templates/demo/src/views/components/doc-link.tsx +22 -0
- package/templates/demo/src/views/components/doc.tsx +21 -0
- package/templates/demo/src/views/components/nav.tsx +31 -0
- package/templates/demo/src/views/components/progress.tsx +35 -0
- package/templates/demo/src/views/components/steps/outro.tsx +68 -0
- package/templates/demo/src/views/components/steps/state.tsx +47 -0
- package/templates/demo/src/views/components/steps/tool-call.tsx +53 -0
- package/templates/demo/src/views/components/steps/tool-output.tsx +40 -0
- package/templates/demo/src/views/images/mascot/beret.png +0 -0
- package/templates/demo/src/views/images/mascot/chapka.png +0 -0
- package/templates/demo/src/views/images/mascot/cowboy-hat.png +0 -0
- package/templates/demo/src/views/images/mascot/fez.png +0 -0
- package/templates/demo/src/views/images/mascot/jester-hat.png +0 -0
- package/templates/demo/src/views/images/mascot/mitre.png +0 -0
- package/templates/demo/src/views/images/mascot/non-la.png +0 -0
- package/templates/demo/src/views/images/mascot/original.png +0 -0
- package/templates/demo/src/views/images/mascot/propeller-beanie.png +0 -0
- package/templates/demo/src/views/images/mascot/ski-mask.png +0 -0
- package/templates/demo/src/views/images/mascot/sombrero.png +0 -0
- package/templates/demo/src/views/images/mascot/top-hat.png +0 -0
- package/templates/demo/src/views/images/mascot/viking-helmet.png +0 -0
- package/templates/demo/src/views/onboarding.tsx +63 -0
- package/templates/demo/src/views/use-mascot.ts +60 -0
- package/templates/demo/tsconfig.json +11 -0
- package/{template/web → templates/demo}/vite.config.ts +3 -4
- package/templates/ecom/.dockerignore +4 -0
- package/templates/ecom/.env.template +2 -0
- package/templates/ecom/.ladle/components.tsx +26 -0
- package/templates/ecom/.ladle/config.mjs +11 -0
- package/templates/ecom/.ladle/vite.config.ts +11 -0
- package/templates/ecom/AGENTS.md +2 -0
- package/templates/ecom/Dockerfile +53 -0
- package/templates/ecom/README.md +92 -0
- package/templates/ecom/_gitignore +9 -0
- package/templates/ecom/alpic.json +3 -0
- package/templates/ecom/node_modules/.bin/alpic +21 -0
- package/templates/ecom/node_modules/.bin/ladle +21 -0
- package/templates/ecom/node_modules/.bin/sb +21 -0
- package/templates/ecom/node_modules/.bin/skybridge +21 -0
- package/templates/ecom/node_modules/.bin/tsc +21 -0
- package/templates/ecom/node_modules/.bin/tsserver +21 -0
- package/templates/ecom/node_modules/.bin/tsx +21 -0
- package/templates/ecom/node_modules/.bin/vite +21 -0
- package/templates/ecom/package.json +41 -0
- package/templates/ecom/src/components/chip.css.ts +56 -0
- package/templates/ecom/src/components/chip.stories.tsx +26 -0
- package/templates/ecom/src/components/chip.tsx +41 -0
- package/templates/ecom/src/components/empty-state.stories.tsx +3 -0
- package/templates/ecom/src/components/empty-state.tsx +12 -0
- package/templates/ecom/src/components/expandable-text.css.ts +49 -0
- package/templates/ecom/src/components/expandable-text.stories.tsx +20 -0
- package/templates/ecom/src/components/expandable-text.tsx +53 -0
- package/templates/ecom/src/components/image-gallery.css.ts +172 -0
- package/templates/ecom/src/components/image-gallery.stories.tsx +30 -0
- package/templates/ecom/src/components/image-gallery.tsx +162 -0
- package/templates/ecom/src/components/product-card.css.ts +155 -0
- package/templates/ecom/src/components/product-card.stories.tsx +58 -0
- package/templates/ecom/src/components/product-card.tsx +101 -0
- package/templates/ecom/src/components/product-carousel.css.ts +134 -0
- package/templates/ecom/src/components/product-carousel.stories.tsx +64 -0
- package/templates/ecom/src/components/product-carousel.tsx +202 -0
- package/templates/ecom/src/components/variant-picker.css.ts +27 -0
- package/templates/ecom/src/components/variant-picker.stories.tsx +64 -0
- package/templates/ecom/src/components/variant-picker.tsx +82 -0
- package/templates/ecom/src/components/view-frame.css.ts +22 -0
- package/templates/ecom/src/components/view-frame.tsx +27 -0
- package/templates/ecom/src/config.ts +12 -0
- package/templates/ecom/src/design/contract.css.ts +39 -0
- package/templates/ecom/src/design/fonts.css +15 -0
- package/templates/ecom/src/design/primitives.css.ts +101 -0
- package/templates/ecom/src/design/recipes/typography.css.ts +75 -0
- package/templates/ecom/src/design/sprinkles.css.ts +128 -0
- package/templates/ecom/src/design/themes/dark.css.ts +36 -0
- package/templates/ecom/src/design/themes/light.css.ts +36 -0
- package/templates/ecom/src/design/tokens.ts +8 -0
- package/templates/ecom/src/helpers.ts +4 -0
- package/templates/ecom/src/i18n.ts +34 -0
- package/templates/ecom/src/index.css +9 -0
- package/templates/ecom/src/lib/cx.ts +9 -0
- package/templates/ecom/src/lib/format.ts +9 -0
- package/templates/ecom/src/lib/variants.ts +79 -0
- package/templates/ecom/src/server.ts +43 -0
- package/templates/ecom/src/tools/render-carousel.ts +242 -0
- package/templates/ecom/src/tools/search-products.ts +182 -0
- package/templates/ecom/src/types.ts +13 -0
- package/templates/ecom/src/views/carousel/detail/detail.css.ts +100 -0
- package/templates/ecom/src/views/carousel/detail/detail.stories.tsx +114 -0
- package/templates/ecom/src/views/carousel/detail/index.tsx +215 -0
- package/templates/ecom/src/views/carousel/index.tsx +234 -0
- package/templates/ecom/tsconfig.json +11 -0
- package/templates/ecom/vite.config.ts +8 -0
- package/dist/index.test.d.ts +0 -1
- package/dist/index.test.js +0 -23
- package/template/README.md +0 -77
- package/template/_gitignore +0 -4
- package/template/alpic.json +0 -4
- package/template/node_modules/.bin/mcp-inspector +0 -21
- package/template/node_modules/.bin/nodemon +0 -21
- package/template/node_modules/.bin/shx +0 -21
- package/template/node_modules/.bin/tsc +0 -21
- package/template/node_modules/.bin/tsserver +0 -21
- package/template/node_modules/.bin/tsx +0 -21
- package/template/node_modules/.bin/vite +0 -21
- package/template/nodemon.json +0 -5
- package/template/package.json +0 -42
- package/template/server/src/index.ts +0 -39
- package/template/server/src/middleware.ts +0 -54
- package/template/server/src/server.ts +0 -61
- package/template/tsconfig.json +0 -23
- package/template/tsconfig.server.json +0 -11
- package/template/web/src/helpers.ts +0 -4
- package/template/web/src/index.css +0 -31
- package/template/web/src/widgets/magic-8-ball.tsx +0 -24
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import {
|
|
3
|
+
CAROUSEL_MAX_SIZE,
|
|
4
|
+
CAROUSEL_RANGE,
|
|
5
|
+
MIN_SEARCH_ITERATIONS,
|
|
6
|
+
} from "../config.js";
|
|
7
|
+
import { AttributeSchema, PriceSchema } from "../types.js";
|
|
8
|
+
|
|
9
|
+
// The `search-products` tool: keyword + filters in, matching products out as
|
|
10
|
+
// structured output for the model. It has NO view — include only what the model
|
|
11
|
+
// needs to curate (ids + properties), never presentational data (images, media);
|
|
12
|
+
// render-carousel handles that. Everything this tool needs lives in this file.
|
|
13
|
+
|
|
14
|
+
// ---------------------------------------------------------------------------
|
|
15
|
+
// Input
|
|
16
|
+
// ---------------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
const inputSchema = {
|
|
19
|
+
// @todo: tune this guidance to your catalog's vocabulary. The model reads
|
|
20
|
+
// it to turn conversational input into a good keyword.
|
|
21
|
+
keyword: z.string().describe(
|
|
22
|
+
`\
|
|
23
|
+
Short noun phrases extracted from conversational input. Never pass full sentences. \
|
|
24
|
+
ALWAYS use the singular form, not the plural. \
|
|
25
|
+
Include color, material, and style descriptors for accuracy. \
|
|
26
|
+
For vague gift or occasion queries without a clear product type, use broad category terms. \
|
|
27
|
+
Preserve the existing keyword across filter refinements; only replace when the user makes a completely different request.`,
|
|
28
|
+
),
|
|
29
|
+
|
|
30
|
+
// @todo: set the sort options your backend supports (or remove).
|
|
31
|
+
sort: z.enum(["price-asc", "price-desc"]).optional().describe("Sort order."),
|
|
32
|
+
|
|
33
|
+
// @todo: declare the filters your catalog supports. Add one param per
|
|
34
|
+
// facet (category, color, size...), each optional so the model only sends
|
|
35
|
+
// what the user asked for. `priceRange` below is just an example, remove it.
|
|
36
|
+
priceRange: z
|
|
37
|
+
.string()
|
|
38
|
+
.optional()
|
|
39
|
+
.describe(
|
|
40
|
+
"Price range in dollars. Format: 'min-max' e.g. '0-500', '1000-2000'.",
|
|
41
|
+
),
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
type SearchInput = z.infer<z.ZodObject<typeof inputSchema>>;
|
|
45
|
+
|
|
46
|
+
// ---------------------------------------------------------------------------
|
|
47
|
+
// Output — model-facing grounding, returned in structuredContent.
|
|
48
|
+
// ---------------------------------------------------------------------------
|
|
49
|
+
|
|
50
|
+
const productSchema = z.object({
|
|
51
|
+
id: z.string().describe("Stable product ID; pass to render-carousel."),
|
|
52
|
+
title: z.string(),
|
|
53
|
+
description: z.string().optional(),
|
|
54
|
+
price: PriceSchema.optional(),
|
|
55
|
+
outOfStock: z
|
|
56
|
+
.boolean()
|
|
57
|
+
.optional()
|
|
58
|
+
.describe("True when the product is not purchasable."),
|
|
59
|
+
attributes: z
|
|
60
|
+
.array(AttributeSchema)
|
|
61
|
+
.describe("Facts to curate on (specs, materials, promo labels…)."),
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
const outputSchema = {
|
|
65
|
+
products: z.array(productSchema).describe("Matching products, sorted."),
|
|
66
|
+
pages: z
|
|
67
|
+
.object({
|
|
68
|
+
current: z.number(),
|
|
69
|
+
total: z.number(),
|
|
70
|
+
})
|
|
71
|
+
.optional()
|
|
72
|
+
.describe("Pagination: current page and total page count."),
|
|
73
|
+
totalHits: z
|
|
74
|
+
.number()
|
|
75
|
+
.optional()
|
|
76
|
+
.describe("Total matching products across all pages."),
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
type SearchOutput = z.infer<z.ZodObject<typeof outputSchema>>;
|
|
80
|
+
|
|
81
|
+
// ---------------------------------------------------------------------------
|
|
82
|
+
// Data access
|
|
83
|
+
// ---------------------------------------------------------------------------
|
|
84
|
+
|
|
85
|
+
function search(_input: SearchInput): SearchOutput {
|
|
86
|
+
// @todo: plug in your product API / DB. Query it with the input params and map
|
|
87
|
+
// each result into `products` below. `pages` and `totalHits` are optional.
|
|
88
|
+
return {
|
|
89
|
+
products: [], // { id: string; properties: { name: PropertyName; value: string[] }[] }[]
|
|
90
|
+
pages: { current: 1, total: 1 },
|
|
91
|
+
totalHits: 0,
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// ---------------------------------------------------------------------------
|
|
96
|
+
// Narration — framing + next-step instructions for the model. The products
|
|
97
|
+
// themselves ride in structuredContent; this text carries NO result data.
|
|
98
|
+
// @todo: customize the NEXT STEPS guidance below for your flow (keep searching
|
|
99
|
+
// vs. curate and render). Remind the model to ground claims in the structured
|
|
100
|
+
// results and never invent attributes.
|
|
101
|
+
// ---------------------------------------------------------------------------
|
|
102
|
+
|
|
103
|
+
function narrate({ products }: SearchOutput): string {
|
|
104
|
+
const size = products.length;
|
|
105
|
+
|
|
106
|
+
if (size === 0) {
|
|
107
|
+
return `\
|
|
108
|
+
No products found.
|
|
109
|
+
|
|
110
|
+
NEXT STEP: Broaden the keyword or relax filters, then search again.`;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
if (size < CAROUSEL_MAX_SIZE) {
|
|
114
|
+
return `\
|
|
115
|
+
Only a few results.
|
|
116
|
+
|
|
117
|
+
NEXT STEPS:
|
|
118
|
+
1. If the client asked for a specific product by name, these are fine: curate and call render-carousel with the selected IDs.
|
|
119
|
+
2. Otherwise, search again with broader terms before rendering.`;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
return `\
|
|
123
|
+
Enough results to present.
|
|
124
|
+
|
|
125
|
+
NEXT STEPS:
|
|
126
|
+
1. Curate the best matches for the client's intent from the structured results.
|
|
127
|
+
2. Write your recommendation mentioning the selected products.
|
|
128
|
+
3. Call render-carousel with the selected IDs.`;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// ---------------------------------------------------------------------------
|
|
132
|
+
// Tool (registered from server.ts to keep the typed tool chain intact)
|
|
133
|
+
// ---------------------------------------------------------------------------
|
|
134
|
+
|
|
135
|
+
export const searchProductsDefinition = {
|
|
136
|
+
name: "search-products" as const,
|
|
137
|
+
|
|
138
|
+
// @todo: describe YOUR catalog and how the agent should search and curate
|
|
139
|
+
// it. This is the model's main guide: be specific about your categories,
|
|
140
|
+
// the multi-call search loop, and when to render vs. keep searching.
|
|
141
|
+
description: `\
|
|
142
|
+
Search the product catalog. Handles any query: specific products, broad categories, gifts, occasions, or open discovery.
|
|
143
|
+
Never assume a category is unavailable: always search before responding.
|
|
144
|
+
|
|
145
|
+
The response is data only: a list of matching products (name, ID, price, description, and any product-specific attributes) plus pagination and the available filters. The raw results are for your eyes only: the client never sees them.
|
|
146
|
+
|
|
147
|
+
NEVER describe or characterize the raw results to the client: do not mention how many there are, what categories they fall into, or that they look off-topic. While searching, stay silent: do not narrate what you are doing, announce searches, or report progress between tool calls. Speak only once the carousel is rendered.
|
|
148
|
+
|
|
149
|
+
Act on the response as follows:
|
|
150
|
+
|
|
151
|
+
- FIRST SEARCH: use the keyword only (plus sort if needed). Read the available filters in the response; these are the only valid filter options for follow-ups.
|
|
152
|
+
- REFINEMENT: if the user's intent matches an available filter, apply it. If it doesn't match any filter, start a new keyword search.
|
|
153
|
+
- ITERATE: a single search is never enough. Run several searches (${MIN_SEARCH_ITERATIONS} minimum) before rendering: vary the keyword, apply a filter, or page deeper, and compare results across them. Quality comes from this multi-call exploration; one call then render gives shallow results.
|
|
154
|
+
- CURATION: read results and pick the best matches for the client's intent, grounding your choice in each product's description. If zero results, broaden the keyword or relax filters and search again: do NOT call render-carousel. If fewer than 3 results and the user didn't ask for a specific product, search again with broader terms. Only after exploring across several searches, call render-carousel with the selected IDs.
|
|
155
|
+
- PRESENT: Once you have ${CAROUSEL_RANGE} distinct, relevant products, call render-carousel with their IDs. Recommend ONLY AFTER the carousel displays, in carousel order.
|
|
156
|
+
|
|
157
|
+
The sweet spot is ${CAROUSEL_RANGE} products.
|
|
158
|
+
`,
|
|
159
|
+
annotations: {
|
|
160
|
+
readOnlyHint: true,
|
|
161
|
+
openWorldHint: false,
|
|
162
|
+
destructiveHint: false,
|
|
163
|
+
},
|
|
164
|
+
|
|
165
|
+
// @todo: customize the status messages shown in ChatGPT while the tool runs.
|
|
166
|
+
_meta: {
|
|
167
|
+
"openai/toolInvocation/invoking": "Searching the catalog",
|
|
168
|
+
"openai/toolInvocation/invoked": "Searched the catalog",
|
|
169
|
+
},
|
|
170
|
+
|
|
171
|
+
inputSchema,
|
|
172
|
+
outputSchema,
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
export function searchProductsHandler(input: SearchInput) {
|
|
176
|
+
const results = search(input);
|
|
177
|
+
return {
|
|
178
|
+
structuredContent: results,
|
|
179
|
+
content: [{ type: "text" as const, text: narrate(results) }],
|
|
180
|
+
isError: false,
|
|
181
|
+
};
|
|
182
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
export const PriceSchema = z.object({
|
|
4
|
+
amount: z.number(),
|
|
5
|
+
currency: z.string(),
|
|
6
|
+
});
|
|
7
|
+
export type Price = z.infer<typeof PriceSchema>;
|
|
8
|
+
|
|
9
|
+
export const AttributeSchema = z.object({
|
|
10
|
+
name: z.string(),
|
|
11
|
+
value: z.string(),
|
|
12
|
+
});
|
|
13
|
+
export type Attribute = z.infer<typeof AttributeSchema>;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { style } from "@vanilla-extract/css";
|
|
2
|
+
import { colors, primitives } from "../../../design/tokens";
|
|
3
|
+
|
|
4
|
+
// Two-column breakpoint. Layout is driven by the pane's own width (container
|
|
5
|
+
// query), never the viewport, so a phone and a resized desktop pane agree.
|
|
6
|
+
const TWO_COLUMN_MIN_WIDTH = "560px";
|
|
7
|
+
|
|
8
|
+
export const detail = style({
|
|
9
|
+
containerType: "inline-size",
|
|
10
|
+
padding: primitives.space.s,
|
|
11
|
+
// Clear the notch / home indicator when the page bleeds to the screen edge.
|
|
12
|
+
paddingBottom: `calc(${primitives.space.s} + env(safe-area-inset-bottom))`,
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
// Single column by default; two columns (gallery | info) once the pane is wide.
|
|
16
|
+
export const grid = style({
|
|
17
|
+
display: "flex",
|
|
18
|
+
flexDirection: "column",
|
|
19
|
+
gap: primitives.space.s,
|
|
20
|
+
maxWidth: "1099px",
|
|
21
|
+
marginInline: "auto",
|
|
22
|
+
"@container": {
|
|
23
|
+
[`(min-width: ${TWO_COLUMN_MIN_WIDTH})`]: {
|
|
24
|
+
display: "grid",
|
|
25
|
+
// `minmax(0, 1fr)` (not `1fr`) lets a column shrink below its content's
|
|
26
|
+
// intrinsic width, so a chip row scrolls/wraps instead of blowing out.
|
|
27
|
+
gridTemplateColumns: "minmax(0, 1fr) minmax(0, 1fr)",
|
|
28
|
+
gridTemplateAreas: '"gallery info"',
|
|
29
|
+
alignItems: "start",
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
export const galleryCell = style({
|
|
35
|
+
"@container": {
|
|
36
|
+
[`(min-width: ${TWO_COLUMN_MIN_WIDTH})`]: {
|
|
37
|
+
gridArea: "gallery",
|
|
38
|
+
position: "sticky",
|
|
39
|
+
top: primitives.space.s,
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
// The info column owns all inter-section spacing; sections set no outer margin.
|
|
45
|
+
export const info = style({
|
|
46
|
+
display: "flex",
|
|
47
|
+
flexDirection: "column",
|
|
48
|
+
gap: primitives.space.xs,
|
|
49
|
+
"@container": {
|
|
50
|
+
[`(min-width: ${TWO_COLUMN_MIN_WIDTH})`]: { gridArea: "info" },
|
|
51
|
+
},
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
export const title = style({ color: colors.content.intense });
|
|
55
|
+
|
|
56
|
+
export const price = style({ color: colors.content.intense });
|
|
57
|
+
|
|
58
|
+
export const oos = style({ color: colors.common.error });
|
|
59
|
+
|
|
60
|
+
export const specs = style({
|
|
61
|
+
display: "flex",
|
|
62
|
+
flexDirection: "column",
|
|
63
|
+
gap: primitives.space["4xs"],
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
export const specRow = style({
|
|
67
|
+
display: "flex",
|
|
68
|
+
justifyContent: "space-between",
|
|
69
|
+
gap: primitives.space.s,
|
|
70
|
+
borderBottom: `${primitives.stroke.thin} solid ${colors.border.thin}`,
|
|
71
|
+
paddingBottom: primitives.space["4xs"],
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
export const specName = style({ color: colors.content.subtle });
|
|
75
|
+
export const specValue = style({
|
|
76
|
+
color: colors.content.intense,
|
|
77
|
+
textAlign: "right",
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
// Primary CTA. @todo: tune to your brand; add a secondary action beside it
|
|
81
|
+
// (ask-the-assistant, contact) as a per-catalog extension.
|
|
82
|
+
export const cta = style({
|
|
83
|
+
minHeight: "44px",
|
|
84
|
+
padding: `${primitives.space["3xs"]} ${primitives.space.s}`,
|
|
85
|
+
borderRadius: primitives.radius.m,
|
|
86
|
+
border: "none",
|
|
87
|
+
backgroundColor: colors.common.accent,
|
|
88
|
+
color: colors.content.invertIntense,
|
|
89
|
+
fontFamily: primitives.font.family.primary,
|
|
90
|
+
fontSize: primitives.font.size.m,
|
|
91
|
+
fontWeight: primitives.font.weight.medium,
|
|
92
|
+
cursor: "pointer",
|
|
93
|
+
selectors: {
|
|
94
|
+
"&:disabled": {
|
|
95
|
+
backgroundColor: colors.surface.intense,
|
|
96
|
+
color: colors.content.subtle,
|
|
97
|
+
cursor: "not-allowed",
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
});
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import type { Product } from "../../../tools/render-carousel.js";
|
|
2
|
+
import { DetailView } from "./index";
|
|
3
|
+
|
|
4
|
+
function shot(fill: string) {
|
|
5
|
+
return `data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Crect width='400' height='400' fill='%23${fill}'/%3E%3Ccircle cx='200' cy='200' r='110' fill='%23ffffff' fill-opacity='0.5'/%3E%3C/svg%3E`;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
// A long media set (primary shot + several accents) so the desktop thumbnail
|
|
9
|
+
// rail is taller than the image and overflows past its bottom.
|
|
10
|
+
const ACCENT_FILLS = [
|
|
11
|
+
"c9d4f5",
|
|
12
|
+
"f5d4c9",
|
|
13
|
+
"d4f5c9",
|
|
14
|
+
"f5f0c9",
|
|
15
|
+
"e0c9f5",
|
|
16
|
+
"c9f5f0",
|
|
17
|
+
"f5c9e0",
|
|
18
|
+
"d9d9d9",
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
function galleryMedia(primaryFill: string): string[] {
|
|
22
|
+
const media = [shot(primaryFill)];
|
|
23
|
+
for (const fill of ACCENT_FILLS) {
|
|
24
|
+
media.push(shot(fill));
|
|
25
|
+
}
|
|
26
|
+
return media;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const DESCRIPTION =
|
|
30
|
+
"A relaxed-fit jacket in water-repellent cotton.\n\nDropped shoulders, a two-way zip, and ribbed cuffs. Fully lined, with two zip pockets at the front and one inside.";
|
|
31
|
+
|
|
32
|
+
// Two axes with a sparse variant set: {black,M}, {black,L}, {sand,M} exist —
|
|
33
|
+
// so choosing "Sand" disables "L".
|
|
34
|
+
function jacket(
|
|
35
|
+
id: string,
|
|
36
|
+
color: string,
|
|
37
|
+
colorLabel: string,
|
|
38
|
+
size: string,
|
|
39
|
+
): Product["variants"][number] {
|
|
40
|
+
return {
|
|
41
|
+
id,
|
|
42
|
+
selection: { color, size },
|
|
43
|
+
title: `Field jacket — ${colorLabel}`,
|
|
44
|
+
description: DESCRIPTION,
|
|
45
|
+
price: { amount: color === "sand" ? 249 : 229, currency: "EUR" },
|
|
46
|
+
media: galleryMedia(color === "sand" ? "d8c7a8" : "2b2b2b"),
|
|
47
|
+
url: "https://example.com/jacket",
|
|
48
|
+
attributes: [
|
|
49
|
+
{ name: "Material", value: "Water-repellent cotton" },
|
|
50
|
+
{ name: "Fit", value: "Relaxed" },
|
|
51
|
+
],
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
const PRODUCT: Product = {
|
|
56
|
+
id: "field-jacket",
|
|
57
|
+
options: [
|
|
58
|
+
{
|
|
59
|
+
id: "color",
|
|
60
|
+
label: "Color",
|
|
61
|
+
values: [
|
|
62
|
+
{ id: "black", label: "Black", media: shot("2b2b2b") },
|
|
63
|
+
{ id: "sand", label: "Sand", media: shot("d8c7a8") },
|
|
64
|
+
],
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
id: "size",
|
|
68
|
+
label: "Size",
|
|
69
|
+
values: [
|
|
70
|
+
{ id: "m", label: "M" },
|
|
71
|
+
{ id: "l", label: "L" },
|
|
72
|
+
],
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
variants: [
|
|
76
|
+
jacket("fj-black-m", "black", "Black", "m"),
|
|
77
|
+
jacket("fj-black-l", "black", "Black", "l"),
|
|
78
|
+
jacket("fj-sand-m", "sand", "Sand", "m"),
|
|
79
|
+
],
|
|
80
|
+
card: {
|
|
81
|
+
title: "Field jacket",
|
|
82
|
+
price: { amount: 229, currency: "EUR" },
|
|
83
|
+
media: [shot("2b2b2b")],
|
|
84
|
+
attributes: [],
|
|
85
|
+
},
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const Default = () => <DetailView product={PRODUCT} />;
|
|
89
|
+
|
|
90
|
+
// Single-variant product: no picker, buyable immediately.
|
|
91
|
+
const SIMPLE: Product = {
|
|
92
|
+
id: "tote",
|
|
93
|
+
options: [],
|
|
94
|
+
variants: [
|
|
95
|
+
{
|
|
96
|
+
id: "tote",
|
|
97
|
+
selection: {},
|
|
98
|
+
title: "Canvas tote",
|
|
99
|
+
description: "A sturdy everyday canvas tote.",
|
|
100
|
+
price: { amount: 39, currency: "EUR" },
|
|
101
|
+
media: [shot("e1e1e1")],
|
|
102
|
+
url: "https://example.com/tote",
|
|
103
|
+
attributes: [{ name: "Material", value: "Canvas" }],
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
card: {
|
|
107
|
+
title: "Canvas tote",
|
|
108
|
+
price: { amount: 39, currency: "EUR" },
|
|
109
|
+
media: [shot("e1e1e1")],
|
|
110
|
+
attributes: [],
|
|
111
|
+
},
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
export const SingleVariant = () => <DetailView product={SIMPLE} />;
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
import { useEffect, useState } from "react";
|
|
2
|
+
import { useOpenExternal, useSetOpenInAppUrl, useUser } from "skybridge/web";
|
|
3
|
+
import { ExpandableText } from "../../../components/expandable-text";
|
|
4
|
+
import { ImageGallery } from "../../../components/image-gallery";
|
|
5
|
+
import { VariantPicker } from "../../../components/variant-picker";
|
|
6
|
+
import { sprinkles, text } from "../../../design/tokens";
|
|
7
|
+
import { type Labels, useLabels } from "../../../i18n";
|
|
8
|
+
import { cx } from "../../../lib/cx";
|
|
9
|
+
import { formatPrice } from "../../../lib/format";
|
|
10
|
+
import {
|
|
11
|
+
initialSelection,
|
|
12
|
+
resolveVariant,
|
|
13
|
+
type Selection,
|
|
14
|
+
} from "../../../lib/variants.js";
|
|
15
|
+
import type { Product } from "../../../tools/render-carousel.js";
|
|
16
|
+
import * as styles from "./detail.css";
|
|
17
|
+
|
|
18
|
+
// Price to show: the resolved variant's price, else the range across variants
|
|
19
|
+
// (or a single price when they agree), else the card price, else a fallback.
|
|
20
|
+
function priceText(
|
|
21
|
+
product: Product,
|
|
22
|
+
variantPrice: Product["card"]["price"],
|
|
23
|
+
locale: string,
|
|
24
|
+
labels: Labels,
|
|
25
|
+
): string {
|
|
26
|
+
if (variantPrice) {
|
|
27
|
+
return formatPrice(variantPrice, locale);
|
|
28
|
+
}
|
|
29
|
+
const amounts: number[] = [];
|
|
30
|
+
let currency = "";
|
|
31
|
+
for (const variant of product.variants) {
|
|
32
|
+
if (variant.price) {
|
|
33
|
+
amounts.push(variant.price.amount);
|
|
34
|
+
currency = variant.price.currency;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
if (amounts.length > 0) {
|
|
38
|
+
const min = Math.min(...amounts);
|
|
39
|
+
const max = Math.max(...amounts);
|
|
40
|
+
if (min === max) {
|
|
41
|
+
return formatPrice({ amount: min, currency }, locale);
|
|
42
|
+
}
|
|
43
|
+
return `${formatPrice({ amount: min, currency }, locale)} – ${formatPrice({ amount: max, currency }, locale)}`;
|
|
44
|
+
}
|
|
45
|
+
if (product.card.price) {
|
|
46
|
+
return formatPrice(product.card.price, locale);
|
|
47
|
+
}
|
|
48
|
+
return labels.priceOnRequest;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// data-llm narrates the variant the user is currently looking at. The full
|
|
52
|
+
// product spec (every variant) is pushed to view state by the carousel
|
|
53
|
+
// orchestrator, so the model can answer beyond what is on screen; this stays
|
|
54
|
+
// scoped to the visible selection.
|
|
55
|
+
function grounding(
|
|
56
|
+
product: Product,
|
|
57
|
+
title: string,
|
|
58
|
+
price: string,
|
|
59
|
+
selection: Selection,
|
|
60
|
+
outOfStock: boolean,
|
|
61
|
+
labels: Labels,
|
|
62
|
+
): string {
|
|
63
|
+
const parts = [`The user is viewing "${title}" (product id: ${product.id}).`];
|
|
64
|
+
const chosen: string[] = [];
|
|
65
|
+
for (const option of product.options) {
|
|
66
|
+
let label = "not selected";
|
|
67
|
+
const valueId = selection[option.id];
|
|
68
|
+
for (const value of option.values) {
|
|
69
|
+
if (value.id === valueId) {
|
|
70
|
+
label = value.label;
|
|
71
|
+
break;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
chosen.push(`${option.label}: ${label}`);
|
|
75
|
+
}
|
|
76
|
+
if (chosen.length > 0) {
|
|
77
|
+
parts.push(`Selected — ${chosen.join(", ")}.`);
|
|
78
|
+
}
|
|
79
|
+
parts.push(`Price: ${price}.`);
|
|
80
|
+
if (outOfStock) {
|
|
81
|
+
parts.push(labels.outOfStock);
|
|
82
|
+
}
|
|
83
|
+
return parts.join(" ");
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Product detail view, rendered fullscreen over the carousel (see the carousel
|
|
88
|
+
* orchestrator). Reads a single product from the payload already in `_meta`;
|
|
89
|
+
* does no fetch. Option choices resolve against the product's sparse variant
|
|
90
|
+
* list in-place (no remount).
|
|
91
|
+
*/
|
|
92
|
+
export function DetailView({ product }: { product: Product }) {
|
|
93
|
+
const { locale } = useUser();
|
|
94
|
+
const labels = useLabels();
|
|
95
|
+
const openExternal = useOpenExternal();
|
|
96
|
+
const setOpenInAppUrl = useSetOpenInAppUrl();
|
|
97
|
+
const [selection, setSelection] = useState<Selection>(() =>
|
|
98
|
+
initialSelection(product),
|
|
99
|
+
);
|
|
100
|
+
|
|
101
|
+
const variant = resolveVariant(product, selection);
|
|
102
|
+
// Fall back to the card for display fields until a variant resolves.
|
|
103
|
+
const displayTitle = variant?.title ?? product.card.title;
|
|
104
|
+
const description = variant?.description ?? product.card.description;
|
|
105
|
+
const media = variant?.media.length ? variant.media : product.card.media;
|
|
106
|
+
const attributes = variant?.attributes ?? product.card.attributes;
|
|
107
|
+
const outOfStock = variant?.outOfStock ?? product.card.outOfStock ?? false;
|
|
108
|
+
const url = variant?.url ?? product.card.url;
|
|
109
|
+
|
|
110
|
+
const price = priceText(product, variant?.price, locale, labels);
|
|
111
|
+
// Buy CTA is enabled only once a variant resolves and carries a real link
|
|
112
|
+
// (an empty url would leave the button enabled but dead).
|
|
113
|
+
const canBuy = variant != null && Boolean(url);
|
|
114
|
+
|
|
115
|
+
// Point the host's fullscreen "Open in app" affordance at the selected
|
|
116
|
+
// variant's page. Apps-SDK only; MCP Apps hosts reject, so ignore that.
|
|
117
|
+
useEffect(() => {
|
|
118
|
+
if (url) {
|
|
119
|
+
setOpenInAppUrl(url).catch(() => {});
|
|
120
|
+
}
|
|
121
|
+
}, [url, setOpenInAppUrl]);
|
|
122
|
+
|
|
123
|
+
return (
|
|
124
|
+
<div
|
|
125
|
+
className={styles.detail}
|
|
126
|
+
data-llm={grounding(
|
|
127
|
+
product,
|
|
128
|
+
displayTitle,
|
|
129
|
+
price,
|
|
130
|
+
selection,
|
|
131
|
+
outOfStock,
|
|
132
|
+
labels,
|
|
133
|
+
)}
|
|
134
|
+
>
|
|
135
|
+
<div className={styles.grid}>
|
|
136
|
+
<div className={styles.galleryCell}>
|
|
137
|
+
{media.length > 0 ? (
|
|
138
|
+
// Key on the media set so switching to a variant with different
|
|
139
|
+
// images remounts the gallery fresh (index reset to the first image).
|
|
140
|
+
<ImageGallery
|
|
141
|
+
key={media.join("|")}
|
|
142
|
+
media={media}
|
|
143
|
+
alt={displayTitle}
|
|
144
|
+
/>
|
|
145
|
+
) : null}
|
|
146
|
+
</div>
|
|
147
|
+
|
|
148
|
+
<div className={styles.info}>
|
|
149
|
+
<h1
|
|
150
|
+
className={cx(
|
|
151
|
+
text({ style: "headingS", weight: "medium" }),
|
|
152
|
+
styles.title,
|
|
153
|
+
)}
|
|
154
|
+
>
|
|
155
|
+
{displayTitle}
|
|
156
|
+
</h1>
|
|
157
|
+
|
|
158
|
+
<p className={cx(text({ style: "headingS" }), styles.price)}>
|
|
159
|
+
{price}
|
|
160
|
+
</p>
|
|
161
|
+
|
|
162
|
+
{outOfStock ? (
|
|
163
|
+
<p className={cx(text({ style: "bodyS" }), styles.oos)}>
|
|
164
|
+
{labels.outOfStock}
|
|
165
|
+
</p>
|
|
166
|
+
) : null}
|
|
167
|
+
|
|
168
|
+
<VariantPicker
|
|
169
|
+
product={product}
|
|
170
|
+
selection={selection}
|
|
171
|
+
onChange={setSelection}
|
|
172
|
+
/>
|
|
173
|
+
|
|
174
|
+
{description ? <ExpandableText>{description}</ExpandableText> : null}
|
|
175
|
+
|
|
176
|
+
<button
|
|
177
|
+
type="button"
|
|
178
|
+
className={cx(styles.cta, sprinkles({ mt: "3xs" }))}
|
|
179
|
+
disabled={!canBuy}
|
|
180
|
+
onClick={canBuy && url ? () => openExternal(url) : undefined}
|
|
181
|
+
>
|
|
182
|
+
{variant ? labels.viewOnSite : labels.selectOptions}
|
|
183
|
+
</button>
|
|
184
|
+
|
|
185
|
+
{/* Specs rendered as a simple table, after the CTA. This is the visual
|
|
186
|
+
treatment only — the full spec is already in view state for the
|
|
187
|
+
model (see the carousel orchestrator), so hiding the table never
|
|
188
|
+
hides specs from the assistant. @todo: group/collapse, restyle, or
|
|
189
|
+
drop the table entirely. */}
|
|
190
|
+
{attributes.length > 0 ? (
|
|
191
|
+
<section className={styles.specs}>
|
|
192
|
+
<h2 className={text({ style: "labelM", weight: "medium" })}>
|
|
193
|
+
{labels.specifications}
|
|
194
|
+
</h2>
|
|
195
|
+
{attributes.map((attribute) => (
|
|
196
|
+
<div key={attribute.name} className={styles.specRow}>
|
|
197
|
+
<span
|
|
198
|
+
className={cx(text({ style: "bodyS" }), styles.specName)}
|
|
199
|
+
>
|
|
200
|
+
{attribute.name}
|
|
201
|
+
</span>
|
|
202
|
+
<span
|
|
203
|
+
className={cx(text({ style: "bodyS" }), styles.specValue)}
|
|
204
|
+
>
|
|
205
|
+
{attribute.value}
|
|
206
|
+
</span>
|
|
207
|
+
</div>
|
|
208
|
+
))}
|
|
209
|
+
</section>
|
|
210
|
+
) : null}
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
</div>
|
|
214
|
+
);
|
|
215
|
+
}
|