solutionConfig.jsx 14.2 KB
Newer Older
1 2
import { Space, Table, Button, Popconfirm, notification, Divider, Checkbox, Spin } from 'antd';
import React, { useState, useEffect } from 'react';
3 4 5
import styles from '../dimensionsConfig.less';
import VisibleRoleModal from '@/pages/platformCenter/messageManage/projectManage/components/RolseSelect/VisibleRoleModal';
import { PlusOutlined } from '@ant-design/icons';
6
import {
7 8 9 10 11 12 13
  deleteConfig,
  SettingRoleWebSchema,
  SetServiceConfig,
  DeleteWebSchema,
  GetWebSchemaList,
  GetSchemaInfoList,
  IsActionWebSchema,
14
} from '@/services/webConfig/api';
15 16
import { UserAddOutlined } from '@ant-design/icons';
import AddModal from './AddModal';
17
const VectorData = props => {
18 19
  const [treeLoading, setTreeLoading] = useState(false); // 弹窗显示
  const [schemename, setSchemename] = useState([]);
20
  const [record, setRecord] = useState({}); // 选中关联角色的方案名
21 22 23
  const [webCurrent, setWebCurrent] = useState(0); // web列表下标
  const [handCurrent, setHandCurrent] = useState(0); // hand列表下标
  const [webData, setWebData] = useState([]); // web数据
24
  const [handData, setHandData] = useState([]); // 手持数据
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
  const [visible, setVisible] = useState(false); // 弹窗
  const [flag, setFlag] = useState(0); // 更新list
  const [handStatus, setHandStatus] = useState([]); // 更新状态
  const [webStatus, setWebStatus] = useState([]); // 更新状态
  const [type, setType] = useState(''); // 弹窗类型
  const [checkLoading, setCheckLoading] = useState(false);
  const [formObj, setFormObj] = useState({ user: 'admin', password: 'geoserver' });
  const columns = [
    {
      title: '默认方案',
      align: 'center',
      render: (text, record, index) => (
        <Space>
          <Checkbox
            checked={webStatus[index + webCurrent * 5]}
            onChange={e => {
              onChangeCheck(e, record, index + webCurrent * 5);
            }}
          />
        </Space>
      ),
    },
    {
      title: '方案名',
      align: 'center',
      render: (text, record, index) => <Space>{record.scheme.schemename}</Space>,
    },
    {
      title: '关联角色',
      align: 'center',
      render: (text, record, index) => (
        <Space>
          <Space>
            <div onClick={() => pickRole(record)} style={{ cursor: 'pointer' }}>
              <VisibleRoleModal
                onSubmit={onPushSubmit}
                title={'关联角色'}
                initValues={record.roles != null ? record.roles.split(',') : []}
                operate={<UserAddOutlined />}
              />
            </div>
          </Space>
        </Space>
      ),
    },
    {
      title: '编辑',
      align: 'center',
      render: (text, record, index) => (
        <Space>
          <div onClick={e => e.stopPropagation()}>
            <Popconfirm
              title="是否删除此条方案?"
              okText="确认"
              cancelText="取消"
              onConfirm={() => {
                delWebConfirm(record);
              }}
            >
              <Button size="small" danger>
                删除
              </Button>
            </Popconfirm>
          </div>
        </Space>
      ),
    },
  ];
  // const columns1 = [
  //     {
  //         title: '查询方案',
  //         align: 'center',
  //         render: (text, record, index) => (
  //             <Space>
  //                 <Checkbox
  //                     checked={handStatus[index + handCurrent * 5]}
  //                     onChange={e => {
  //                         onChangeHand(e, record, index + handCurrent * 5);
  //                     }}
  //                 />
  //             </Space>
  //         ),
  //     },
  //     {
  //         title: '方案名',
  //         align: 'center',
  //         render: (text, record, index) => (
  //             <Space>
  //               {record.scheme.schemename}
  //             </Space>
  //         ),
  //     },
  //     {
  //         title: '关联角色',
  //         align: 'center',
  //         render: (text, record, index) => (
  //             <Space>
  //                 <div onClick={() => pickRole(record)} style={{ cursor: 'pointer' }}>
  //                     <VisibleRoleModal onSubmit={onPushSubmit} title={"关联角色"} initValues ={record.roles!=null?record.roles.split(","):[]} operate={<UserAddOutlined />} />
  //                 </div>
  //             </Space>
  //         ),
  //     },
  //     {
  //         title: '编辑',
  //         align: 'center',
  //         render: (text, record, index) => (
  //             <Space>
  //                 <div onClick={e => e.stopPropagation()}>
  //                     <Popconfirm
  //                         title="是否删除此条方案?"
  //                         okText="确认"
  //                         cancelText="取消"
  //                         onConfirm={() => {
  //                             delhandConfirm(record);
  //                         }}
  //                     >
  //                         <Button size="small" danger>
  //                             删除
  //                         </Button>
  //                     </Popconfirm>
  //                 </div>
  //             </Space>
  //         ),
  //     }
150

151
  // ];
152
  // 获取选中的角色
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
  const onPushSubmit = value => {
    let id = [];
    if (value.length) {
      id = value.map(item => {
        return item.id;
      });
      let query = {
        schemaname: record.scheme.schemename,
        roles: id.join(','),
      };
      SettingRoleWebSchema(query)
        .then(res => {
          if (res.msg === '') {
            prompt('success', '关联角色成功');
            setFlag(flag + 1);
          } else {
            prompt('fail', '关联角色失败');
          }
171
        })
172 173 174
        .catch(err => {
          prompt('fail', '网络请求失败');
        });
175
    }
176
  };
177
  // 获取角色
178 179 180
  const pickRole = record => {
    setRecord(record);
  };
181
  // 设置web方案
182 183 184 185 186 187 188 189 190 191 192 193
  const onChangeCheck = (e, record, index) => {
    setCheckLoading(true);
    IsActionWebSchema({ schemaname: record.scheme.schemename }).then(res => {
      setCheckLoading(false);
      if (res.msg === '') {
        prompt('success', '设置成功');
        setFlag(flag + 1);
      } else {
        prompt('fail', res.msg);
      }
    });
  };
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
  const onChangeHand = (e, record, index) => {
    setCheckLoading(true);
    const newLoadings = [...handStatus];
    newLoadings.map((item, loadIndex) => {
      return loadIndex == index
        ? (newLoadings[loadIndex] = !newLoadings[loadIndex])
        : (newLoadings[loadIndex] = false);
    });
    setHandStatus(newLoadings);
    let query = {
      schemename: record['schemename'],
      terminalType: 'phone',
      isBaseMap: false,
      jsonCfg: JSON.stringify({
        isDefault: newLoadings[index],
      }),
    };
    if (!newLoadings[index]) {
      SetServiceConfig(query).then(res => {
        setCheckLoading(false);
        if (res.msg === 'Ok') {
          const changehandData = [...handData];
          changehandData[index].isDefault = false;
          setHandData(changehandData);
          prompt('success', '设置成功');
        } else {
          prompt('fail', `${record['schemename']}默认设置时遇到错误:` + res.message);
223
        }
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
      });
      return;
    }
    var beforeDefault = handData.findIndex(item => item['isDefault']);
    SetServiceConfig({
      schemename: record['schemename'],
      terminalType: 'phone',
      isBaseMap: false,
      jsonCfg: JSON.stringify({
        isDefault: true,
      }),
    }).then(res => {
      setCheckLoading(false);
      if (res.msg === 'Ok') {
        const changehandData = [...handData];
        changehandData[index].isDefault = true;
        setHandData(changehandData);
        if (beforeDefault != -1) {
          SetServiceConfig({
            schemename: changehandData[beforeDefault].schemename,
244 245 246
            terminalType: 'phone',
            isBaseMap: false,
            jsonCfg: JSON.stringify({
247 248 249 250 251 252 253 254 255 256
              isDefault: false,
            }),
          }).then(res => {
            setCheckLoading(false);
            if (res.IsSuccess) {
              const changehandData1 = [...handData];
              changehandData1[beforeDefault].isDefault = false;
              setHandData(changehandData1);
              prompt('success', '设置成功');
              return;
257
            }
258 259
            prompt('fail', `${record['schemename']}默认设置时遇到错误:` + res.message);
          });
260
        }
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
      }
    });
  };
  const prompt = (type, content) => {
    if (type == 'success') {
      notification.success({
        message: '提示',
        duration: 3,
        description: content,
      });
    } else {
      notification.error({
        message: '提示',
        duration: 3,
        description: content,
      });
277
    }
278 279 280 281 282
  };
  const onSubmit = prop => {
    setVisible(false);
    setFlag(flag + 1);
  };
283
  // 删除web配置方案
284 285 286 287 288 289 290 291 292 293
  const delWebConfirm = record => {
    DeleteWebSchema(record.scheme.schemename).then(res => {
      if (res.msg === '') {
        prompt('success', '删除成功');
        setFlag(flag + 1);
      } else {
        prompt('fail', '删除失败');
      }
    });
  };
294
  // 删除手持配置方案
295 296 297 298 299 300 301 302 303 304 305 306 307 308
  const delhandConfirm = record => {
    deleteConfig({
      schemename: record['schemename'],
      terminalType: 'phone',
      isBaseMap: false,
    }).then(res => {
      if (res.msg === 'Ok') {
        prompt('success', '删除成功');
        setFlag(flag + 1);
      } else {
        prompt('fail', '删除失败');
      }
    });
  };
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
  const addType = type => {
    setType(type);
    let listData = [];
    type == 'add' ? (listData = webData) : (listData = handData);
    let webSchemenameArr = [],
      schemeArr = [];
    setTreeLoading(true);
    GetSchemaInfoList().then(res => {
      if (res.data && res.data.length) {
        setTreeLoading(false);
        listData.map(item => {
          webSchemenameArr.push(item.scheme.schemename);
        });
        res.data.map(item => {
          if (!webSchemenameArr.includes(item.schemename)) schemeArr.push(item.schemename);
        });
        setSchemename(schemeArr);
        if (schemeArr.length) {
          setVisible(true);
        } else {
          notification.warning({
            message: '提示',
            duration: 3,
            description: '请先配置方案',
          });
        }
      } else {
        setTreeLoading(false);
        notification.warning({
          message: '提示',
          duration: 3,
          description: '请先配置方案',
        });
      }
    });
  };
  useEffect(() => {
    renderTile();
  }, [flag]);
  // 获取瓦片数据配置数据
  const renderTile = () => {
    setCheckLoading(true);
352
    // 查询手持方案
353 354 355 356
    // var schemeConfigQueryRequest = GetMaplayerByTerminalType({
    //     terminalType: 'phone',
    //     isBaseMap: false
    // })
357
    // 查询web方案
358 359 360 361 362 363 364 365 366 367 368
    var webSchemeQueryRequest = GetWebSchemaList();
    Promise.all([webSchemeQueryRequest])
      .then(res => {
        // if (res[0].msg==="Ok" && res[0].data.phone) {
        //     let arr = []
        //     res[0].data.phone.optionalLayer.layers.map((item, index) => {
        //         if (item.isDefault) {
        //             arr.push(true)
        //         } else {
        //             arr.push(false)
        //         }
369

370 371 372 373 374
        //         item.isStatus = 'phone'
        //         return item
        //     })
        //     setHandData(res[0].data.phone.optionalLayer.layers)
        //     setHandStatus(arr)
375

376 377 378 379 380 381
        // }
        if (res[0].msg === 'Ok' && res[0].data) {
          let arr = [];
          res[0].data.map((item, index) => {
            if (item.isDefault) {
              arr.push(true);
382
            } else {
383
              arr.push(false);
384
            }
385 386 387 388 389 390 391 392 393 394 395 396
            item.isStatus = 'web';
            return item;
          });
          setWebData(res[0].data);
          setWebStatus(arr);
        }
        setCheckLoading(false);
      })
      .catch(e => {
        setCheckLoading(false);
      });
  };
397

398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
  return (
    <>
      <Spin tip="loading..." spinning={checkLoading}>
        <div className={styles.solutionConfig}>
          <div>
            <Divider orientation="left">
              <div className={styles.divider}>
                {' '}
                Web{' '}
                <PlusOutlined
                  onClick={() => {
                    addType('add');
                  }}
                  className={styles.dividerIcon}
                />
              </div>
            </Divider>
            <Table
              columns={columns}
              dataSource={webData}
              bordered
419
              style={{ height: 'calc(100vh - 230px)' }}
420 421 422 423 424 425 426 427
              pagination={{
                showTotal: (total, range) => `第${range[0]}-${range[1]} 条/共 ${total} 条`,
                defaultPageSize: 8,
                onChange: value => {
                  setWebCurrent(value - 1);
                },
              }}
              rowKey={(record, index) => record.scheme.schemename}
428
              scroll={{ y: 300 }}
429 430 431
            />
          </div>
          {/* <Divider orientation="left"><div className={styles.divider}>手持 <PlusOutlined
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
                        onClick={() => { addType('addHand') }}
                        className={styles.dividerIcon} /></div> </Divider>
                    <Table
                        columns={columns1}
                        dataSource={handData}
                        bordered
                        rowKey="schemename"
                        scroll={{ y: 400 }}
                        pagination={{
                            showTotal: (total, range) =>
                                `第${range[0]}-${range[1]} 条/共 ${total} 条`,
                            defaultPageSize: 8,
                            onChange: (value) => {
                                setHandCurrent(value - 1)
                            }

                        }}
                    >
shaoan123's avatar
shaoan123 committed
450
                    </Table> */}
451 452 453 454 455 456 457 458 459 460 461 462 463 464
        </div>
      </Spin>
      <AddModal
        visible={visible}
        onCancel={() => setVisible(false)}
        callBackSubmit={onSubmit}
        type={type}
        formObj={formObj}
        listData={schemename}
      />
    </>
  );
};
export default VectorData;