create-skybridge 0.0.0-dev.08be486 → 0.0.0-dev.09043e8

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.
Files changed (75) hide show
  1. package/dist/index.js +52 -26
  2. package/package.json +1 -1
  3. package/templates/blank/package.json +2 -1
  4. package/templates/blank/vite.config.ts +1 -1
  5. package/templates/demo/package.json +2 -1
  6. package/templates/demo/vite.config.ts +1 -1
  7. package/templates/ecom/.dockerignore +4 -0
  8. package/templates/ecom/.env.template +7 -0
  9. package/templates/ecom/.ladle/components.tsx +26 -0
  10. package/templates/ecom/.ladle/config.mjs +11 -0
  11. package/templates/ecom/.ladle/vite.config.ts +11 -0
  12. package/templates/ecom/AGENTS.md +2 -0
  13. package/templates/ecom/Dockerfile +53 -0
  14. package/templates/ecom/README.md +92 -0
  15. package/templates/ecom/_gitignore +9 -0
  16. package/templates/ecom/alpic.json +3 -0
  17. package/templates/ecom/node_modules/.bin/alpic +21 -0
  18. package/templates/ecom/node_modules/.bin/ladle +21 -0
  19. package/templates/ecom/node_modules/.bin/sb +21 -0
  20. package/templates/ecom/node_modules/.bin/skybridge +21 -0
  21. package/templates/ecom/node_modules/.bin/tsc +21 -0
  22. package/templates/ecom/node_modules/.bin/tsserver +21 -0
  23. package/templates/ecom/node_modules/.bin/tsx +21 -0
  24. package/templates/ecom/node_modules/.bin/vite +21 -0
  25. package/templates/ecom/package.json +42 -0
  26. package/templates/ecom/src/catalog/index.ts +19 -0
  27. package/templates/ecom/src/catalog/mock.ts +134 -0
  28. package/templates/ecom/src/catalog/shopify.ts +264 -0
  29. package/templates/ecom/src/components/chip.css.ts +63 -0
  30. package/templates/ecom/src/components/chip.stories.tsx +27 -0
  31. package/templates/ecom/src/components/chip.tsx +49 -0
  32. package/templates/ecom/src/components/empty-state.stories.tsx +3 -0
  33. package/templates/ecom/src/components/empty-state.tsx +12 -0
  34. package/templates/ecom/src/components/expandable-text.css.ts +49 -0
  35. package/templates/ecom/src/components/expandable-text.stories.tsx +20 -0
  36. package/templates/ecom/src/components/expandable-text.tsx +53 -0
  37. package/templates/ecom/src/components/image-gallery.css.ts +172 -0
  38. package/templates/ecom/src/components/image-gallery.stories.tsx +30 -0
  39. package/templates/ecom/src/components/image-gallery.tsx +163 -0
  40. package/templates/ecom/src/components/product-card.css.ts +159 -0
  41. package/templates/ecom/src/components/product-card.stories.tsx +58 -0
  42. package/templates/ecom/src/components/product-card.tsx +102 -0
  43. package/templates/ecom/src/components/product-carousel.css.ts +134 -0
  44. package/templates/ecom/src/components/product-carousel.stories.tsx +64 -0
  45. package/templates/ecom/src/components/product-carousel.tsx +202 -0
  46. package/templates/ecom/src/components/variant-picker.css.ts +27 -0
  47. package/templates/ecom/src/components/variant-picker.stories.tsx +67 -0
  48. package/templates/ecom/src/components/variant-picker.tsx +70 -0
  49. package/templates/ecom/src/components/view-frame.css.ts +22 -0
  50. package/templates/ecom/src/components/view-frame.tsx +27 -0
  51. package/templates/ecom/src/config.ts +12 -0
  52. package/templates/ecom/src/design/contract.css.ts +39 -0
  53. package/templates/ecom/src/design/fonts.css +15 -0
  54. package/templates/ecom/src/design/primitives.css.ts +101 -0
  55. package/templates/ecom/src/design/recipes/typography.css.ts +75 -0
  56. package/templates/ecom/src/design/sprinkles.css.ts +128 -0
  57. package/templates/ecom/src/design/themes/dark.css.ts +36 -0
  58. package/templates/ecom/src/design/themes/light.css.ts +36 -0
  59. package/templates/ecom/src/design/tokens.ts +8 -0
  60. package/templates/ecom/src/helpers.ts +4 -0
  61. package/templates/ecom/src/i18n.ts +35 -0
  62. package/templates/ecom/src/index.css +9 -0
  63. package/templates/ecom/src/lib/cx.ts +9 -0
  64. package/templates/ecom/src/lib/format.ts +9 -0
  65. package/templates/ecom/src/lib/variants.ts +150 -0
  66. package/templates/ecom/src/server.ts +43 -0
  67. package/templates/ecom/src/tools/render-carousel.ts +161 -0
  68. package/templates/ecom/src/tools/search-products.ts +196 -0
  69. package/templates/ecom/src/types.ts +87 -0
  70. package/templates/ecom/src/views/carousel/detail/detail.css.ts +115 -0
  71. package/templates/ecom/src/views/carousel/detail/detail.stories.tsx +133 -0
  72. package/templates/ecom/src/views/carousel/detail/index.tsx +254 -0
  73. package/templates/ecom/src/views/carousel/index.tsx +233 -0
  74. package/templates/ecom/tsconfig.json +11 -0
  75. package/templates/ecom/vite.config.ts +8 -0
