/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ import { Field } from '@formily/core'; import { useField, useFieldSchema } from '@formily/react'; import React from 'react'; import { useTranslation } from 'react-i18next'; import { useTableBlockContext } from '../block-provider'; import { useDesignable } from '../schema-component/hooks/useDesignable'; import { SchemaSettingsSelectItem } from './SchemaSettings'; export function SchemaSettingsRenderEngine() { const field = useField(); const fieldSchema = useFieldSchema(); const { t } = useTranslation(); const { dn } = useDesignable(); const { service } = useTableBlockContext(); const options = [ { value: 'string', label: t('String template'), }, { value: 'handlebars', label: t('Handlebars'), }, ]; return ( { fieldSchema['x-decorator-props'] = fieldSchema['x-decorator-props'] || {}; fieldSchema['x-decorator-props'].engine = engine; field.decoratorProps.engine = engine; dn.emit('patch', { schema: { ['x-uid']: fieldSchema['x-uid'], 'x-decorator-props': fieldSchema['x-decorator-props'], }, }); dn.refresh(); }} /> ); }