create-nextblock 0.13.8 → 0.13.9

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.
@@ -1,139 +1,78 @@
1
- import { ProductGrid } from '@nextblock-cms/ecommerce/components/ProductGrid';
2
- import { getProducts } from '@nextblock-cms/ecommerce/server';
3
- import { normalizePriceMap, normalizeSalePriceMap } from '@nextblock-cms/ecommerce/currency';
4
- import { getVariantEffectivePriceRange } from '@nextblock-cms/ecommerce/variation-utils';
5
-
6
-
7
- import type { ProductGridBlockContent } from './ecommerce-block-schemas';
8
-
9
- import { getSsgSupabaseClient } from '@nextblock-cms/db/server';
10
-
11
- interface ProductGridBlockProps {
12
- content: ProductGridBlockContent;
13
- languageId?: number;
14
- excludeProductId?: string;
15
- excludeTranslationGroupId?: string | null;
16
- }
17
-
18
- // Component (Server Component)
19
- export const ProductGridBlock = async ({
20
- content,
21
- languageId,
22
- excludeProductId,
23
- excludeTranslationGroupId,
24
- }: ProductGridBlockProps) => {
25
- const supabase = getSsgSupabaseClient();
26
- // Fetch products filtered by language
27
- // We fetch more to ensure we have enough after manual checks
28
- const { data: products } = await getProducts(supabase, {
29
- languageId,
30
- categoryId: content.type === 'category' ? content.categoryId : undefined,
31
- limit: content.limit + 2,
32
- });
33
-
34
- const productRows = (products || []) as any[];
35
-
36
- if (productRows.length === 0) {
37
- return null; // Silent fail if no products
38
- }
39
-
40
- // 1. Filter out current product and its translations
41
- const filteredProducts = productRows.filter((p) => {
42
- if (excludeProductId && p.id === excludeProductId) return false;
43
- if (excludeTranslationGroupId && p.translation_group_id === excludeTranslationGroupId) return false;
44
- return true;
45
- });
46
-
47
- // 2. Hide if no products remain
48
- if (filteredProducts.length === 0) {
49
- return null;
50
- }
51
-
52
- // 3. Transform DB products to UI products
53
- const uiProducts = filteredProducts.slice(0, content.limit).map(p => {
54
- const productRecord = p as any;
55
- let imageUrl = undefined;
56
- // Accessing the nested media object correctly (array of objects with media property)
57
- // The type from getProducts select is: product_media: { media: { file_path: string | null } | null }[]
58
- const mediaItem = p.product_media?.[0]?.media;
59
- if (mediaItem?.file_path) {
60
- if (mediaItem.file_path.startsWith('http')) {
61
- imageUrl = mediaItem.file_path;
62
- } else if (process.env.NEXT_PUBLIC_R2_BASE_URL) {
63
- imageUrl = `${process.env.NEXT_PUBLIC_R2_BASE_URL}/${mediaItem.file_path}`;
64
- } else {
65
- imageUrl = `${process.env.NEXT_PUBLIC_SUPABASE_URL ?? ''}/storage/v1/object/public/media/${mediaItem.file_path}`;
66
- }
67
- }
68
-
69
- const variantPriceRange = getVariantEffectivePriceRange(
70
- (p.product_variants || []).map((variant: any) => ({
71
- price: variant.price,
72
- sale_price: variant.sale_price,
73
- sale_start_at: variant.sale_start_at ?? null,
74
- sale_end_at: variant.sale_end_at ?? null,
75
- }))
76
- );
77
-
78
- return {
79
- id: p.id,
80
- title: p.title,
81
- slug: p.slug,
82
- sku: p.sku,
83
- average_rating: p.average_rating,
84
- total_reviews: p.total_reviews,
85
- upc: p.upc || undefined,
86
- price: p.price,
87
- prices: normalizePriceMap(p.prices),
88
- sale_price: typeof p.sale_price === 'number' ? p.sale_price : undefined,
89
- sale_prices: normalizeSalePriceMap(p.sale_prices),
90
- sale_start_at: p.sale_start_at ?? null,
91
- sale_end_at: p.sale_end_at ?? null,
92
- scheduled_price: typeof p.scheduled_price === 'number' ? p.scheduled_price : undefined,
93
- scheduled_prices: normalizePriceMap(p.scheduled_prices),
94
- scheduled_price_at: p.scheduled_price_at ?? null,
95
- is_taxable: p.is_taxable ?? true,
96
- product_type: productRecord.product_type ?? undefined,
97
- payment_provider: productRecord.payment_provider ?? undefined,
98
- price_range_min: variantPriceRange?.min ?? null,
99
- price_range_max: variantPriceRange?.max ?? null,
100
- image_url: imageUrl,
101
- short_description: p.short_description || undefined,
102
- categories: (p.product_categories || []).map((pc: any) => pc.category).filter(Boolean),
103
- language_id: p.language_id as number,
104
- translation_group_id: p.translation_group_id || "",
105
- freemius_product_id: productRecord.freemius_product_id || undefined,
106
- freemius_plan_id: productRecord.freemius_plan_id || undefined,
107
- trial_period_days: productRecord.trial_period_days ?? 0,
108
- trial_requires_payment_method:
109
- productRecord.trial_requires_payment_method ?? false,
110
- freemius_plans: productRecord.freemius_plans,
111
- has_variants: (p.product_variants?.length || 0) > 0,
112
- product_variants: (p.product_variants || []).map((variant: any) => ({
113
- id: variant.id,
114
- price: variant.price,
115
- prices: normalizePriceMap(variant.prices),
116
- sale_price: variant.sale_price,
117
- sale_prices: normalizeSalePriceMap(variant.sale_prices),
118
- sale_start_at: variant.sale_start_at ?? null,
119
- sale_end_at: variant.sale_end_at ?? null,
120
- scheduled_price: variant.scheduled_price ?? null,
121
- scheduled_prices: normalizePriceMap(variant.scheduled_prices),
122
- scheduled_price_at: variant.scheduled_price_at ?? null,
123
- })),
124
- };
125
- });
126
-
127
- return (
128
- <section className="py-12">
129
- {content.title && (
130
- <div className="container mb-8">
131
- <h2 className="text-3xl font-bold tracking-tight">{content.title}</h2>
132
- </div>
133
- )}
134
- <div className="container">
135
- <ProductGrid products={uiProducts} />
136
- </div>
137
- </section>
138
- );
139
- };
1
+ import ProductGridClient from '../../components/blocks/ProductGridClient';
2
+
3
+ import {
4
+ PRODUCT_GRID_UNLIMITED,
5
+ resolveProductGridCategoryIds,
6
+ resolveProductGridLimit,
7
+ resolveProductGridProductIds,
8
+ resolveProductGridShowPagination,
9
+ type ProductGridBlockContent,
10
+ } from './ecommerce-block-schemas';
11
+ import { loadProductGridPage, type ProductGridQuery } from './product-grid-data';
12
+
13
+ interface ProductGridBlockProps {
14
+ content: ProductGridBlockContent;
15
+ languageId?: number;
16
+ excludeProductId?: string;
17
+ excludeTranslationGroupId?: string | null;
18
+ }
19
+
20
+ // Component (Server Component)
21
+ export const ProductGridBlock = async ({
22
+ content,
23
+ languageId,
24
+ excludeProductId,
25
+ excludeTranslationGroupId,
26
+ }: ProductGridBlockProps) => {
27
+ const isManual = content.type === 'manual';
28
+ const handPickedIds = isManual ? resolveProductGridProductIds(content) : [];
29
+
30
+ // A hand-picked grid with nothing picked has nothing to say — render nothing
31
+ // rather than silently falling back to unrelated products.
32
+ if (isManual && handPickedIds.length === 0) {
33
+ return null;
34
+ }
35
+
36
+ const paginate = resolveProductGridShowPagination(content);
37
+ // A hand-picked list is already exactly what the author asked for, so `limit`
38
+ // acts purely as a page size there — never as a cap.
39
+ const limit = isManual && !paginate ? PRODUCT_GRID_UNLIMITED : resolveProductGridLimit(content);
40
+
41
+ const query: ProductGridQuery = {
42
+ type: content.type ?? 'latest',
43
+ // With no category selected this resolves to an empty filter, i.e. latest products.
44
+ categoryIds: content.type === 'category' ? resolveProductGridCategoryIds(content) : undefined,
45
+ productIds: isManual ? handPickedIds : undefined,
46
+ limit,
47
+ page: 1,
48
+ languageId,
49
+ excludeProductId,
50
+ excludeTranslationGroupId,
51
+ };
52
+
53
+ const { products, totalCount } = await loadProductGridPage(query);
54
+
55
+ if (products.length === 0) {
56
+ return null; // Silent fail if no products
57
+ }
58
+
59
+ const showPagination = paginate && totalCount > limit;
60
+
61
+ return (
62
+ <section className="py-12">
63
+ {content.title && (
64
+ <div className="container mb-8">
65
+ <h2 className="text-3xl font-bold tracking-tight">{content.title}</h2>
66
+ </div>
67
+ )}
68
+ <div className="container">
69
+ <ProductGridClient
70
+ initialProducts={products}
71
+ totalCount={totalCount}
72
+ query={query}
73
+ showPagination={showPagination}
74
+ />
75
+ </div>
76
+ </section>
77
+ );
78
+ };
@@ -491,13 +491,13 @@ export const blockRegistry: Record<BlockType, BlockDefinition> = {
491
491
  type: "product_grid",
492
492
  label: "Product Grid",
493
493
  icon: "ShoppingBag", // Lucide icon
494
- initialContent: { type: 'latest', limit: 6 } as ProductGridBlockContent,
494
+ initialContent: { type: 'latest', limit: 6, showPagination: false } as ProductGridBlockContent,
495
495
  editorComponentFilename: "ProductGridBlockEditor.tsx", // Assuming standard naming
496
496
  rendererComponentFilename: "ProductGridBlockRenderer.tsx", // Assuming mapping to ProductGridBlock.tsx handled by renderer map not shown here, or we need to ensure the renderer map uses the file we created. The prompt implies creating the file in `lib/blocks` serves as the component. I will assume the system maps it.
497
497
  schema: ProductGridBlockSchema,
498
498
  documentation: {
499
- description: 'Displays a grid of products.',
500
- useCases: ['Homepage featured products', 'Category pages']
499
+ description: 'Displays a grid of products: the latest ones, everything in one or more categories, or a hand-picked list.',
500
+ useCases: ['Homepage featured products', 'Category pages', 'Curated collections']
501
501
  }
502
502
  },
