/
Ao
/
MaxReport
Обзор
Документация
Войти
/
Ao
/
MaxReport
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
pgsql/pgAdmin 4/web/pgadmin/static/js/SchemaView/FieldControl.jsx
26 строк
745 B
AoAnima
first_commit
13 июл 2026, 17:47
13 июл 2026, 17:47
f1a670a
Код
Авторство
О чём код?
///////////////////////////////////////////////////////////// // // pgAdmin 4 - PostgreSQL Tools // // Copyright (C) 2013 - 2026, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // ////////////////////////////////////////////////////////////// import { useMemo } from 'react'; export const FieldControl = ({schemaId, item}) => { const Control = item.control; const {key, ...props} = item.controlProps; const children = item.controls; return useMemo(() => <Control key={key} {...props}> { children?.map( (child, idx) => <FieldControl key={`${child.controlProps.id}-${idx}`} item={child}/> ) } </Control>, [schemaId, Control, props, children] ); };