123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- import Tables from "@/components/Tables"
- import { useAjax } from "@/Hook/useAjax"
- import { getDataSourceApi, sysDataSourceApi } from "@/services/launchAdq/createAd"
- import { CheckOutlined, QuestionCircleOutlined, SyncOutlined } from "@ant-design/icons"
- import { Button, message, Modal, Space, Tooltip } from "antd"
- import React, { useEffect, useState } from "react"
- import style from '../goodsModal/index.less'
- import columns from './tableConfig'
- /**
- * 获取数据源
- * @returns
- */
- interface Props {
- promotedObjectType?: string
- visible?: boolean,
- onClose?: () => void,
- onChange?: (data: any) => void,
- data: any
- }
- const DataSourceModal: React.FC<Props> = (props) => {
- /************************/
- const { visible, onClose, data: data1, onChange, promotedObjectType } = 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({ accountIds: params, promotedObjectType }).then(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: { adAccountId: number }) => item?.adAccountId)).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])
- }
- /** 一键设置 */
- const setOnekey = () => {
- let dataSourceIds: number[] = data[selectAdz - 1]['userActionSetsList']?.map((item: { userActionSetId: number }) => item.userActionSetId)
- let newData = JSON.parse(JSON.stringify(data))
- const hide = message.loading(`正在设置...`, 0, () => {
- message.success('设置成功');
- });
- getDataSource.run({ accountIds: newData?.filter((item: { adAccountId: number }) => item.adAccountId !== data[selectAdz - 1].adAccountId)?.map((item: { adAccountId: number }) => item?.adAccountId), promotedObjectType }).then(res => {
- if (res && typeof res === 'object') {
- Object.keys(res).forEach((key: string) => {
- let values = dataSourceIds.map(id => {
- let value = res[key]?.find((item: { userActionSetId: number }) => item.userActionSetId === id)
- if (value) {
- return { ...value, id: value.userActionSetId }
- }
- return undefined
- }).filter(item => item)
- if (values.length > 0) {
- newData = newData.map((item: { adAccountId: string }) => {
- if (item.adAccountId.toString() === key.toString()) {
- return { ...item, userActionSetsList: values }
- }
- return item
- })
- }
- })
- setData(newData)
- }
- message.success('设置完成');
- hide()
- })
- }
- return <Modal
- title={<Space>
- <span>数据源</span>
- <Button size="small" onClick={() => { synDataSourceList() }} type='link' 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 }} align="end" size={0}>
- <Button icon={<SyncOutlined />} type='link' loading={getDataSource?.loading} onClick={() => { getList([data[selectAdz - 1].adAccountId]) }}></Button>
- {data.length > 1 && <Button disabled={!data[selectAdz - 1]['userActionSetsList']?.length} onClick={setOnekey} type="link" loading={getDataSource.loading}>
- <Space>
- <span>一键设置</span>
- <Tooltip color="#FFF" overlayInnerStyle={{ color: '#000' }} title="设置其它账号有相同ID的数据源为那个账号的数据源(注意需要数据源ID相同,否则不设置)">
- <QuestionCircleOutlined />
- </Tooltip>
- </Space>
- </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)
|