503
503
 
@@ -16,3 +16,22 @@ export const availableBlockTypes = [
16
16
  ] as const;
17
17
 
18
18
  export type BlockType = (typeof availableBlockTypes)[number];
19
+
20
+ /**
21
+ * Block types provided by the premium `ecommerce` package. They are hidden from
22
+ * the block picker when the package is not activated — see
23
+ * `app/cms/blocks/components/BlockTypeSelector.tsx`.
24
+ */
25
+ export const ecommerceBlockTypes = [
26
+ "product_grid",
27
+ "featured_product",
28
+ "cart",
29
+ "checkout",
30
+ "product_details",
31
+ ] as const satisfies readonly BlockType[];
32
+
33
+ export type EcommerceBlockType = (typeof ecommerceBlockTypes)[number];
34
+
35
+ export function isEcommerceBlockType(type: string): type is EcommerceBlockType {
36
+ return (ecommerceBlockTypes as readonly string[]).includes(type);
37
+ }
@@ -1,14 +1,73 @@
1
1
  import { z } from '../zod-config';
2
2
 
3
+ /** Upper bound for how many categories / products a single grid can reference. */
4
+ export const PRODUCT_GRID_MAX_CATEGORIES = 20;
5
+ export const PRODUCT_GRID_MAX_PRODUCTS = 24;
6
+ export const PRODUCT_GRID_MAX_LIMIT = 48;
7
+ /** `limit: 0` means "no cap" — show every matching product on one page. */
8
+ export const PRODUCT_GRID_UNLIMITED = 0;
9
+ /** Page size applied when pagination is switched on from an unlimited grid. */
10
+ export const PRODUCT_GRID_DEFAULT_PAGE_SIZE = 12;
11
+
3
12
  // Product Grid Block Schema
