High-Performance React SPA Catalog for 1C-Bitrix with Instant Filters

Our company is engaged in the development, support and maintenance of Bitrix and Bitrix24 solutions of any complexity. From simple one-page sites to complex online stores, CRM systems with 1C and telephony integration. The experience of developers is confirmed by certificates from the vendor.
Showing 1 of 1All 1626 services
High-Performance React SPA Catalog for 1C-Bitrix with Instant Filters
Medium
~1-2 weeks
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1357
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    943
  • image_bitrix-bitrix-24-1c_development_of_an_online_appointment_booking_widget_for_a_medical_center_594_0.webp
    Development based on Bitrix, Bitrix24, 1C for the company Development of an Online Appointment Booking Widget for a Medical Center
    693
  • image_bitrix-bitrix-24-1c_mirsanbel_458_0.webp
    Development based on 1C Enterprise for MIRSANBEL
    829
  • image_crm_dolbimby_434_0.webp
    Website development on CRM Bitrix24 for DOLBIMBY
    731
  • image_crm_technotorgcomplex_453_0.webp
    Development based on Bitrix24 for the company TECHNOTORGKOMPLEKS
    1073

Catalog is the most loaded part of an online store: filtering, sorting, pagination, quick view, add to cart. The standard bitrix:catalog component reloads the entire page on each filter change with server-side rendering, taking 1.5–3 seconds. Imagine a catalog with 50,000 products — every filter click means wasted time and customer frustration. We develop a Single Page Application (SPA) React catalog that provides instant response to user actions: page loads in 200–400 ms, filter change takes up to 300 ms. The UX difference is immediate: cart conversion increases by 15–30%. Our experience: over 10 years and 40+ projects in catalog development for Bitrix. We are a certified Bitrix partner with thousands of satisfied clients, guaranteeing a performance improvement of at least 50%. For a store with $1M annual revenue, a 7% conversion drop due to slow load means $70,000 loss yearly; our React catalog recovers that.

Why React instead of a standard catalog?

Browser-side rendering eliminates full page reloads. Every filter change is an asynchronous request to the REST API, not a page reload. The backend uses tagged caching: when a product changes, only the cache associated with that product is invalidated, not the entire catalog. Result: smooth animations, filter state preserved in URL, the ability to share a link to specific search results. Users spend more time in the catalog, conversion increases. Our React 1C-Bitrix integration ensures seamless data exchange via CommerceML.

Catalog API Workflow

The PHP backend outputs catalog data in JSON. The base controller handles requests with filters, sorting, and pagination:

Code example: catalog list API
// /local/ajax/api.php — обработчик catalog.list
case 'catalog.list':
    CModule::IncludeModule('iblock');
    CModule::IncludeModule('catalog');

    $filter = [
        'IBLOCK_ID' => CATALOG_IBLOCK_ID,
        'ACTIVE'    => 'Y',
        'SECTION_ID'=> (int)$_GET['section_id'],
    ];

    // Ценовые фильтры
    if (!empty($_GET['price_from'])) {
        $filter['>=CATALOG_PRICE_1'] = (float)$_GET['price_from'];
    }
    if (!empty($_GET['price_to'])) {
        $filter['<=CATALOG_PRICE_1'] = (float)$_GET['price_to'];
    }

    // Фильтр по свойствам
    if (!empty($_GET['props'])) {
        $props = json_decode($_GET['props'], true);
        foreach ($props as $propCode => $values) {
            $filter['PROPERTY_' . $propCode] = $values;
        }
    }

    $sort = match($_GET['sort'] ?? 'default') {
        'price_asc'  => ['CATALOG_PRICE_1' => 'ASC'],
        'price_desc' => ['CATALOG_PRICE_1' => 'DESC'],
        'new'        => ['DATE_CREATE' => 'DESC'],
        default      => ['SORT' => 'ASC'],
    };

    $page  = max(1, (int)($_GET['page'] ?? 1));
    $limit = 24;

    $res = CIBlockElement::GetList(
        $sort, $filter, false,
        ['iNumPage' => $page, 'nPageSize' => $limit],
        ['ID', 'NAME', 'PREVIEW_PICTURE', 'DETAIL_PAGE_URL',
         'PROPERTY_ARTICLE', 'CATALOG_PRICE_1']
    );

    $items = [];
    while ($el = $res->GetNext()) {
        $items[] = [
            'id'    => $el['ID'],
            'name'  => $el['NAME'],
            'slug'  => $el['CODE'],
            'price' => (float)$el['CATALOG_PRICE_1'],
            'image' => CFile::GetPath($el['PREVIEW_PICTURE']),
            'url'   => $el['DETAIL_PAGE_URL'],
        ];
    }

    echo json_encode([
        'result' => $items,
        'total'  => $res->SelectedRowsCount(),
        'pages'  => ceil($res->SelectedRowsCount() / $limit),
    ]);
    break;

