123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- import Tables from "@/components/Tables"
- import { useAjax } from "@/Hook/useAjax"
- import { getDataSourceApi, sysDataSourceApi } from "@/services/launchAdq/createAd"
- import { CheckOutlined, SyncOutlined } from "@ant-design/icons"
- import { Button, Modal, Space } from "antd"
- import React, { useEffect, useState } from "react"
- import style from '../goodsModal/index.less'
- import columns from './tableConfig'
- /**
- * 获取数据源
- * @returns
- */
- interface Props {
- visible?: boolean,
- onClose?: () => void,
- onChange?: (data: any) => void,
- data: any
- }
- const DataSourceModal: React.FC<Props> = (props) => {
- /************************/
- const { visible, onClose, data: data1, onChange } = props
- const [tableData, setTableData] = useState<any[]>([])//table数据
- const [selectAdz, setSelectAdz] = useState<number>(1) // 选择广告主
- const [data, setData] = useState<any>(data1)
- const getDataSource = useAjax((params) => getDataSourceApi(params))
- const sysDataSource = useAjax((params) => sysDataSourceApi(params))
- /************************/
- useEffect(() => {
- if (data?.length > 0) {
- getList([data[selectAdz - 1].adAccountId])
- } else {
- setTableData([])
- }
- }, [selectAdz])
- // 获取数据源
- const getList = (params: number[]) => {
- getDataSource.run(params).then(res => {
- console.log('res===>', res)
- if (res && Object.keys(res)?.indexOf(params[0].toString()) !== -1) {
- setTableData(res[params[0]]?.map((item: { userActionSetId: string }) => ({ ...item, id: item?.userActionSetId })))
- } else {
- setTableData([])
- }
- })
- }
- const handleOk = () => {
- onChange && onChange(data)
- }
- // 同步数据源
- const synDataSourceList = () => {
- sysDataSource.run(data?.map((item: { id: number }) => item?.id)).then(res => {
- getList([data[selectAdz - 1].adAccountId])
- })
- }
- /** 设置选中广告主 */
- const handleSelectAdz = (value: number, item: any) => {
- if (value === selectAdz) {
- return
- }
- setSelectAdz(value)
- }
- /** 表格选折 */
- const onChangeTable = (selectedRowKeys: React.Key[], selectedRows: any) => {
- let newData = JSON.parse(JSON.stringify(data))
- newData[selectAdz - 1]['userActionSetsList'] = selectedRows
- setData([...newData])
- }
- return <Modal
- title={<Space>
- <span>数据源</span>
- <Button size="small" onClick={() => { synDataSourceList() }} loading={sysDataSource?.loading}>同步数据源</Button>
- </Space>}
- visible={visible}
- onCancel={() => { onClose && onClose() }}
- onOk={handleOk}
- width={1100}
- className={style.SelectPackage}
- bodyStyle={{ padding: '0 10px 0 10px' }}
- >
- <div className={style.content}>
- <div className={style.left}>
- <h4 className={style.title}>广告主账户</h4>
- {data?.map((item: { adAccountId: number, id: number }, index: number) => (
- <div key={index} onClick={() => { handleSelectAdz(index + 1, item) }} className={`${style.accItem} ${selectAdz === index + 1 && style.select} `}>
- {item?.adAccountId}
- {data[index].userActionSetsList?.length > 0 && <CheckOutlined style={{ color: '#1890ff' }} />}
- </div>))}
- </div>
- <div className={style.right}>
- <Space style={{ marginBottom: 10 }}>
- <Button icon={<SyncOutlined />} type='link' loading={getDataSource?.loading} onClick={() => { getList([data[selectAdz - 1].adAccountId]) }}></Button>
- </Space>
- <Tables
- columns={columns()}
- dataSource={tableData}
- size="small"
- loading={getDataSource?.loading}
- scroll={{ y: 300 }}
- bordered
- rowSelection={{
- type: 'checkbox',
- selectedRowKeys: data[selectAdz - 1]?.userActionSetsList?.map((item: any) => item?.id?.toString()),
- onChange: onChangeTable
- }}
- />
- </div>
- </div>
- </Modal>
- }
- export default React.memo(DataSourceModal)
|