EditModal.jsx 12.5 KB
Newer Older
1
import React, { useState, useEffect, useRef } from 'react';
2
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
import { Switch } from 'react-router';
import { iteratee } from 'lodash';
import styles from './EditModal.less';
import v from 'voca';
9 10 11 12 13 14 15 16 17
import VisibleRoleModal from './RolseSelect/VisibleRoleModal';
import VisibleIISAgentConfig from './IISAgentConfig/VisibleIISAgentConfig';
import { GetMessageTemplate } from '@/services/messagemanage/messagemanage';
import moment from 'moment';
import {
  UpdateMessageConfig,
  InsertMessageConfig,
  AddIISAgentConfig,
} from '@/services/messagemanage/messagemanage';
18

19 20 21
const { Item } = Form;

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

27 28 29 30 31 32 33 34 35 36 37 38
  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([]);
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
  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(','),
77

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
        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,
      });
99
    }
100 101 102 103 104 105
  }, [props]);
  const onNameChange = e => {
    form.setFieldsValue({
      push_plan: e.target.value,
    });
  };
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
  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();
          }
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
      });
    } 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();
          }
        }
      });
mayongxin's avatar
mayongxin committed
197
    }
198 199 200 201 202 203 204 205 206 207 208 209 210 211
  };
  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);
  };
212

213 214 215
  const onPushSubmit = value => {
    console.log(value, 'onPushSubmit');
  };
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
  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>
336
                 
337 338 339
                </div>
              </div>
            )}
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
            {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;