React catalog component with filters

On the frontend we use the useSearchParams hook to synchronize filters with the URL. Each filter is a query string parameter, so the link to a specific result can be copied and shared with a colleague.

Code example: CatalogPage component
// CatalogPage.tsx
import { useState, useCallback } from 'react';
import { useQuery } from '@tanstack/react-query';
import { useSearchParams } from 'react-router-dom';

interface CatalogFilters {
    priceFrom?: number;
    priceTo?: number;
    props: Record<string, string[]>;
    sort: string;
    page: number;
}

export function CatalogPage({ sectionId }: { sectionId: number }) {
    const [searchParams, setSearchParams] = useSearchParams();

    const filters: CatalogFilters = {
        priceFrom: searchParams.get('price_from') ? Number(searchParams.get('price_from')) : undefined,
        priceTo:   searchParams.get('price_to')   ? Number(searchParams.get('price_to'))   : undefined,
        props:     JSON.parse(searchParams.get('props') || '{}'),
        sort:      searchParams.get('sort') || 'default',
        page:      Number(searchParams.get('page') || 1),
    };

    const { data, isLoading } = useQuery({
        queryKey: ['catalog', sectionId, filters],
        queryFn: () => fetchCatalog(sectionId, filters),
        keepPreviousData: true,
    });

    const updateFilter = useCallback((key: string, value: string | null) => {
        setSearchParams(prev => {
            if (value) prev.set(key, value);
            else prev.delete(key);
            prev.delete('page');
            return prev;
        });
    }, [setSearchParams]);

    return (
        <div className="catalog-layout">
            <CatalogFilters
                filters={filters}
                onFilterChange={updateFilter}
            />
            <div className="catalog-main">
                <CatalogToolbar
                    total={data?.total}
                    sort={filters.sort}
                    onSortChange={v => updateFilter('sort', v)}
                />
                {isLoading ? (
                    <ProductGrid items={Array(24).fill(null)} skeleton />
                ) : (
                    <ProductGrid items={data?.items || []} />
                )}
                <Pagination
                    current={filters.page}
                    total={data?.pages || 1}
                    onChange={p => updateFilter('page', String(p))}
                />
            </div>
        </div>
    );
}

Filters are synchronized with the URL via useSearchParams — this allows sharing a link to a specific filter set and works correctly with the browser's back button.

Smart Filter Capabilities

The standard bitrix:catalog.smart.filter component generates HTML unsuitable for React. A custom filter requires a smart filter API:

// catalog.filter.get — доступные значения фильтров для текущего раздела
case 'catalog.filter.get':
    // Получаем доступные свойства и их значения
    // с учётом текущих выбранных фильтров (для зависимых фильтров)
    $availableProps = getSmartFilterProps(
        CATALOG_IBLOCK_ID,
        (int)$_GET['section_id'],
        json_decode($_GET['selected'] ?? '{}', true)
    );
    echo json_encode(['result' => $availableProps]);
    break;

Dependent filters (where selecting one value narrows down available values of another) is a complex task. It is implemented via a repeated request to the API on any filter change, passing the current selection. This approach provides behavior similar to the standard smart filter but in SPA style. Additionally, we use HL-blocks to store user preferences, which speeds up return visits.

