123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- import { useAjax } from "@/Hook/useAjax"
- import { PromotionDataDay, getPromotionDataDatListApi, getPromotionDataDatTotalApi, newEditTTAdgroupsDataApi } from "@/services/gameData/adlist"
- import React, { useEffect, useState } from "react"
- import columns12 from "./tableConfig"
- import QueryForm from "@/components/QueryForm"
- import TableData from "../../components/TableData"
- import moment from "moment"
- import { getPresets } from "@/components/QueryForm/const"
- import DayAd from "./dayAd"
- import { Button, message, Modal, notification, Space, Table } from "antd"
- import { PauseCircleOutlined, PlayCircleOutlined } from "@ant-design/icons"
- const Monitor = () => {
- /***************************************/
- const [queryForm, setQueryForm] = useState<PromotionDataDay>({ pageNum: 1, pageSize: 50, sourceSystem: 'ZX_ONE', costBeginDate: moment().format('YYYY-MM-DD'), costEndDate: moment().format('YYYY-MM-DD') })
- const [totalData, setTotalData] = useState<any[]>([])
- const [visible, setVisible] = useState<boolean>(false)
- const [promotionId, setPromotionId] = useState<number>()
- const [adName, setAdName] = useState<string>('')
- const [selectedRows, setSelectedRows] = useState<any[]>([])
- const [failIdList, setFailIdList] = useState<{ adgroupId: number, code: number, message: string, messageCn: string }[]>([])
- const [failVisible, setFailVisible] = useState<boolean>(false)
- const getPromotionDataDatList = useAjax((params) => getPromotionDataDatListApi(params))
- const getPromotionDataDatTotal = useAjax((params) => getPromotionDataDatTotalApi(params))
- const newEditTTAdgroupsData = useAjax((params) => newEditTTAdgroupsDataApi(params))
- /***************************************/
- useEffect(() => {
- getPromotionDataDatList.run(queryForm)
- getPromotionDataDatTotal.run(queryForm).then((res: { id: number; accountName: string }) => {
- res.id = 1
- res.accountName = '总计'
- setTotalData([res])
- })
- }, [queryForm])
- const dayHandle = (data: any) => {
- setVisible(true)
- setAdName(data.promotionName)
- setPromotionId(data.promotionId)
- }
- // 批量启停
- const adStatus = (type: 'play' | 'suspend') => {
- let params: any = {}
- params.suspend = type === 'play' ? false : true
- params.adgroupIds = selectedRows.map(item => item.accountId + ',' + item.promotionId)
- if (params.adgroupIds.length === 0) {
- message.warn(`所以账号都是${type === 'play' ? '启动' : '暂停'}状态,无需${type === 'play' ? '启动' : '暂停'}操作`)
- return
- }
- let hide = message.loading(`正在设置...`, 0, () => {
- message.success('设置成功');
- });
- newEditTTAdgroupsData.run(params).then((res: any) => {
- if (res?.failIdList?.length === 0) {
- message.success(`操作完成!`)
- getPromotionDataDatList.refresh()
- setSelectedRows([])
- } else {
- setFailIdList(res?.list || [])
- setFailVisible(true)
- }
- hide()
- })
- }
- return <div>
- <TableData
- czChild={<Space>
- {/* <Switch checkedChildren="开启全选" unCheckedChildren="关闭全选" checked={!isZj} onChange={(e) => { setIsZj(!e); }} /> */}
- <Button type='primary' size="small" style={{ background: '#67c23a', borderColor: '#67c23a' }} loading={newEditTTAdgroupsData.loading} icon={<PlayCircleOutlined />} disabled={selectedRows.length === 0} onClick={() => adStatus('play')}>启动</Button>
- <Button type='primary' size="small" style={{ background: '#e6a23c', borderColor: '#e6a23c' }} loading={newEditTTAdgroupsData.loading} icon={<PauseCircleOutlined />} disabled={selectedRows.length === 0} onClick={() => adStatus('suspend')}>暂停</Button>
- {selectedRows.length > 0 && <Button type="link" danger onClick={() => setSelectedRows([])}>清空</Button>}
- <span style={{ color: 'red' }}>操作完数据结果延时5分钟之内,即时结果去腾讯后台查看</span>
- </Space>}
- leftChild={<QueryForm
- initialValues={{ sourceSystem: 'ZX_ONE', consumeDay: [moment(), moment()] }}
- onChange={(data: any) => {
- const { type, gameClassify, costBeginDay, costEndDay, sysUserName, regPayIntervalTime, ...params } = data
- let newQueryForm = JSON.parse(JSON.stringify(queryForm))
- newQueryForm.pageNum = 1
- newQueryForm.pitcherName = sysUserName
- newQueryForm.accountType = type
- newQueryForm.classify = gameClassify
- if (costBeginDay && costEndDay) {
- newQueryForm.costBeginDate = costBeginDay
- newQueryForm.costEndDate = costEndDay
- } else {
- delete newQueryForm.costBeginDate
- delete newQueryForm.costEndDate
- }
- if (regPayIntervalTime?.length > 0 && (regPayIntervalTime[0] || regPayIntervalTime[1])) {
- newQueryForm.firstRechargeAmountMin = regPayIntervalTime[0]
- newQueryForm.firstRechargeAmountMax = regPayIntervalTime[1]
- }
- setQueryForm({ ...newQueryForm, ...params })
- }}
- isSource
- isAccountId
- isAccount
- isType
- isAgentId
- isBGGameClassify
- isConsumeDay={{ ranges: getPresets() }}
- isCpName
- isGameId
- isSysUserId
- isProjectId
- isProjectName
- isPromotionId
- isPromotionName
- isAdTTStatus
- isPayIntervalTime={{ tips: '首日充值金额区间(元)' }}
- />}
- isZj
- totalData={totalData}
- scroll={{ x: 1000, y: 600 }}
- ajax={getPromotionDataDatList}
- fixed={{ left: 3, right: 1 }}
- dataSource={getPromotionDataDatList?.data?.records?.map((item: any, index: number) => ({ ...item, id: Number(queryForm.pageNum.toString() + index.toString()) }))}
- total={getPromotionDataDatList?.data?.total}
- page={queryForm.pageNum}
- pageSize={queryForm.pageSize}
- sortData={{
- field: queryForm?.sortFiled,
- order: queryForm?.sortType === 'asc' ? 'ascend' : 'descend'
- }}
- title='头条广告监控'
- onChange={(props: any) => {
- let { pagination, sortData } = props
- let { current, pageSize } = pagination
- let newQueryForm = JSON.parse(JSON.stringify(queryForm))
- if (sortData && sortData?.order) {
- newQueryForm['sortType'] = sortData?.order === 'ascend' ? 'asc' : 'desc'
- newQueryForm['sortFiled'] = sortData?.field
- } else {
- delete newQueryForm['sortType']
- delete newQueryForm['sortFiled']
- }
- newQueryForm.pageNum = current
- newQueryForm.pageSize = pageSize
- setQueryForm({ ...newQueryForm })
- }}
- config={columns12(dayHandle)}
- configName={'头条广告监控'}
- rowSelection={{
- selectedRowKeys: selectedRows.map(item => item.id + ''),
- getCheckboxProps: (record: any) => ({
- disabled: record.status === 'STATUS_DELETED' || record?.accountName === '总计'
- }),
- onSelect: (record: { promotionId: number }, selected: boolean) => {
- if (selected) {
- selectedRows.push({ ...record })
- setSelectedRows([...selectedRows])
- } else {
- let newSelectAccData = selectedRows.filter((item: { promotionId: number }) => item.promotionId !== record.promotionId)
- setSelectedRows([...newSelectAccData])
- }
- },
- onSelectAll: (selected: boolean, selectedRowss: { promotionId: number }[], changeRows: { promotionId: number }[]) => {
- if (selected) {
- let newSelectAccData = [...selectedRows]
- changeRows.forEach((item: { promotionId: number }) => {
- let index = newSelectAccData.findIndex((ite: { promotionId: number }) => ite.promotionId === item.promotionId)
- if (index === -1) {
- newSelectAccData.push({ ...item })
- }
- })
- setSelectedRows([...newSelectAccData])
- } else {
- let newSelectAccData = selectedRows.filter((item: { promotionId: number }) => {
- let index = changeRows.findIndex((ite: { promotionId: number }) => ite.promotionId === item.promotionId)
- if (index !== -1) {
- return false
- } else {
- return true
- }
- })
- setSelectedRows([...newSelectAccData])
- }
- }
- }}
- />
- {failVisible && <Modal
- title={<strong>报错信息</strong>}
- visible={failVisible}
- className='modalResetCss'
- width={650}
- onCancel={() => { setFailVisible(false); setFailIdList([]) }}
- footer={null}
- >
- <Table
- size="small"
- bordered
- rowKey={'creativeId'}
- columns={[{
- title: '创意ID',
- dataIndex: 'creativeId',
- key: 'creativeId',
- width: 110,
- render: (value) => <span style={{ fontSize: 12 }}>{value}</span>,
- }, {
- title: 'code',
- dataIndex: 'code',
- key: 'code',
- width: 70,
- align: 'center',
- render: (value) => <span style={{ fontSize: 12 }}>{value}</span>,
- }, {
- title: '错误信息',
- dataIndex: 'messageCn',
- key: 'messageCn',
- render: (value) => <span style={{ fontSize: 12 }}>{value}</span>,
- }]}
- dataSource={failIdList}
- />
- </Modal>}
- {visible && <DayAd adName={adName} visible={visible} onClose={() => { setVisible(false); setPromotionId(undefined) }} queryForm={queryForm} promotionId={promotionId} />}
- </div>
- }
- export default Monitor
|