4
13
  export const ProductGridBlockSchema = z.object({
5
- type: z.enum(['latest', 'category']).default('latest'),
14
+ /**
15
+ * Where the grid gets its products:
16
+ * - `latest` newest active products
17
+ * - `category` every product in any of `categoryIds`
18
+ * - `manual` exactly the products in `productIds`, in that order
19
+ */
20
+ type: z.enum(['latest', 'category', 'manual']).default('latest'),
21
+ /** Legacy single-category field, superseded by `categoryIds`. Still read so blocks saved before multi-select keep working. */
6
22
  categoryId: z.string().optional(),
7
- limit: z.number().min(1).max(20).default(6),
23
+ categoryIds: z.array(z.string()).max(PRODUCT_GRID_MAX_CATEGORIES).optional(),
24
+ productIds: z.array(z.string()).max(PRODUCT_GRID_MAX_PRODUCTS).optional(),
25
+ /** Products per page when paginating, otherwise the display cap. `0` means unlimited. */
26
+ limit: z.number().min(PRODUCT_GRID_UNLIMITED).max(PRODUCT_GRID_MAX_LIMIT).default(6),
27
+ /** Page through everything that matches instead of stopping at `limit`. */
28
+ showPagination: z.boolean().default(false),
8
29
  title: z.string().optional(),
9
30
  });
