EditModal.jsx 18.2 KB
Newer Older
1 2
import React, { useState, useEffect, useRef } from 'react'
import SiteModal from '@/components/Modal/SiteModa';
3
import { Form, Input, notification, Select, Checkbox, message, Button } from 'antd'
4
import BaseForm from '@/components/BaseForm/index';
5 6 7 8 9 10
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'
11 12 13 14
import { GetMessageTemplate } from '@/services/platform/messagemanage'
import moment from 'moment'
import { UpdateMessageConfig, InsertMessageConfig, AddIISAgentConfig } from '@/services/platform/messagemanage'

15 16 17 18 19 20 21
const { Item } = Form;

const EditModal = props => {


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

    const { template, confirmModal } = props
26 27 28 29 30 31
    const [currentTrench, setCurrentTrench] = useState({
        isMessageShow: false,
        isAPPShow: false,
        isWEBShow: false,
        isWXShow: false
    })
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
    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) {
皮倩雯's avatar
皮倩雯 committed
72
            console.log(template);
73 74 75 76 77
            form.setFieldsValue({
                name: template.MsgType,
                isStart: template.IsStarted === "0" ? "关闭" : "开启",
                to_person: template.PushGroup,
                push_plan: template.MsgType,
皮倩雯's avatar
皮倩雯 committed
78 79
                push_mode: template.PushMode === null ? '' : template.PushMode.split(","),

80 81 82 83 84 85 86 87 88 89
                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({
皮倩雯's avatar
皮倩雯 committed
90 91 92 93
                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,
94 95 96 97 98 99 100 101 102
            })
        }

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

104
    const onSubmit = () => {
105 106 107
        console.log(form.getFieldValue())
        let fv = form.getFieldValue()
        if (template.ThemeName) {
108 109
            console.log('fv.wx_template',fv.wx_template);
            console.log('fv.push_mode.toString()',fv.push_mode.toString());
110 111 112 113
            let a = {
                ID: template.ID,
                ThemeName: template.ThemeName,
                MsgType: fv.name,
114
                PublicTemplateID: fv.wx_template.toString(),
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
                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 {
161
            console.log('fv.push_mode.toString()',fv.push_mode.toString());
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
            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()
                        }
                    }
                }
            )
        }

208 209 210 211 212 213
    }
    const operateProject = () => {

    }
    const onTypeChange = (value) => {
        setCurrentTrench({
214 215 216 217
            isAPPShow: value.indexOf("平台弹框") > -1 ? true : false,
            isWXShow: value.indexOf("公众号推送") > -1 ? true : false,
            isWEBShow: value.indexOf("平台弹框") > -1 ? true : false,
            isMessageShow: value.indexOf("短信推送") > -1 ? true : false,
218 219
        })
    }
220 221
    const onIISAgentSubmit = (value) => {
        console.log(value, "IIS配置")
222
        setIISConfig(value)
223 224 225

    }

mayongxin's avatar
mayongxin committed
226 227 228
    const onPushSubmit = (value) => {
        console.log(value, "onPushSubmit")
    }
229 230 231 232

    return (
        <SiteModal
            {...props}
233
            title={template.ThemeName ? "编辑推送方案" : "新增推送方案"}
234 235
            bodyStyle={{ width: '100%', minHeight: '100px' }}
            style={{ top: 200, borderRadius: '20px' }}
236
            width="1200px"
237 238 239 240 241 242
            destroyOnClose
            cancelText="取消"
            okText="确认"
            onOk={() => onSubmit()}
            confirmLoading={loading}
        >
243 244 245 246 247 248 249 250 251 252 253 254
            <div className={styles.editModal_container}>
                <Form form={form} labelCol={{ span: 4 }}>
                    <Item
                        label="方案名称"
                        name="name"
                        rules={[
                            {
                                required: true,
                                message: '请输入方案名称',
                            },
                        ]}
                    >
255
                        <Input placeholder="请输入方案名称" disabled={template.ThemeName ? true : false} onChange={onNameChange} />
256 257 258 259
                    </Item>
                    <Item
                        label="是否开启"
                        name="isStart"
260

261 262
                    >
                        <Select >
263 264
                            <Option value="1">开启</Option>
                            <Option value="0">关闭</Option>
265 266 267 268 269 270 271
                        </Select>
                    </Item>
                    <Item
                        label="推送人"
                        name="to_person"

                    >
272
                        <VisibleRoleModal
mayongxin's avatar
mayongxin committed
273 274
                            onSubmit={onPushSubmit}
                            title={"推送人员"}
皮倩雯's avatar
皮倩雯 committed
275

mayongxin's avatar
mayongxin committed
276
                        />
277 278 279 280 281
                    </Item>
                    <Item
                        label="定时计划"
                        name="push_plan"
                    >
282
                        <VisibleIISAgentConfig agentConfig={template.item && template.item.AgentConfig} onIISAgentSubmit={onIISAgentSubmit} />
283 284 285
                    </Item>
                    <Item
                        label="推送方式"
286
                        name="push_mode"
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
                    >
                        <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"
                                        >
306 307 308 309 310 311 312 313
                                            <Select >
                                                {
                                                    APP_ITEMS.map((item, idx) => {
                                                        return (
                                                            <Option value={item.Id} key={idx}>{item.LikeName}</Option>
                                                        )
                                                    })
                                                }
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
                                            </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"
                                        >
337 338 339 340 341 342 343 344
                                            <Select >
                                                {
                                                    WX_ITEMS.map((item, idx) => {
                                                        return (
                                                            <Option value={item.Id} key={idx}>{item.LikeName}</Option>
                                                        )
                                                    })
                                                }
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
                                            </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"
                                        >
374 375 376 377 378 379 380 381
                                            <Select >
                                                {
                                                    WEB_ITEMS.map((item, idx) => {
                                                        return (
                                                            <Option value={item.Id} key={idx}>{item.LikeName}</Option>
                                                        )
                                                    })
                                                }
382 383 384 385 386 387 388 389 390 391 392 393
                                            </Select>
                                        </Item>
                                        <Item
                                            label="功能路径"
                                            name="web_path"
                                        >
                                            <Input placeholder="请输入功能路径" />
                                        </Item>
                                    </div>
                                </div>
                            )
                        }
394

395 396 397 398
                        {
                            currentTrench.isMessageShow && (
                                <div className={styles.trench_card}>
                                    <div className={styles.card_title}>
399
                                        <div className={styles.lable}>短信</div>
400 401 402 403 404 405
                                    </div>
                                    <div className={styles.card_body}>
                                        <Item
                                            label="模板"
                                            name="message_template"
                                        >
406 407 408 409 410 411 412 413
                                            <Select >
                                                {
                                                    MES_ITEMS.map((item, idx) => {
                                                        return (
                                                            <Option value={item.Id} key={idx}>{item.LikeName}</Option>
                                                        )
                                                    })
                                                }
414 415 416 417 418 419 420 421
                                            </Select>
                                        </Item>
                                    </div>
                                </div>
                            )
                        }
                    </div>
                </Form>
422 423 424 425 426 427
            </div>

        </SiteModal>
    )
}
export default EditModal;