diff --git a/src/pages/compositeCompLibrary/compGrid.tsx b/src/pages/compositeCompLibrary/compGrid.tsx index 4bebc0c..9ef5a54 100644 --- a/src/pages/compositeCompLibrary/compGrid.tsx +++ b/src/pages/compositeCompLibrary/compGrid.tsx @@ -3,23 +3,49 @@ import styles from './style/compGrid.module.less'; import CompNode from './compNode'; import { complexData } from './test/tempData'; import { Input, Grid, Pagination } from '@arco-design/web-react'; +import { getMyFlowList, getPubFlowList } from '@/api/flow'; const InputSearch = Input.Search; const Row = Grid.Row; const Col = Grid.Col; interface CompGridProps { - componentType: 'myComplex' | 'publicComplex'; + componentType: 'minePage' | 'publicList'; } const CompGrid: React.FC = ({ componentType }) => { - const [currentComponentType, setCurrentComponentType] = useState(''); const [compData, setCompData] = useState([]); + const [paginationData, setPaginationData] = useState({ totalCount: 0, currPage: 1, pageSize: 11 }); useEffect(() => { - setCurrentComponentType(componentType); - setCompData(complexData[`${componentType}`]); + if (componentType) getComponentData(componentType); + }, [componentType]); + const getComponentData = async (key: 'minePage' | 'publicList') => { + const apiList = { + minePage: getMyFlowList, + publicList: getPubFlowList + }; + const res: any = await apiList[key]({ + currPage: paginationData.currPage, + pageSize: paginationData.pageSize + }); + + if (res.code === 200) { + setCompData(res.data.list); + setPaginationData({ + totalCount: res.data.totalCount, + currPage: res.data.currPage, + pageSize: res.data.pageSize + }); + } + }; + + + useEffect(() => { + getComponentData(componentType); + }, [paginationData.currPage]); + return ( <>
@@ -45,7 +71,15 @@ const CompGrid: React.FC = ({ componentType }) => { })}
- + { + setPaginationData({ + ...paginationData, + currPage: number + }); + }} + />
diff --git a/src/pages/compositeCompLibrary/index.tsx b/src/pages/compositeCompLibrary/index.tsx index 1a3dc67..949c7fb 100644 --- a/src/pages/compositeCompLibrary/index.tsx +++ b/src/pages/compositeCompLibrary/index.tsx @@ -1,35 +1,45 @@ -import React from 'react'; +import React, { useState } from 'react'; import styles from './style/index.module.less'; import CustomCard from '@/components/CustomCard/index'; import { Tabs } from '@arco-design/web-react'; import CompGrid from './compGrid'; +import { getPubFlowList, getMyFlowList } from '@/api/flow'; const TabPane = Tabs.TabPane; function CompositeCompLibrary() { + const [activeKey, setActiveKey] = useState<'minePage' | 'publicList'>('minePage'); + + const handelChangeTabs = (key) => { + setActiveKey(key); + }; + return ( <>
- + handelChangeTabs(e)} + > 我的复合组件 } > - + 公开复合组件 }> - +