10
31
  export type ProductGridBlockContent = z.infer<typeof ProductGridBlockSchema>;
11
32
 
33
+ /**
34
+ * Selected categories, reading the legacy single `categoryId` when a block was
35
+ * saved before multi-select existed.
36
+ */
37
+ export function resolveProductGridCategoryIds(
38
+ content: Partial<ProductGridBlockContent>
39
+ ): string[] {
40
+ const ids = (content.categoryIds ?? []).filter(Boolean);
41
+ if (ids.length > 0) return Array.from(new Set(ids));
42
+ return content.categoryId ? [content.categoryId] : [];
43
+ }
44
+
45
+ /** Hand-picked products, in the order the author chose them. */
46
+ export function resolveProductGridProductIds(
47
+ content: Partial<ProductGridBlockContent>
48
+ ): string[] {
49
+ return Array.from(new Set((content.productIds ?? []).filter(Boolean)));
50
+ }
51
+
52
+ /**
53
+ * Page size / display cap, clamped to the supported range. Returns
54
+ * `PRODUCT_GRID_UNLIMITED` (0) when the author asked for every match.
55
+ */
56
+ export function resolveProductGridLimit(
57
+ content: Partial<ProductGridBlockContent>
58
+ ): number {
59
+ const raw = typeof content.limit === 'number' ? content.limit : 6;
60
+ if (!Number.isFinite(raw) || raw < 0) return 6;
61
+ return Math.min(Math.floor(raw), PRODUCT_GRID_MAX_LIMIT);
62
+ }
63
+
64
+ /** Pagination needs a page size, so an unlimited grid is always a single page. */
65
+ export function resolveProductGridShowPagination(
66
+ content: Partial<ProductGridBlockContent>
67
+ ): boolean {
68
+ return Boolean(content.showPagination) && resolveProductGridLimit(content) > 0;
69
+ }
70
+
12
71
  // Featured Product Block Schema