Optimal Time to Switch

If your catalog contains more than 10,000 products, has complex filters with dependencies, or you notice a conversion drop on mobile devices — a React catalog solves these problems. Speed directly affects revenue: every second of delay reduces conversion by 7%. Investment starts from $3,000 and can reach $15,000 for complex projects, with typical ROI achieved within 6 months. For a store with $1M annual revenue, that's $70,000 saved per year. A full-stack approach (PHP + React) gives flexibility when integrating with 1C via CommerceML.

Performance optimization

Method Server Rendering React Catalog
First load 1.5–3 s 0.2–0.4 s
Filter change 1.5–3 s (reload) 0.1–0.3 s
Add to cart 0.5–1 s 0.1–0.2 s
State preservation no yes

List virtualization. When displaying 100+ products, use @tanstack/react-virtual — only the visible area is rendered. This reduces memory consumption and speeds up scrolling.

import { useVirtual } from '@tanstack/react-virtual';

const rowVirtualizer = useVirtual({
    count: items.length,
    parentRef: containerRef,
    estimateSize: () => 350,
});

Prefetch next page. When scrolling near the last visible item, prefetch the next page:

useEffect(() => {
    if (isNearEnd && data?.pages > filters.page) {
        queryClient.prefetchQuery(
            ['catalog', sectionId, { ...filters, page: filters.page + 1 }],
            () => fetchCatalog(sectionId, { ...filters, page: filters.page + 1 })
        );
    }
}, [isNearEnd]);

Image lazy loading via loading="lazy" + modern formats (WebP through Bitrix \Bitrix\Main\Web\Uri + converter or external CDN). For skeleton placeholders during loading, use CSS animation — cheaper than JavaScript animations.

Development stages of a React catalog

Checklist for implementation:

  1. Analysis of information blocks and properties, API design.
  2. Development of API controllers (list, filters, pagination).
  3. Creation of React components (filter, grid, pagination, skeletons).
  4. Integration with the trade catalog and 1C exchange via CommerceML.
  5. Configuration of tagged caching and HTTP cache.
  6. Testing on real data, performance measurements.
  7. Preparation of documentation and training of the customer's team.

The process includes analysis, API design, frontend and backend development, 1C integration, and testing. Each stage ends with a demo to the customer.

Stage Duration Result
Analysis 3–5 days Technical specification and API prototype
API development 5–10 days Ready endpoints
Frontend 7–14 days Working catalog with filters
Integration 3–5 days Full compatibility with 1C
Testing 2–4 days Performance report

What is included in the work

Deliverables:

  1. API controllers for product list, filters, pagination.
  2. React components: filter, product grid, pagination, skeletons.
  3. Integration with existing information blocks, trade catalog, 1C.
  4. Caching configuration (tagged caching, HTTP cache).
  5. API and architecture documentation.
  6. Git repository access with full code.
  7. Training of your developers (up to 2 hours) and 2 months of email support.

Get a free consultation on your project — we'll assess the scope and propose the optimal solution. Order the development of a React catalog and boost your store's conversion.

What Does React Development for 1C-Bitrix Provide and When Is It Needed?

A catalog with 30,000 SKUs and a faceted filter — the standard Bitrix template loads the page in 3 seconds. A B2B cabinet with personalized discounts — price recalculation with every filter change. The bottleneck is not the data but the monolithic architecture: each block calls REST separately, 6–8 sequential requests of 200–500 ms result in a total delay of 2–3 seconds. React solves this radically: component model, virtual DOM, and library ecosystem turn a slow interface into a responsive application. We are a certified 1C-Bitrix partner with 10+ years of experience and over 500 completed projects. Order an audit — we will evaluate your project in 1–2 days and show cases similar to yours.

Architectural Approaches

SPA on React + REST API Bitrix (BX.rest)