@@ -0,0 +1,233 @@
1
+ import "../../index.css";
2
+
3
+ import {
4
+ type ReactNode,
5
+ useEffect,
6
+ useLayoutEffect,
7
+ useRef,
8
+ useState,
9
+ } from "react";
10
+ import { useDisplayMode, useViewState } from "skybridge/web";
11
+ import { EmptyState } from "../../components/empty-state";
12
+ import {
13
+ ProductCard,
14
+ ProductCardSkeleton,
15
+ } from "../../components/product-card";
16
+ import * as cardStyles from "../../components/product-card.css";
17
+ import { ProductCarousel } from "../../components/product-carousel";
18
+ import { ViewFrame } from "../../components/view-frame";
19
+ import { sprinkles } from "../../design/tokens";
20
+ import { useToolInfo } from "../../helpers.js";
21
+ import { useLabels } from "../../i18n";
22
+ import { formatPrice } from "../../lib/format";
23
+ import type { Price, Product, Spec } from "../../types.js";
24
+ import { DetailView } from "./detail";
25
+
26
+ const SKELETON_COUNT = 4;
27
+
28
+ // One narration line per on-screen product. `id` ties the card back to its full
29
+ // record in structuredContent.
30
+ function narrate(product: Product, index: number): string {
31
+ const { card } = product;
32
+ const price = card.price ? ` - ${formatPrice(card.price)}` : "";
33
+ const oos = card.outOfStock ? " [out of stock]" : "";
34
+ return `${index + 1}. ${card.title} (id: ${product.id})${price}${oos}`;
35
+ }
36
+
37
+ // View state, persisted on the host so an open detail survives a remount (e.g.
38
+ // after a follow-up message). scrollLeft restores the carousel position on the
39
+ // way back; spec is the full product spec (every variant) the model can answer
40
+ // from while the detail is open.
41
+ type VariantSpec = {
42
+ selection: Record<string, string>; // option label -> chosen value label
43
+ price?: Price;
44
+ available: boolean;
45
+ specs: Spec[];
46
+ };
47
+ type ProductSpec = { id: string; title: string; variants: VariantSpec[] };
48
+ type ViewState = {
49
+ selectedId: string | null;
50
+ scrollLeft: number;
51
+ spec: ProductSpec | null;
52
+ };
53
+
54
+ // The complete spec of the open product — every variant, not just the visible
55
+ // one — pushed to view state so the model can answer any detail question. The
56
+ // on-screen variant is narrated separately (data-llm, in the detail view). Keep
57
+ // it to a single product; a very large spec trips the view-state size warning.
58
+ function buildProductSpec(product: Product): ProductSpec {
59
+ const variants: VariantSpec[] = [];
60
+ for (const variant of product.variants) {
61
+ const selection: Record<string, string> = {};
62
+ for (const option of product.options) {
63
+ const valueId = variant.selection[option.id];
64
+ if (!valueId) {
65
+ continue;
66
+ }
67
+ let label = valueId;
68
+ for (const value of option.values) {
69
+ if (value.id === valueId) {
70
+ label = value.label;
71
+ break;
72
+ }
73
+ }
74
+ selection[option.label] = label;
75
+ }
76
+ variants.push({
77
+ selection,
78
+ price: variant.price,
79
+ available: !variant.outOfStock,
80
+ specs: variant.specs,
81
+ });
82
+ }
83
+ return { id: product.id, title: product.card.title, variants };
84
+ }
85
+
86
+ /**
87
+ * Carousel view + product detail, in one view. The carousel is the inline
88
+ * surface; tapping a card opens the detail fullscreen over it (the carousel is
89
+ * hidden, not unmounted). Both read the full products from `_meta`; the detail
90
+ * needs no extra fetch.
91
+ */
92
+ function Carousel() {
93
+ const { responseMetadata } = useToolInfo<"render-carousel">();
94
+ const labels = useLabels();
95
+ const trackRef = useRef<HTMLElement>(null);
96
+ const [visibleIndices, setVisibleIndices] = useState<number[]>([]);
97
+ const [mode, setMode] = useDisplayMode();
98
+ const [nav, setNav] = useViewState<ViewState>({
99
+ selectedId: null,
100
+ scrollLeft: 0,
101
+ spec: null,
102
+ });
103
+ // True between requesting fullscreen and the host applying it, so the
104
+ // collapse-is-back effect below does not fire mid-transition.
105
+ const enteringRef = useRef(false);
106
+
107
+ const selectedId = nav.selectedId;
108
+ // The detail only mounts once the host is actually fullscreen: rendering the
109
+ // tall page inside the small inline frame would flash a cramped layout.
110
+ const showDetail = selectedId != null && mode === "fullscreen";
111
+
112
+ // A host-driven exit from fullscreen (the user used host chrome) means "back".
113
+ useEffect(() => {
114
+ if (mode === "fullscreen") {
115
+ enteringRef.current = false;
116
+ return;
117
+ }
118
+ if (selectedId != null && !enteringRef.current) {
119
+ setNav((prev) => ({ ...prev, selectedId: null, spec: null }));
120
+ }
121
+ }, [mode, selectedId, setNav]);
122
+
123
+ // Restore carousel scroll when back on the carousel. display:none resets
124
+ // scrollLeft, so re-apply once it is visible again (layout effect, not mount).
125
+ useLayoutEffect(() => {
126
+ if (!showDetail && trackRef.current) {
127
+ trackRef.current.scrollLeft = nav.scrollLeft;
128
+ }
129
+ }, [showDetail, nav.scrollLeft]);
130
+
131
+ function openProduct(id: string) {
132
+ enteringRef.current = true;
133
+ const list = responseMetadata?.products ?? [];
134
+ let spec: ProductSpec | null = null;
135
+ for (const product of list) {
136
+ if (product.id === id) {
137
+ spec = buildProductSpec(product);
138
+ break;
139
+ }
140
+ }
141
+ setNav({
142
+ selectedId: id,
143
+ scrollLeft: trackRef.current?.scrollLeft ?? 0,
144
+ spec,
145
+ });
146
+ setMode("fullscreen");
147
+ }
148
+
149
+ // Tool still resolving: reserve the layout with skeleton cards.
150
+ if (responseMetadata == null) {
151
+ const skeletons: ReactNode[] = [];
152
+ for (let i = 0; i < SKELETON_COUNT; i++) {
153
+ skeletons.push(<ProductCardSkeleton key={i} />);
154
+ }
155
+ return (
156
+ <ViewFrame>
157
+ <div className={sprinkles({ p: "3xs" })}>
158
+ <ProductCarousel loading>{skeletons}</ProductCarousel>
159
+ </div>
160
+ </ViewFrame>
161
+ );
162
+ }
163
+
164
+ const products = responseMetadata.products ?? [];
165
+
166
+ if (products.length === 0) {
167
+ return (
168
+ <ViewFrame>
169
+ <EmptyState message={labels.noProducts} />
170
+ </ViewFrame>
171
+ );
172
+ }
173
+
174
+ // Guard against a stale id (e.g. the model rendered a new carousel while a
175
+ // detail was open): fall back to the carousel rather than an empty page.
176
+ const selectedProduct =
177
+ selectedId != null
178
+ ? products.find((product) => product.id === selectedId)
179
+ : undefined;
180
+ // The detail actually renders only when we have a product to show. Everything
181
+ // that hides the carousel keys off this, so a stale id shows the carousel, not
182
+ // a blank page.
183
+ const detailProduct = showDetail ? selectedProduct : undefined;
184
+
185
+ const cards: ReactNode[] = [];
186
+ for (const [index, product] of products.entries()) {
187
+ const { card } = product;
188
+ cards.push(
189
+ <div key={product.id} className={cardStyles.cardClickable}>
190
+ <ProductCard
191
+ // Drop per-card grounding while the detail owns the screen.
192
+ data-llm={
193
+ !detailProduct && visibleIndices.includes(index)
194
+ ? narrate(product, index)
195
+ : ""
196
+ }
197
+ title={card.title}
198
+ price={card.price}
199
+ media={card.media}
200
+ outOfStock={card.outOfStock}
201
+ />
202
+ <button
203
+ type="button"
204
+ aria-label={card.title}
205
+ className={cardStyles.cardButton}
206
+ onClick={() => openProduct(product.id)}
207
+ />
208
+ </div>,
209
+ );
210
+ }
211
+
212
+ const narration = `Carousel of ${products.length} product(s); the user scrolls horizontally. On screen now:`;
213
+
214
+ return (
215
+ <ViewFrame>
216
+ <div
217
+ className={sprinkles({ p: "3xs" })}
218
+ style={{ display: detailProduct ? "none" : undefined }}
219
+ >
220
+ <ProductCarousel
221
+ trackRef={trackRef}
222
+ onVisibleChange={setVisibleIndices}
223
+ data-llm={detailProduct ? "" : narration}
224
+ >
225
+ {cards}
226
+ </ProductCarousel>
227
+ </div>
228
+ {detailProduct ? <DetailView product={detailProduct} /> : null}
229
+ </ViewFrame>
230
+ );
231
+ }
232
+
233
+ export default Carousel;
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": "skybridge/tsconfig",
3
+
4
+ "compilerOptions": {
5
+ "module": "ESNext",
6
+ "moduleResolution": "Bundler",
7
+ "types": ["node", "vite/client"]
8
+ },
9
+
10
+ "include": ["src", ".skybridge/**/*.d.ts"]
11
+ }
@@ -0,0 +1,8 @@
1
+ import { skybridge } from "@skybridge/vite-plugin";
2
+ import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin";
3
+ import react from "@vitejs/plugin-react";
4
+ import { defineConfig, type PluginOption } from "vite";
5
+
6
+ export default defineConfig({
7
+ plugins: [skybridge() as PluginOption, react(), vanillaExtractPlugin()],
8
+ });