13
72
  export const FeaturedProductBlockSchema = z.object({
14
73
  productId: z.string().min(1, 'Product is required'),
@@ -0,0 +1,210 @@
1
+ import { getProducts } from '@nextblock-cms/ecommerce/server';
2
+ import { normalizePriceMap, normalizeSalePriceMap } from '@nextblock-cms/ecommerce/currency';
3
+ import { getVariantEffectivePriceRange } from '@nextblock-cms/ecommerce/variation-utils';
4
+ import type { Product } from '@nextblock-cms/ecommerce/types';
5
+ import { getSsgSupabaseClient } from '@nextblock-cms/db/server';
6
+
7
+ import { PRODUCT_GRID_MAX_LIMIT } from './ecommerce-block-schemas';
8
+
9
+ type SupabaseClientLike = ReturnType<typeof getSsgSupabaseClient>;
10
+
11
+ export interface ProductGridQuery {
12
+ type?: 'latest' | 'category' | 'manual';
13
+ categoryIds?: string[];
14
+ productIds?: string[];
15
+ /** Products per page, or `0` for every match on a single page. */
16
+ limit: number;
17
+ /** 1-based page number. */
18
+ page?: number;
19
+ languageId?: number;
20
+ excludeProductId?: string;
21
+ excludeTranslationGroupId?: string | null;
22
+ }
23
+
24
+ export interface ProductGridPage {
25
+ products: Product[];
26
+ /** Total matches across all pages, before exclusions. */
27
+ totalCount: number;
28
+ }
29
+
30
+ /** Turn a `getProducts` row into the shape `<ProductGrid />` renders. */
31
+ export function mapProductRowToUiProduct(p: any): Product {
32
+ const productRecord = p as any;
33
+ let imageUrl = undefined;
34
+ // Accessing the nested media object correctly (array of objects with media property)
35
+ // The type from getProducts select is: product_media: { media: { file_path: string | null } | null }[]
36
+ const mediaItem = p.product_media?.[0]?.media;
37
+ if (mediaItem?.file_path) {
38
+ if (mediaItem.file_path.startsWith('http')) {
39
+ imageUrl = mediaItem.file_path;
40
+ } else if (process.env.NEXT_PUBLIC_R2_BASE_URL) {
41
+ imageUrl = `${process.env.NEXT_PUBLIC_R2_BASE_URL}/${mediaItem.file_path}`;
42
+ } else {
43
+ imageUrl = `${process.env.NEXT_PUBLIC_SUPABASE_URL ?? ''}/storage/v1/object/public/media/${mediaItem.file_path}`;
44
+ }
45
+ }
46
+
47
+ const variantPriceRange = getVariantEffectivePriceRange(
48
+ (p.product_variants || []).map((variant: any) => ({
49
+ price: variant.price,
50
+ sale_price: variant.sale_price,
51
+ sale_start_at: variant.sale_start_at ?? null,
52
+ sale_end_at: variant.sale_end_at ?? null,
53
+ }))
54
+ );
55
+
56
+ return {
57
+ id: p.id,
58
+ title: p.title,
59
+ slug: p.slug,
60
+ sku: p.sku,
61
+ average_rating: p.average_rating,
62
+ total_reviews: p.total_reviews,
63
+ upc: p.upc || undefined,
64
+ price: p.price,
65
+ prices: normalizePriceMap(p.prices),
66
+ sale_price: typeof p.sale_price === 'number' ? p.sale_price : undefined,
67
+ sale_prices: normalizeSalePriceMap(p.sale_prices),
68
+ sale_start_at: p.sale_start_at ?? null,
69
+ sale_end_at: p.sale_end_at ?? null,
70
+ scheduled_price: typeof p.scheduled_price === 'number' ? p.scheduled_price : undefined,
71
+ scheduled_prices: normalizePriceMap(p.scheduled_prices),
72
+ scheduled_price_at: p.scheduled_price_at ?? null,
73
+ is_taxable: p.is_taxable ?? true,
74
+ product_type: productRecord.product_type ?? undefined,
75
+ payment_provider: productRecord.payment_provider ?? undefined,
76
+ price_range_min: variantPriceRange?.min ?? null,
77
+ price_range_max: variantPriceRange?.max ?? null,
78
+ image_url: imageUrl,
79
+ short_description: p.short_description || undefined,
80
+ categories: (p.product_categories || []).map((pc: any) => pc.category).filter(Boolean),
81
+ language_id: p.language_id as number,
82
+ translation_group_id: p.translation_group_id || "",
83
+ freemius_product_id: productRecord.freemius_product_id || undefined,
84
+ freemius_plan_id: productRecord.freemius_plan_id || undefined,
85
+ trial_period_days: productRecord.trial_period_days ?? 0,
86
+ trial_requires_payment_method:
87
+ productRecord.trial_requires_payment_method ?? false,
88
+ freemius_plans: productRecord.freemius_plans,
89
+ has_variants: (p.product_variants?.length || 0) > 0,
90
+ product_variants: (p.product_variants || []).map((variant: any) => ({
91
+ id: variant.id,
92
+ price: variant.price,
93
+ prices: normalizePriceMap(variant.prices),
94
+ sale_price: variant.sale_price,
95
+ sale_prices: normalizeSalePriceMap(variant.sale_prices),
96
+ sale_start_at: variant.sale_start_at ?? null,
97
+ sale_end_at: variant.sale_end_at ?? null,
98
+ scheduled_price: variant.scheduled_price ?? null,
99
+ scheduled_prices: normalizePriceMap(variant.scheduled_prices),
100
+ scheduled_price_at: variant.scheduled_price_at ?? null,
101
+ })),
102
+ } as Product;
103
+ }
104
+
105
+ /**
106
+ * Load hand-picked products in the author's chosen order. Selections are made
107
+ * against a single language, so when the page renders in another language each
108
+ * pick is swapped for its translation (falling back to the picked row when the
109
+ * product has not been translated yet).
110
+ */
111
+ async function fetchHandPickedProducts(
112
+ supabase: SupabaseClientLike,
113
+ productIds: string[],
114
+ languageId?: number
115
+ ): Promise<any[]> {
116
+ const { data: pickedRows } = await getProducts(supabase, {
117
+ productIds,
118
+ limit: productIds.length,
119
+ });
120
+
121
+ const picked = (pickedRows || []) as any[];
122
+ if (picked.length === 0) return [];
123
+
124
+ const rowById = new Map(picked.map((row) => [row.id, row]));
125
+ let ordered = productIds
126
+ .map((id) => rowById.get(id))
127
+ .filter(Boolean) as any[];
128
+
129
+ if (languageId && ordered.some((row) => row.language_id !== languageId)) {
130
+ const groupIds = Array.from(
131
+ new Set(ordered.map((row) => row.translation_group_id).filter(Boolean))
132
+ ) as string[];
133
+
134
+ if (groupIds.length > 0) {
135
+ const { data: translatedRows } = await getProducts(supabase, {
136
+ translationGroupIds: groupIds,
137
+ languageId,
138
+ limit: groupIds.length,
139
+ });
140
+ const rowByGroup = new Map(
141
+ ((translatedRows || []) as any[]).map((row) => [row.translation_group_id, row])
142
+ );
143
+ ordered = ordered.map((row) => rowByGroup.get(row.translation_group_id) ?? row);
144
+ }
145
+ }
146
+
147
+ // Picking two translations of the same product resolves to one product here.
148
+ const seen = new Set<string>();
149
+ return ordered.filter((row) => {
150
+ const key = row.translation_group_id || row.id;
151
+ if (seen.has(key)) return false;
152
+ seen.add(key);
153
+ return true;
154
+ });
155
+ }
156
+
157
+ /** Drop the product the grid is embedded under (related-products placements). */
158
+ function applyExclusions(rows: any[], query: ProductGridQuery): any[] {
159
+ const { excludeProductId, excludeTranslationGroupId } = query;
160
+ if (!excludeProductId && !excludeTranslationGroupId) return rows;
161
+ return rows.filter((row) => {
162
+ if (excludeProductId && row.id === excludeProductId) return false;
163
+ if (excludeTranslationGroupId && row.translation_group_id === excludeTranslationGroupId) {
164
+ return false;
165
+ }
166
+ return true;
167
+ });
168
+ }
169
+
170
+ /**
171
+ * One page of a product grid. Shared by the block's server render (page 1) and
172
+ * the pagination server action (page N) so both agree on ordering and shape.
173
+ */
174
+ export async function loadProductGridPage(query: ProductGridQuery): Promise<ProductGridPage> {
175
+ const supabase = getSsgSupabaseClient();
176
+ const page = Math.max(1, Math.floor(query.page ?? 1));
177
+ const limit = Math.min(Math.max(0, Math.floor(query.limit ?? 6)), PRODUCT_GRID_MAX_LIMIT);
178
+ const hasExclusions = Boolean(query.excludeProductId || query.excludeTranslationGroupId);
179
+
180
+ if (query.type === 'manual') {
181
+ const productIds = query.productIds ?? [];
182
+ if (productIds.length === 0) return { products: [], totalCount: 0 };
183
+
184
+ // The whole hand-picked list is at most PRODUCT_GRID_MAX_PRODUCTS rows, so
185
+ // it is cheaper to resolve it once and page in memory than to re-query.
186
+ const rows = applyExclusions(
187
+ await fetchHandPickedProducts(supabase, productIds, query.languageId),
188
+ query
189
+ );
190
+ const paged = limit > 0 ? rows.slice((page - 1) * limit, page * limit) : rows;
191
+ return { products: paged.map(mapProductRowToUiProduct), totalCount: rows.length };
192
+ }
193
+
194
+ // Over-fetch just enough to refill a page after the excluded product is dropped.
195
+ const overFetch = hasExclusions ? 2 : 0;
196
+ const { data, count } = await getProducts(supabase, {
197
+ languageId: query.languageId,
198
+ categoryIds: query.type === 'category' ? query.categoryIds : undefined,
199
+ offset: limit > 0 ? (page - 1) * limit : undefined,
200
+ limit: limit > 0 ? limit + overFetch : 0,
201
+ });
202
+
203
+ const rows = applyExclusions((data || []) as any[], query);
204
+ const visible = limit > 0 ? rows.slice(0, limit) : rows;
205
+
206
+ return {
207
+ products: visible.map(mapProductRowToUiProduct),
208
+ totalCount: count ?? rows.length,
209
+ };
210
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextblock-cms/template",
3
- "version": "0.13.8",
3
+ "version": "0.13.9",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "next dev",