EditModal.jsx 18.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
import React, { useState, useEffect, useRef } from 'react'
import SiteModal from '@/components/Modal/SiteModa';
import { Form, Input, notification, Select, Checkbox, message, Button } from 'antd'
import BaseForm from '@/components/BaseForm/index';
import { Switch } from 'react-router';
import { iteratee } from 'lodash';
import styles from './EditModal.less';
import v from 'voca';
import VisibleRoleModal from './RolseSelect/VisibleRoleModal'
import VisibleIISAgentConfig from './IISAgentConfig/VisibleIISAgentConfig'
import { GetMessageTemplate } from '@/services/platform/messagemanage'
import moment from 'moment'
import { UpdateMessageConfig, InsertMessageConfig, AddIISAgentConfig } from '@/services/platform/messagemanage'

const { Item } = Form;

const EditModal = props => {


    const [form] = Form.useForm();
    const [loading, setLoading] = useState(false);
    const [isStart, setIsStart] = useState(false);
    const [IISConfig, setIISConfig] = useState(null)

    const { template, confirmModal } = props
    const [currentTrench, setCurrentTrench] = useState({
        isMessageShow: false,
        isAPPShow: false,
        isWEBShow: false,
        isWXShow: false
    })
    const plainOptions = ['平台弹框', '短信推送', '公众号推送'];
    const [APP_ITEMS, setAPP_ITEMS] = useState([])
    const [WEB_ITEMS, setWEB_ITEMS] = useState([])
    const [WX_ITEMS, setWX_ITEMS] = useState([])
    const [MES_ITEMS, setMES_ITEMS] = useState([])


    useEffect(() => {
        GetMessageTemplate().then(
            res => {
                if (res.code === 0) {
                    let arr1 = []
                    let arr2 = []
                    let arr3 = []
                    let arr4 = []
                    res.data.map((item, index) => {
                        if (item.Type === "公众号") {
                            arr1.push(item)
                        }
                        if (item.Type === "短信") {
                            arr2.push(item)
                        }
                        if (item.Type === "APP") {
                            arr3.push(item)
                        }
                        if (item.Type === "WEB") {
                            arr4.push(item)
                        }
                    })
                    setAPP_ITEMS(arr3)
                    setMES_ITEMS(arr2)
                    setWX_ITEMS(arr1)
                    setWEB_ITEMS(arr4)
                }
            }
        )
    }, [])
    useEffect(() => {

        if (template.ThemeName) {
            console.log(template);
            form.setFieldsValue({
                name: template.MsgType,
                isStart: template.IsStarted === "0" ? "关闭" : "开启",
                to_person: template.PushGroup,
                push_plan: template.MsgType,
                push_mode: template.PushMode === null ? '' : template.PushMode.split(","),

                app_template: template.AppTemplateID,
                app_path: template.AppFunctionPath,
                wx_template: parseInt(template.PublicTemplateID),
                h5_path: template.PublicPath,
                miniprogram_path: template.MiniAppRoute,
                web_template: template.WebTemplateID,
                web_path: template.WebFunctionPath,
                message_template: template.MsgTemplateID,
            })
            setCurrentTrench({
                isAPPShow: template.PushMode && template.PushMode.split(",").indexOf("平台弹框") > -1 ? true : false,
                isWXShow: template.PushMode && template.PushMode.split(",").indexOf("公众号推送") > -1 ? true : false,
                isWEBShow: template.PushMode &&template.PushMode.split(",").indexOf("平台弹框") > -1 ? true : false,
                isMessageShow: template.PushMode &&template.PushMode.split(",").indexOf("短信推送") > -1 ? true : false,
            })
        }

    }, [props])
    const onNameChange = (e) => {
        form.setFieldsValue({
            push_plan: e.target.value
        })
    }

    const onSubmit = () => {
        console.log(form.getFieldValue())
        let fv = form.getFieldValue()
        if (template.ThemeName) {
            console.log('fv.wx_template',fv.wx_template);
            console.log('fv.push_mode.toString()',fv.push_mode.toString());
            let a = {
                ID: template.ID,
                ThemeName: template.ThemeName,
                MsgType: fv.name,
                PublicTemplateID: fv.wx_template.toString(),
                PublicConfig: template.PublicConfig,
                PublicPath: fv.h5_path,
                MsgTemplateName: template.MsgTemplateName,
                MsgTemplateCode: template.MsgTemplateCode,
                MsgConfig: template.MsgConfig,
                MiniAppRoute: fv.miniprogram_path,
                AppFunctionPath: fv.app_path,
                AppConfig: template.AppConfig,
                WebFunctionPath: fv.web_path,
                WebConfig: template.WebConfig,
                IsDelete: template.IsDelete,
                InputTime: moment().format("YYYY-MM-DD HH:mm:ss"),
                Pusher: template.Pusher,
                PushMode: fv.push_mode.toString(),
                PushPath: template.PushPath,
                IsStarted: fv.isStart,
                MsgTemplateID: fv.message_template,
                AppTemplateID: fv.app_template,
                WebTemplateID: fv.web_template,
                PushGroup: fv.to_person.toString()
            }
            console.log(a)
            UpdateMessageConfig(a).then(
                res => {
                    if (res.code === 0) {
                        if (IISConfig) {
                            AddIISAgentConfig(IISConfig).then(
                                res => {
                                    if (res.code === 0) {
                                        message.success("保存成功")
                                        confirmModal()
                                    }
                                }
                            )
                        } else {
                            message.success("保存成功")
                            confirmModal()
                        }



                    }
                }
            )

        } else {
            console.log('fv.push_mode.toString()',fv.push_mode.toString());
            let b = {
                ThemeName: "定时推送",
                MsgType: fv.name,
                PublicTemplateID: fv.wx_template,
                PublicConfig: template.PublicConfig,
                PublicPath: fv.h5_path,
                MsgTemplateName: template.MsgTemplateName,
                MsgTemplateCode: template.MsgTemplateCode,
                MsgConfig: template.MsgConfig,
                MiniAppRoute: fv.miniprogram_path,
                AppFunctionPath: fv.app_path,
                AppConfig: template.AppConfig,
                WebFunctionPath: fv.web_path,
                WebConfig: template.WebConfig,
                IsDelete: template.IsDelete,
                InputTime: moment().format("YYYY-MM-DD HH:mm:ss"),
                Pusher: template.Pusher,
                PushMode: fv.push_mode.toString(),
                PushPath: template.PushPath,
                IsStarted: fv.isStart,
                MsgTemplateID: fv.message_template,
                AppTemplateID: fv.app_template,
                WebTemplateID: fv.web_template,
                PushGroup: fv.to_person.toString()
            }
            InsertMessageConfig(b).then(
                res => {
                    if (res.code === 0) {
                        if (IISConfig) {
                            AddIISAgentConfig(IISConfig).then(
                                res => {
                                    if (res.code === 0) {
                                        message.success("保存成功")
                                        confirmModal()
                                    }
                                }
                            )
                        } else {
                            message.success("保存成功")
                            confirmModal()
                        }
                    }
                }
            )
        }

    }
    const operateProject = () => {

    }
    const onTypeChange = (value) => {
        setCurrentTrench({
            isAPPShow: value.indexOf("平台弹框") > -1 ? true : false,
            isWXShow: value.indexOf("公众号推送") > -1 ? true : false,
            isWEBShow: value.indexOf("平台弹框") > -1 ? true : false,
            isMessageShow: value.indexOf("短信推送") > -1 ? true : false,
        })
    }
    const onIISAgentSubmit = (value) => {
        console.log(value, "IIS配置")
        setIISConfig(value)

    }

    const onPushSubmit = (value) => {
        console.log(value, "onPushSubmit")
    }

    return (
        <SiteModal
            {...props}
            title={template.ThemeName ? "编辑推送方案" : "新增推送方案"}
            bodyStyle={{ width: '100%', minHeight: '100px' }}
            style={{ top: 200, borderRadius: '20px' }}
            width="1200px"
            destroyOnClose
            cancelText="取消"
            okText="确认"
            onOk={() => onSubmit()}
            confirmLoading={loading}
        >
            <div className={styles.editModal_container}>
                <Form form={form} labelCol={{ span: 4 }}>
                    <Item
                        label="方案名称"
                        name="name"
                        rules={[
                            {
                                required: true,
                                message: '请输入方案名称',
                            },
                        ]}
                    >
                        <Input placeholder="请输入方案名称" disabled={template.ThemeName ? true : false} onChange={onNameChange} />
                    </Item>
                    <Item
                        label="是否开启"
                        name="isStart"

                    >
                        <Select >
                            <Option value="1">开启</Option>
                            <Option value="0">关闭</Option>
                        </Select>
                    </Item>
                    <Item
                        label="推送人"
                        name="to_person"

                    >
                        <VisibleRoleModal
                            onSubmit={onPushSubmit}
                            title={"推送人员"}

                        />
                    </Item>
                    <Item
                        label="定时计划"
                        name="push_plan"
                    >
                        <VisibleIISAgentConfig agentConfig={template.item && template.item.AgentConfig} onIISAgentSubmit={onIISAgentSubmit} />
                    </Item>
                    <Item
                        label="推送方式"
                        name="push_mode"
                    >
                        <Checkbox.Group
                            options={plainOptions}
                            onChange={onTypeChange}

                        />
                    </Item>
                    <div className={styles.push_trench}>
                        {
                            currentTrench.isAPPShow && (
                                <div className={styles.trench_card}>
                                    <div className={styles.card_title}>
                                        <div className={styles.lable}>APP</div>
                                    </div>
                                    <div className={styles.card_body}>
                                        <Item
                                            label="模板"
                                            name="app_template"
                                        >
                                            <Select >
                                                {
                                                    APP_ITEMS.map((item, idx) => {
                                                        return (
                                                            <Option value={item.Id} key={idx}>{item.LikeName}</Option>
                                                        )
                                                    })
                                                }
                                            </Select>
                                        </Item>
                                        <Item
                                            label="功能路径"
                                            name="app_path"
                                        >
                                            <Input placeholder="请输入功能路径" />
                                        </Item>
                                    </div>
                                </div>
                            )
                        }
                        {
                            currentTrench.isWXShow && (
                                <div className={styles.trench_card}>
                                    <div className={styles.card_title}>
                                        <div className={styles.lable}>微信</div>
                                    </div>
                                    <div className={styles.card_body}>
                                        <Item
                                            label="模板"
                                            name="wx_template"
                                        >
                                            <Select >
                                                {
                                                    WX_ITEMS.map((item, idx) => {
                                                        return (
                                                            <Option value={item.Id} key={idx}>{item.LikeName}</Option>
                                                        )
                                                    })
                                                }
                                            </Select>
                                        </Item>
                                        <Item
                                            label="H5路由"
                                            name="h5_path"
                                        >
                                            <Input placeholder="请输入功能路径" />
                                        </Item>
                                        <Item
                                            label="小程序路由"
                                            name="miniprogram_path"
                                        >
                                            <Input placeholder="请输入功能路径" />
                                        </Item>
                                    </div>
                                </div>
                            )
                        }
                        {
                            currentTrench.isWEBShow && (
                                <div className={styles.trench_card}>
                                    <div className={styles.card_title}>
                                        <div className={styles.lable}>WEB</div>
                                    </div>
                                    <div className={styles.card_body}>
                                        <Item
                                            label="模板"
                                            name="web_template"
                                        >
                                            <Select >
                                                {
                                                    WEB_ITEMS.map((item, idx) => {
                                                        return (
                                                            <Option value={item.Id} key={idx}>{item.LikeName}</Option>
                                                        )
                                                    })
                                                }
                                            </Select>
                                        </Item>
                                        <Item
                                            label="功能路径"
                                            name="web_path"
                                        >
                                            <Input placeholder="请输入功能路径" />
                                        </Item>
                                    </div>
                                </div>
                            )
                        }

                        {
                            currentTrench.isMessageShow && (
                                <div className={styles.trench_card}>
                                    <div className={styles.card_title}>
                                        <div className={styles.lable}>短信</div>
                                    </div>
                                    <div className={styles.card_body}>
                                        <Item
                                            label="模板"
                                            name="message_template"
                                        >
                                            <Select >
                                                {
                                                    MES_ITEMS.map((item, idx) => {
                                                        return (
                                                            <Option value={item.Id} key={idx}>{item.LikeName}</Option>
                                                        )
                                                    })
                                                }
                                            </Select>
                                        </Item>
                                    </div>
                                </div>
                            )
                        }
                    </div>
                </Form>
            </div>

        </SiteModal>
    )
}
export default EditModal;