import React, {useEffect, useRef, useState} from 'react'; import { UserOutlined, } from '@ant-design/icons'; import {Layout, Menu, Button, theme, Avatar, Tabs} from 'antd'; import Hlexical from './Hlexical'; import ItemTree from "../../components/ItemTree"; import './index.less' import {store} from "../../redux/store"; import {isEmpty} from "../../utils/ObjectUtils"; import {useSelector, useDispatch} from "react-redux"; import {addTableBarItem, removeTableBarItem} from "../../redux/tableBarItem_reducer" const {Header, Sider, Content} = Layout; const Note = () => { const dispatch = useDispatch() const [collapsed, setCollapsed] = useState(false); // const { // token: { colorBgContainer }, // } = theme.useToken(); const colorBgContainer = '#800080' const [activeKey, setActiveKey] = useState(); const newTabIndex = useRef(0); const items = useSelector(state => state.tableBarItem.data) const openFile = useSelector(state => state.clickFileMessage.data) console.log("store.getState().clickFileMessage.data:",openFile) if (!isEmpty(openFile) && activeKey !== openFile.filePath&&isEmpty(activeKey)) { setActiveKey(openFile.filePath) } if (items.filter(fileItem => fileItem.key === openFile.filePath).length === 0 && !isEmpty(openFile)) { console.log("items.filter(fileItem => fileItem.key === openFile.filePath)",items) dispatch(addTableBarItem( { label: openFile.fileName, children: openFile.filePath, key: openFile.filePath, } )) } const onChange = (newActiveKey) => { console.log("setActiveKey(newActiveKey)",newActiveKey) setActiveKey(newActiveKey); }; const add = () => { const newActiveKey = `newTab${newTabIndex.current++}`; // const newPanes = [...items]; // newPanes.push({ // label: 'New Tab', // children:
上善若水