2025-11-27 20:42:46 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* FlexLayoutDockContainer - Dockable panel container based on FlexLayout
|
|
|
|
|
|
* FlexLayoutDockContainer - 基于 FlexLayout 的可停靠面板容器
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
import { useCallback, useRef, useEffect, useState, useMemo } from 'react';
|
2025-11-18 14:46:51 +08:00
|
|
|
|
import { Layout, Model, TabNode, IJsonModel, Actions, Action, DockLocation } from 'flexlayout-react';
|
2025-10-27 09:29:11 +08:00
|
|
|
|
import 'flexlayout-react/style/light.css';
|
|
|
|
|
|
import '../styles/FlexLayoutDock.css';
|
2025-11-18 14:46:51 +08:00
|
|
|
|
import { LayoutMerger, LayoutBuilder, FlexDockPanel } from '../shared/layout';
|
2025-10-27 09:29:11 +08:00
|
|
|
|
|
2025-11-18 14:46:51 +08:00
|
|
|
|
export type { FlexDockPanel };
|
2025-10-27 09:29:11 +08:00
|
|
|
|
|
2025-11-27 20:42:46 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* Panel IDs that should persist in DOM when switching tabs.
|
|
|
|
|
|
* These panels contain WebGL canvas or other stateful content that cannot be unmounted.
|
|
|
|
|
|
* 切换 tab 时需要保持 DOM 存在的面板 ID。
|
|
|
|
|
|
* 这些面板包含 WebGL canvas 或其他不能卸载的有状态内容。
|
|
|
|
|
|
*/
|
|
|
|
|
|
const PERSISTENT_PANEL_IDS = ['viewport'];
|
|
|
|
|
|
|
|
|
|
|
|
/** Tab header height in pixels | Tab 标签栏高度(像素) */
|
|
|
|
|
|
const TAB_HEADER_HEIGHT = 28;
|
|
|
|
|
|
|
|
|
|
|
|
interface PanelRect {
|
|
|
|
|
|
domRect: DOMRect;
|
|
|
|
|
|
isSelected: boolean;
|
|
|
|
|
|
isVisible?: boolean;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Get panel rectangle from FlexLayout model.
|
|
|
|
|
|
* 从 FlexLayout 模型获取面板矩形。
|
|
|
|
|
|
*/
|
|
|
|
|
|
function getPanelRectFromModel(model: Model, panelId: string): PanelRect | null {
|
|
|
|
|
|
const node = model.getNodeById(panelId);
|
|
|
|
|
|
if (!node || node.getType() !== 'tab') return null;
|
|
|
|
|
|
|
|
|
|
|
|
const parent = node.getParent();
|
|
|
|
|
|
if (!parent || parent.getType() !== 'tabset') return null;
|
|
|
|
|
|
|
|
|
|
|
|
const tabset = parent as any;
|
|
|
|
|
|
const selectedNode = tabset.getSelectedNode();
|
|
|
|
|
|
const isSelected = selectedNode?.getId() === panelId;
|
|
|
|
|
|
const tabsetRect = tabset.getRect();
|
|
|
|
|
|
|
|
|
|
|
|
if (!tabsetRect) return null;
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
domRect: new DOMRect(
|
|
|
|
|
|
tabsetRect.x,
|
|
|
|
|
|
tabsetRect.y + TAB_HEADER_HEIGHT,
|
|
|
|
|
|
tabsetRect.width,
|
|
|
|
|
|
tabsetRect.height - TAB_HEADER_HEIGHT
|
|
|
|
|
|
),
|
|
|
|
|
|
isSelected
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Get panel rectangle from DOM placeholder element.
|
|
|
|
|
|
* 从 DOM 占位符元素获取面板矩形。
|
|
|
|
|
|
*/
|
|
|
|
|
|
function getPanelRectFromDOM(panelId: string): PanelRect | null {
|
|
|
|
|
|
const placeholder = document.querySelector(`[data-panel-id="${panelId}"]`);
|
|
|
|
|
|
if (!placeholder) return null;
|
|
|
|
|
|
|
|
|
|
|
|
const placeholderRect = placeholder.getBoundingClientRect();
|
|
|
|
|
|
if (placeholderRect.width <= 0 || placeholderRect.height <= 0) return null;
|
|
|
|
|
|
|
|
|
|
|
|
const container = document.querySelector('.flexlayout-dock-container');
|
|
|
|
|
|
if (!container) return null;
|
|
|
|
|
|
|
|
|
|
|
|
const containerRect = container.getBoundingClientRect();
|
|
|
|
|
|
const parentTab = placeholder.closest('.flexlayout__tabset_content');
|
|
|
|
|
|
const isVisible = parentTab ? (parentTab as HTMLElement).offsetParent !== null : false;
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
domRect: new DOMRect(
|
|
|
|
|
|
placeholderRect.x - containerRect.x,
|
|
|
|
|
|
placeholderRect.y - containerRect.y,
|
|
|
|
|
|
placeholderRect.width,
|
|
|
|
|
|
placeholderRect.height
|
|
|
|
|
|
),
|
|
|
|
|
|
isSelected: false,
|
|
|
|
|
|
isVisible
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-27 09:29:11 +08:00
|
|
|
|
interface FlexLayoutDockContainerProps {
|
2025-11-27 20:42:46 +08:00
|
|
|
|
panels: FlexDockPanel[];
|
|
|
|
|
|
onPanelClose?: (panelId: string) => void;
|
|
|
|
|
|
activePanelId?: string;
|
2025-10-27 09:29:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-04 23:53:26 +08:00
|
|
|
|
export function FlexLayoutDockContainer({ panels, onPanelClose, activePanelId }: FlexLayoutDockContainerProps) {
|
|
|
|
|
|
const layoutRef = useRef<Layout>(null);
|
|
|
|
|
|
const previousLayoutJsonRef = useRef<string | null>(null);
|
|
|
|
|
|
const previousPanelIdsRef = useRef<string>('');
|
|
|
|
|
|
const previousPanelTitlesRef = useRef<Map<string, string>>(new Map());
|
|
|
|
|
|
|
2025-11-27 20:42:46 +08:00
|
|
|
|
// Persistent panel state | 持久化面板状态
|
|
|
|
|
|
const [persistentPanelRects, setPersistentPanelRects] = useState<Map<string, DOMRect>>(new Map());
|
|
|
|
|
|
const [visiblePersistentPanels, setVisiblePersistentPanels] = useState<Set<string>>(
|
|
|
|
|
|
() => new Set(PERSISTENT_PANEL_IDS)
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
const persistentPanels = useMemo(
|
|
|
|
|
|
() => panels.filter((p) => PERSISTENT_PANEL_IDS.includes(p.id)),
|
|
|
|
|
|
[panels]
|
|
|
|
|
|
);
|
|
|
|
|
|
|
2025-11-02 23:50:41 +08:00
|
|
|
|
const createDefaultLayout = useCallback((): IJsonModel => {
|
2025-11-18 14:46:51 +08:00
|
|
|
|
return LayoutBuilder.createDefaultLayout(panels, activePanelId);
|
2025-11-04 23:53:26 +08:00
|
|
|
|
}, [panels, activePanelId]);
|
|
|
|
|
|
|
|
|
|
|
|
const [model, setModel] = useState<Model>(() => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
return Model.fromJson(createDefaultLayout());
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
throw new Error(`Failed to create layout model: ${error instanceof Error ? error.message : String(error)}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 检查面板ID列表是否真的变化了(而不只是标题等属性变化)
|
2025-11-23 14:49:37 +08:00
|
|
|
|
const currentPanelIds = panels.map((p) => p.id).sort().join(',');
|
2025-11-04 23:53:26 +08:00
|
|
|
|
const previousIds = previousPanelIdsRef.current;
|
|
|
|
|
|
|
|
|
|
|
|
// 检查标题是否变化
|
2025-11-23 14:49:37 +08:00
|
|
|
|
const currentTitles = new Map(panels.map((p) => [p.id, p.title]));
|
2025-11-04 23:53:26 +08:00
|
|
|
|
const titleChanges: Array<{ id: string; newTitle: string }> = [];
|
|
|
|
|
|
|
|
|
|
|
|
for (const panel of panels) {
|
|
|
|
|
|
const previousTitle = previousPanelTitlesRef.current.get(panel.id);
|
|
|
|
|
|
if (previousTitle && previousTitle !== panel.title) {
|
|
|
|
|
|
titleChanges.push({ id: panel.id, newTitle: panel.title });
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 更新标题引用
|
|
|
|
|
|
previousPanelTitlesRef.current = currentTitles;
|
|
|
|
|
|
|
|
|
|
|
|
// 如果只是标题变化,更新tab名称
|
|
|
|
|
|
if (titleChanges.length > 0 && currentPanelIds === previousIds && model) {
|
|
|
|
|
|
titleChanges.forEach(({ id, newTitle }) => {
|
|
|
|
|
|
const node = model.getNodeById(id);
|
|
|
|
|
|
if (node && node.getType() === 'tab') {
|
|
|
|
|
|
model.doAction(Actions.renameTab(id, newTitle));
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (currentPanelIds === previousIds) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 计算新增和移除的面板
|
2025-11-23 14:49:37 +08:00
|
|
|
|
const prevSet = new Set(previousIds.split(',').filter((id) => id));
|
|
|
|
|
|
const currSet = new Set(currentPanelIds.split(',').filter((id) => id));
|
|
|
|
|
|
const newPanelIds = Array.from(currSet).filter((id) => !prevSet.has(id));
|
|
|
|
|
|
const removedPanelIds = Array.from(prevSet).filter((id) => !currSet.has(id));
|
2025-11-04 23:53:26 +08:00
|
|
|
|
|
|
|
|
|
|
previousPanelIdsRef.current = currentPanelIds;
|
|
|
|
|
|
|
|
|
|
|
|
// 如果已经有布局且只是添加新面板,使用Action动态添加
|
|
|
|
|
|
if (model && newPanelIds.length > 0 && removedPanelIds.length === 0 && previousIds) {
|
|
|
|
|
|
// 找到要添加的面板
|
2025-11-23 14:49:37 +08:00
|
|
|
|
const newPanels = panels.filter((p) => newPanelIds.includes(p.id));
|
2025-11-04 23:53:26 +08:00
|
|
|
|
|
|
|
|
|
|
// 找到中心区域的tabset ID
|
|
|
|
|
|
let centerTabsetId: string | null = null;
|
|
|
|
|
|
|
|
|
|
|
|
model.visitNodes((node: any) => {
|
|
|
|
|
|
if (node.getType() === 'tabset') {
|
|
|
|
|
|
const tabset = node as any;
|
|
|
|
|
|
// 检查是否是中心tabset
|
|
|
|
|
|
const children = tabset.getChildren();
|
|
|
|
|
|
const hasNonSidePanel = children.some((child: any) => {
|
|
|
|
|
|
const id = child.getId();
|
|
|
|
|
|
return !id.includes('hierarchy') &&
|
|
|
|
|
|
!id.includes('asset') &&
|
|
|
|
|
|
!id.includes('inspector') &&
|
|
|
|
|
|
!id.includes('console');
|
|
|
|
|
|
});
|
|
|
|
|
|
if (hasNonSidePanel && !centerTabsetId) {
|
|
|
|
|
|
centerTabsetId = tabset.getId();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (centerTabsetId) {
|
|
|
|
|
|
// 动态添加tab到中心tabset
|
2025-11-23 14:49:37 +08:00
|
|
|
|
newPanels.forEach((panel) => {
|
2025-11-04 23:53:26 +08:00
|
|
|
|
model.doAction(Actions.addNode(
|
|
|
|
|
|
{
|
|
|
|
|
|
type: 'tab',
|
|
|
|
|
|
name: panel.title,
|
|
|
|
|
|
id: panel.id,
|
|
|
|
|
|
component: panel.id,
|
|
|
|
|
|
enableClose: panel.closable !== false
|
|
|
|
|
|
},
|
|
|
|
|
|
centerTabsetId!,
|
|
|
|
|
|
DockLocation.CENTER,
|
|
|
|
|
|
-1 // 添加到末尾
|
|
|
|
|
|
));
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 选中最后添加的面板
|
|
|
|
|
|
const lastPanel = newPanels[newPanels.length - 1];
|
|
|
|
|
|
if (lastPanel) {
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
const node = model.getNodeById(lastPanel.id);
|
|
|
|
|
|
if (node) {
|
|
|
|
|
|
model.doAction(Actions.selectTab(lastPanel.id));
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 0);
|
|
|
|
|
|
}
|
2025-10-27 09:29:11 +08:00
|
|
|
|
|
2025-11-04 23:53:26 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 否则完全重建布局
|
|
|
|
|
|
const defaultLayout = createDefaultLayout();
|
|
|
|
|
|
|
|
|
|
|
|
// 如果有保存的布局,尝试合并
|
|
|
|
|
|
if (previousLayoutJsonRef.current && previousIds) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const savedLayout = JSON.parse(previousLayoutJsonRef.current);
|
2025-11-18 14:46:51 +08:00
|
|
|
|
const mergedLayout = LayoutMerger.merge(savedLayout, defaultLayout, panels);
|
2025-11-04 23:53:26 +08:00
|
|
|
|
const newModel = Model.fromJson(mergedLayout);
|
|
|
|
|
|
setModel(newModel);
|
|
|
|
|
|
return;
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
// 合并失败,使用默认布局
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 使用默认布局
|
|
|
|
|
|
const newModel = Model.fromJson(defaultLayout);
|
|
|
|
|
|
setModel(newModel);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
throw new Error(`Failed to update layout model: ${error instanceof Error ? error.message : String(error)}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
}, [createDefaultLayout, panels]);
|
2025-10-27 09:29:11 +08:00
|
|
|
|
|
2025-11-27 20:42:46 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* Track persistent panel positions and visibility.
|
|
|
|
|
|
* Uses FlexLayout model to determine if panel tab is selected,
|
|
|
|
|
|
* falls back to DOM measurement if model data unavailable.
|
|
|
|
|
|
* 追踪持久化面板的位置和可见性。
|
|
|
|
|
|
* 使用 FlexLayout 模型判断面板 tab 是否被选中,
|
|
|
|
|
|
* 如果模型数据不可用则回退到 DOM 测量。
|
|
|
|
|
|
*/
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
if (!model) return;
|
|
|
|
|
|
|
|
|
|
|
|
const updatePersistentPanelPositions = () => {
|
|
|
|
|
|
const newRects = new Map<string, DOMRect>();
|
|
|
|
|
|
const newVisible = new Set<string>();
|
|
|
|
|
|
|
|
|
|
|
|
for (const panelId of PERSISTENT_PANEL_IDS) {
|
|
|
|
|
|
// Try to get position from FlexLayout model
|
|
|
|
|
|
const rect = getPanelRectFromModel(model, panelId);
|
|
|
|
|
|
if (rect) {
|
|
|
|
|
|
newRects.set(panelId, rect.domRect);
|
|
|
|
|
|
if (rect.isSelected) {
|
|
|
|
|
|
newVisible.add(panelId);
|
|
|
|
|
|
}
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Fallback: measure placeholder element in DOM
|
|
|
|
|
|
const placeholderRect = getPanelRectFromDOM(panelId);
|
|
|
|
|
|
if (placeholderRect) {
|
|
|
|
|
|
newRects.set(panelId, placeholderRect.domRect);
|
|
|
|
|
|
if (placeholderRect.isVisible) {
|
|
|
|
|
|
newVisible.add(panelId);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
setPersistentPanelRects(newRects);
|
|
|
|
|
|
setVisiblePersistentPanels(newVisible);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Initial update after DOM render
|
|
|
|
|
|
requestAnimationFrame(updatePersistentPanelPositions);
|
|
|
|
|
|
|
|
|
|
|
|
// Observe layout changes
|
|
|
|
|
|
const container = document.querySelector('.flexlayout-dock-container');
|
|
|
|
|
|
if (!container) return;
|
|
|
|
|
|
|
|
|
|
|
|
const mutationObserver = new MutationObserver(() => {
|
|
|
|
|
|
requestAnimationFrame(updatePersistentPanelPositions);
|
|
|
|
|
|
});
|
|
|
|
|
|
mutationObserver.observe(container, { childList: true, subtree: true, attributes: true });
|
|
|
|
|
|
|
|
|
|
|
|
const resizeObserver = new ResizeObserver(() => {
|
|
|
|
|
|
requestAnimationFrame(updatePersistentPanelPositions);
|
|
|
|
|
|
});
|
|
|
|
|
|
resizeObserver.observe(container);
|
|
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
|
mutationObserver.disconnect();
|
|
|
|
|
|
resizeObserver.disconnect();
|
|
|
|
|
|
};
|
|
|
|
|
|
}, [model]);
|
|
|
|
|
|
|
2025-11-02 23:50:41 +08:00
|
|
|
|
const factory = useCallback((node: TabNode) => {
|
2025-11-27 20:42:46 +08:00
|
|
|
|
const componentId = node.getComponent() || '';
|
|
|
|
|
|
|
|
|
|
|
|
// Persistent panels render as placeholder, actual content is in overlay
|
|
|
|
|
|
// 持久化面板渲染为占位符,实际内容在覆盖层中
|
|
|
|
|
|
if (PERSISTENT_PANEL_IDS.includes(componentId)) {
|
|
|
|
|
|
return <div className="persistent-panel-placeholder" data-panel-id={componentId} />;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const panel = panels.find((p) => p.id === componentId);
|
|
|
|
|
|
return panel?.content ?? <div>Panel not found</div>;
|
2025-11-02 23:50:41 +08:00
|
|
|
|
}, [panels]);
|
2025-10-27 09:29:11 +08:00
|
|
|
|
|
2025-11-04 23:53:26 +08:00
|
|
|
|
const onAction = useCallback((action: Action) => {
|
2025-11-02 23:50:41 +08:00
|
|
|
|
if (action.type === Actions.DELETE_TAB) {
|
2025-11-04 23:53:26 +08:00
|
|
|
|
const tabId = (action.data as { node: string }).node;
|
2025-11-02 23:50:41 +08:00
|
|
|
|
if (onPanelClose) {
|
|
|
|
|
|
onPanelClose(tabId);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return action;
|
|
|
|
|
|
}, [onPanelClose]);
|
2025-10-27 09:29:11 +08:00
|
|
|
|
|
2025-11-04 23:53:26 +08:00
|
|
|
|
const onModelChange = useCallback((newModel: Model) => {
|
|
|
|
|
|
// 保存布局状态以便在panels变化时恢复
|
|
|
|
|
|
const layoutJson = newModel.toJson();
|
|
|
|
|
|
previousLayoutJsonRef.current = JSON.stringify(layoutJson);
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
2025-11-02 23:50:41 +08:00
|
|
|
|
return (
|
|
|
|
|
|
<div className="flexlayout-dock-container">
|
|
|
|
|
|
<Layout
|
2025-11-04 23:53:26 +08:00
|
|
|
|
ref={layoutRef}
|
2025-11-02 23:50:41 +08:00
|
|
|
|
model={model}
|
|
|
|
|
|
factory={factory}
|
|
|
|
|
|
onAction={onAction}
|
2025-11-04 23:53:26 +08:00
|
|
|
|
onModelChange={onModelChange}
|
2025-11-02 23:50:41 +08:00
|
|
|
|
/>
|
2025-11-27 20:42:46 +08:00
|
|
|
|
|
|
|
|
|
|
{/* Persistent panel overlay - always mounted, visibility controlled by CSS */}
|
|
|
|
|
|
{/* 持久化面板覆盖层 - 始终挂载,通过 CSS 控制可见性 */}
|
|
|
|
|
|
{persistentPanels.map((panel) => (
|
|
|
|
|
|
<PersistentPanelContainer
|
|
|
|
|
|
key={panel.id}
|
|
|
|
|
|
panel={panel}
|
|
|
|
|
|
rect={persistentPanelRects.get(panel.id)}
|
|
|
|
|
|
isVisible={visiblePersistentPanels.has(panel.id)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Container for persistent panel content.
|
|
|
|
|
|
* 持久化面板内容容器。
|
|
|
|
|
|
*/
|
|
|
|
|
|
function PersistentPanelContainer({
|
|
|
|
|
|
panel,
|
|
|
|
|
|
rect,
|
|
|
|
|
|
isVisible
|
|
|
|
|
|
}: {
|
|
|
|
|
|
panel: FlexDockPanel;
|
|
|
|
|
|
rect?: DOMRect;
|
|
|
|
|
|
isVisible: boolean;
|
|
|
|
|
|
}) {
|
|
|
|
|
|
const hasValidRect = rect && rect.width > 0 && rect.height > 0;
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="persistent-panel-container"
|
|
|
|
|
|
style={{
|
|
|
|
|
|
position: 'absolute',
|
|
|
|
|
|
left: hasValidRect ? rect.x : 0,
|
|
|
|
|
|
top: hasValidRect ? rect.y : 0,
|
|
|
|
|
|
width: hasValidRect ? rect.width : '100%',
|
|
|
|
|
|
height: hasValidRect ? rect.height : '100%',
|
|
|
|
|
|
visibility: isVisible ? 'visible' : 'hidden',
|
|
|
|
|
|
pointerEvents: isVisible ? 'auto' : 'none',
|
|
|
|
|
|
zIndex: isVisible ? 1 : -1,
|
|
|
|
|
|
overflow: 'hidden'
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
{panel.content}
|
2025-11-02 23:50:41 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
2025-10-27 09:29:11 +08:00
|
|
|
|
}
|