The React application lives separately, accessing /rest/ or custom endpoints via CRestServer. Maximum control, but also maximum work.

  • Client-side routing with React Router — transitions without reload, but on F5 you need a catch-all on Nginx: try_files $uri /index.html
  • Optimistic updates: cart updates instantly, sale.basket.update flies in the background. On error, roll back state and show a toast
  • Frontend deploys to CDN independent of Bitrix — updated a button without touching the backend

SSR with Hydration — When Yandex Doesn't See SPA

Yandex has learned to render JS, but not perfectly; Googlebot is better, but still not 100%. Server-side rendering of React components via Node.js solves the problem radically: the bot receives ready HTML, the user gets an interactive application after hydration. FCP drops below one second on normal hosting, og:title and og:image work for social networks. The complexity is needing a Node.js process alongside Apache/Nginx serving Bitrix: two runtimes, two deploys, two log sets. Bitrix cache (CPHPCache, Composite) can be used to warm data that later goes to SSR.

Headless Bitrix — Admin Panel for Content Managers, React for Visitors

Content manager logs into /bitrix/admin/, edits infoblocks. The visitor sees a React application that retrieves data via API. One backend serves the site, mobile app, and Telegram bot. Scaling: React bundle on CloudFront/CDN, Bitrix on a single server. With 50,000 unique visitors, the frontend does not directly load the backend. Pitfall: the standard Bitrix visual editor (BXEditor) stops working for visitors — content managers will have to work only through the admin panel.

Stack and Component Architecture

Stack We Actually Use

Technology Why It's Used
React 18+ Suspense, useTransition — UI does not block during heavy catalog updates
TypeScript Typing Bitrix API responses — IBlockElement, BasketItem, Order. Without it, refactoring is Russian roulette
Vite HMR in 50 ms vs 3–5 s for webpack. On a project with 200 components, the difference is enormous
React Query useQuery(['catalog', sectionId]) — automatic cache, revalidation, retry on 503 from overloaded Bitrix
React Hook Form + Zod Order form: 15–20 fields, conditional validation (legal entity — one set, individual — another). RHF does not re-render form on every keystroke
Tailwind CSS Utility classes — no fighting with cascades from Bitrix's template_styles.css
Radix UI / Shadcn Accessible primitives with ARIA out of the box

How We Build Components and Type Data

Every project starts with a design system — otherwise, by the third month, three developers will write three different button components. Typography, colors, spacing — via CSS variables and Tailwind config. Forms: inputs with masks (phone, INN), searchable selects, file upload with preview and MIME validation. Product card is a separate story: price with discounts from CCatalogProduct::GetOptimalPrice(), labels "Hit"/"New" from infoblock properties, "Add to cart" button with loading/success/error states. Tables with virtualization (react-window) for price lists of 5000+ rows.

We type everything that comes from Bitrix. The REST API returns string where you'd expect number, "Y"/"N" instead of boolean, and null instead of empty array. A Zod schema on input parses and transforms — components get proper types.

// Real type of CIBlockElement via REST — surprises everywhere
interface BitrixProduct {
  ID: string;          // yes, string, not number
  ACTIVE: "Y" | "N";  // not boolean
  PRICE: string;       // also string
  QUANTITY: string;    // and this is string
}

Performance and API Integration

Aggregating endpoints are key. One ajax.php or custom controller on \Bitrix\Main\Engine\Controller gathers catalog data, filters, cart, and user in a single request. React Query caches the response, and a second visit returns from cache with staleTime — load time reduces by 60% already on the second load.

How Does React Improve Core Web Vitals?

  • LCP < 2.5 s — lazy loading images via loading="lazy", inline critical CSS, preload LCP image via <link rel="preload">
  • INP (replaces FID) < 200 ms — useTransition for heavy filtering, useDeferredValue for search input
  • CLS < 0.1 — fixed sizes for skeletons and images. Skeleton placeholders instead of spinners

Virtualization is not optional, but necessary. A catalog with faceted filter may return 500 products per page. React-window or react-virtuoso render only the visible 20–30 cards — DOM does not bloat, scrolling is smooth.

