mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 08:47:20 +00:00
chore: associationFilter.Item designer
This commit is contained in:
parent
ff717b972f
commit
7aa4d35c1a
@ -4,7 +4,7 @@ import { Col, Collapse, Input, Row, Tree } from 'antd';
|
|||||||
import cls from 'classnames';
|
import cls from 'classnames';
|
||||||
import React, { ChangeEvent, MouseEvent, useMemo, useState } from 'react';
|
import React, { ChangeEvent, MouseEvent, useMemo, useState } from 'react';
|
||||||
import { SortableItem } from '../../common';
|
import { SortableItem } from '../../common';
|
||||||
import { useCompile, useDesigner, useProps } from '../../hooks';
|
import { useCompile, useDesigner, useDesignerControl, useProps } from '../../hooks';
|
||||||
import { useToken } from '../__builtins__';
|
import { useToken } from '../__builtins__';
|
||||||
import { EllipsisWithTooltip } from '../input';
|
import { EllipsisWithTooltip } from '../input';
|
||||||
import { getLabelFormatValue, useLabelUiSchema } from '../record-picker';
|
import { getLabelFormatValue, useLabelUiSchema } from '../record-picker';
|
||||||
@ -21,6 +21,7 @@ export const AssociationFilterItem = (props) => {
|
|||||||
// 把一些可定制的状态通过 hook 提取出去了,为了兼容之前添加的 Table 区块,这里加了个默认值
|
// 把一些可定制的状态通过 hook 提取出去了,为了兼容之前添加的 Table 区块,这里加了个默认值
|
||||||
const fieldSchema = useFieldSchema();
|
const fieldSchema = useFieldSchema();
|
||||||
const Designer = useDesigner();
|
const Designer = useDesigner();
|
||||||
|
const { designerVisible, showDesigner, hideDesigner } = useDesignerControl();
|
||||||
const compile = useCompile();
|
const compile = useCompile();
|
||||||
const {
|
const {
|
||||||
list,
|
list,
|
||||||
@ -90,8 +91,12 @@ export const AssociationFilterItem = (props) => {
|
|||||||
const title = fieldSchema.title ?? collectionField?.uiSchema?.title;
|
const title = fieldSchema.title ?? collectionField?.uiSchema?.title;
|
||||||
|
|
||||||
return wrapSSR(
|
return wrapSSR(
|
||||||
<SortableItem className={cls(componentCls, hashId, 'nb-block-item', props.className, 'SortableItem')}>
|
<SortableItem
|
||||||
<Designer />
|
className={cls(componentCls, hashId, 'nb-block-item', props.className, 'SortableItem')}
|
||||||
|
onMouseEnter={showDesigner}
|
||||||
|
onMouseLeave={hideDesigner}
|
||||||
|
>
|
||||||
|
{designerVisible ? <Designer /> : null}
|
||||||
<Collapse defaultActiveKey={defaultActiveKeyCollapse} ghost expandIcon={searchVisible ? () => null : undefined}>
|
<Collapse defaultActiveKey={defaultActiveKeyCollapse} ghost expandIcon={searchVisible ? () => null : undefined}>
|
||||||
<Panel
|
<Panel
|
||||||
className="Panel"
|
className="Panel"
|
||||||
|
Loading…
Reference in New Issue
Block a user