REST and Custom Controllers

Out of the box via /rest/: infoblocks (iblock.element.get), cart (sale.basket.*), orders (sale.order.*), users (user.*). For a simple catalog, that's enough. But 70% of tasks require custom endpoints. \Bitrix\Main\Engine\Controller is the standard way to create your own endpoints in D7. Write a controller, register via registerAction, get endpoint with CSRF protection and authorization out of the box.

  • Aggregation: one request = catalog data + filters + cart + user
  • WebSocket via Bitrix Push & Pull (CPullStack::AddByTag) — order status updates in real time, no polling
  • GraphQL middleware (webonyx/graphql-php) on top of D7 ORM — frontend requests exactly the fields it needs. Mobile traffic savings up to 40%

Projects, Timelines, and What's Included

Typical Projects We Have Already Done

  • Online store with 30,000 SKUs and faceted filter via \Bitrix\Iblock\PropertyIndex\Facet — SPA, React Query, catalog virtualization
  • B2B cabinet: personalized prices from CCatalogGroup, reconciliation statements from 1C via \Bitrix\Sale\Compatible\OrderCompatibility, order history with filtering
  • Corporate portal: dashboards on Recharts, real-time via Push & Pull, integration with internal APIs through middleware
  • Marketplace: two React applications (buyer + seller), common backend, data separation via CUser::GetUserGroup()

Timelines and What's Included

Project Type Timeline
Landing page on React + Bitrix 2–4 weeks
SPA online store 8–16 weeks
Corporate portal 10–20 weeks
Gradual frontend migration to React 6–12 weeks
  • Audit of current Bitrix code and architecture
  • Design of API layer (REST / custom controllers / GraphQL)
  • Development of design system and components
  • CI/CD setup (deploy React bundle independently of Bitrix)
  • Documentation of endpoints and types (Swagger / TypeScript types)
  • Transfer of access to server, admin panel, repository
  • Training content managers to work through the admin panel
  • Warranty support for 2 months after delivery

Exact numbers after scope analysis. Assessment is phased, with a fixed budget for each sprint.

How We Implement React in a Project

  1. Audit existing code — find bottlenecks: redundant requests, outdated templates, suboptimal caches.
  2. Design API layer — determine which endpoints are needed, design aggregators or GraphQL.
  3. Develop design system — create components (buttons, forms, cards) based on mockups or UX recommendations.
  4. Integrate with Bitrix via chosen approach (SPA, SSR, or Headless) — set up rendering and routing.
  5. Test and deploy — launch a pilot section (e.g., catalog), measure Core Web Vitals, upon approval expand.
Typical Mistakes When Implementing React in Bitrix
  • Ignoring Bitrix caching — React Query may conflict with composite cache if tagged caching is not configured.
  • Lack of error handling from REST — on a 500 error, the interface may "freeze". Need a global handler with fallback UI.
  • Too many micro-components — each small widget calls API. Better to aggregate data in a single request.
  • Wrong hydration order in SSR — data from the server must exactly match the client's initial state, otherwise React hydration errors.

Why React, Not Vue or Bitrix Templates

  • Ecosystem. For any UI task, there is a ready library: tables, charts, drag-and-drop, virtualization. For Vue, the choice is narrower; for Bitrix templates, almost absent.
  • Talent pool. Finding a React developer is three times easier than a Bitrix templater who knows D7 and template.php.
  • React Native. Components are reused in mobile app — not one-to-one, but business logic and types are shared.
  • Gradual adoption. Start with one section (/catalog/) on React, keep the rest on Bitrix templates. component_epilog.php loads the React bundle, data is passed via window.__INITIAL_DATA__.

1C-Bitrix + React is not a theoretical architecture but a working combination that already serves catalogs with tens of thousands of SKUs and B2B cabinets with heavy business logic. Learn more about React and 1C-Bitrix. Get a consultation — we will send you cases similar to your project. Contact us to discuss details. We implement turnkey with a guarantee of results.