index.js 17.1 KB
Newer Older
周宏民's avatar
周宏民 committed
1 2 3 4 5 6
/*
 * @Title: 弥勒 集成页
 * @Author: hongmye
 * @Date: 2024-08-26 18:34:42
 */
import { appService } from '@/api';
7 8 9 10
import { connect } from 'react-redux';
import { actionCreators } from '@/containers/App/store';
import { getUserInfo, getWebSiteConfig } from '@/api/service/base';
import { log, params, encipher } from '@wisdom-utils/utils/lib/helpers';
11
import axios from 'axios';
12

周宏民's avatar
周宏民 committed
13 14 15 16 17 18 19 20 21
import { FullscreenExitOutlined, FullscreenOutlined } from '@ant-design/icons';
import { message, Button } from 'antd';
import classNames from 'classnames';
import { debounce } from 'lodash';
import React, { useRef, useEffect, useState, useMemo } from 'react';
import backImg from '@/assets/images/demonstration/返回.png';
import arrowLeftImg from '@/assets/images/demonstration/左箭头.png';
import LoadPage from '@/components/LoadPage';
import $ from 'jquery';
22 23
import { SERVICE_INTERFACE_SUCCESS_CODE } from '@/constants';
import { useHistory, useAliveController } from '@wisdom-utils/runtime';
周宏民's avatar
周宏民 committed
24

25 26 27 28
import { store } from '@wisdom-utils/utils';
import Cookies from 'js-cookie';
import LoginAction from '@/pages/bootpage/demonstration/components/login';
import { defaultApp } from '@/micro';
周宏民's avatar
周宏民 committed
29 30 31 32 33 34 35 36 37 38
import useFullScreen from '../../demonstration/components/useFullScreen';
import defaultConfig from './data.json';
import styles from './index.less';
import Iframe from '../../demonstration/components/Iframe';
const boxWidth = 1920;
const boxHeight = 930;
// const Cripples = require('@/assets/js/ripples/jquery.ripples');

const IntegrationMile = props => {
  const [ref, isFullscreen, handleFullScreen, handleExitFullScreen] = useFullScreen(false);
39
  const history = useHistory();
40
  let integrationClient = window?.globalConfig?.client || 'city'; // 集成登录client
周宏民's avatar
周宏民 committed
41 42 43
  const timer2 = useRef(null);
  const timer3 = useRef(null);
  const timer4 = useRef(null);
44

周宏民's avatar
周宏民 committed
45
  const progressRef2 = useRef(0);
46 47 48 49
  const [loginAction, setAction] = useState(() => new LoginAction(props));
  const [mClient, setMClient] = useState('');
  const { clear } = useAliveController();

周宏民's avatar
周宏民 committed
50 51 52 53 54 55 56 57 58 59 60 61
  // 退出
  const exit = () => {
    if (isFullscreen) {
      handleExitFullScreen && handleExitFullScreen();
    } else {
      handleFullScreen && handleFullScreen();
    }
  };
  const [boxSize, setBoxSize] = useState({
    scale: 1,
    boxHeight: 930,
  });
62
  const [integrationData, setIntegrationData] = useState({});
63
  const [logo, setLogo] = useState(props.global.logo);
64

周宏民's avatar
周宏民 committed
65
  const [linkUrl, setLinkUrl] = useState('');
66 67 68
  // 解决 切换 client 时,updateConfig时,页会刷新,loading会重置
  const [jumpLoading, setJumpLoading] = useState(!!window.jumpLoadingProgress);
  const [progressValue2, setProgressValue2] = useState(window.jumpLoadingProgress || 0);
周宏民's avatar
周宏民 committed
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
  const [showBackBtn, setShowBackBtn] = useState(true); // 是否显示iframe 返回按钮,三维平台用

  const configName = '弥勒集成配置文件';

  const [configData, setConfigData] = useState(defaultConfig);

  const jumpProgressStart = () => {
    if (timer2.current) {
      clearInterval(timer2.current);
      timer2.current = null;
    }
    progressRef2.current = 0;
    setProgressValue2(0);
    timer2.current = setInterval(() => {
      if (progressRef2.current < 97.5) {
        progressRef2.current += 2.5;
        setProgressValue2(progressRef2.current);
      } else {
        setProgressValue2(99);
        timer2.current && clearInterval(timer2.current);
        timer2.current = null;
      }
    }, 100);
  };
  const jumpProgressEnd = () => {
    setProgressValue2(100);
    timer2.current && clearInterval(timer2.current);
    timer2.current = null;
  };
  const getData = async () => {
    appService
      .GetConfigJson({
        config: configName,
      })
      .then(res => {
        if (res.code === 0 && res.data) {
          const data = JSON.parse(res.data) || defaultConfig;
          setConfigData(data);
        }
      });
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
    appService
      .GetIntegratedloginSetting({
        ignoreSite: true,
      })
      .then(res => {
        const { code, data } = res;
        if (data.client) {
          integrationClient = data.client;
          localStorage.setItem('integrationClient', data.client);
          if (integrationClient) {
            if (!data.client) return;
            appService
              .GetIntegrationConfig({
                type: '集成登录',
                userId: window.globalConfig.userInfo?.OID ?? null,
                isEnable: true,
                client: data.client || '',
              })
              .then(res1 => {
                const list = res1.data || [];
                const obj = {};
                list.forEach(d => {
                  obj[d.name] = true;
                });
                setIntegrationData(obj);
              });
          }
        }
      });
138 139 140 141 142 143 144 145 146 147 148
    const token = props.global?.token || Cookies.get('token');
    const client = sessionStorage.getItem('client') || props?.global?.client || '';
    getWebSiteConfig({
      identity: token,
      client,
    })
      .then(res => {
        const data = res.data?.[0] || {};
        if (data.logo) setLogo(data.logo);
      })
      .catch(err => {});
周宏民's avatar
周宏民 committed
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
  };
  const onResize = () => {
    if (ref?.current) {
      const { clientWidth, clientHeight } = ref.current;
      if (!boxWidth || !boxHeight) return;
      const xScale = clientWidth / boxWidth;
      const yScale = clientHeight / boxHeight;
      const poor = clientHeight / clientWidth - boxHeight / boxWidth;
      let n = Math.min(xScale, yScale);
      let bHeight = boxHeight;
      if (poor > 0.05) {
        bHeight = boxHeight + 30;
      }
      // 高度为偶数
      bHeight = parseInt(bHeight, 10);
      if (bHeight % 2 !== 0) {
        bHeight += 1;
      }
      n = Number(n.toFixed(4));
      setBoxSize({
        scale: n,
        boxHeight: bHeight,
      });
    }
  };
  const handError = err => {
    if (err) {
      message.error(err);
    }
    setLinkUrl('');
    setJumpLoading(false);
    jumpProgressEnd();
  };
  const onMessageBack = data => {
    if (!data?.type) return;
    switch (data?.type) {
      // 页面加载完成
      // 登录成功
      case 'runAfterFirstMounted':
      case 'loginSuccess':
        jumpProgressEnd();
        setTimeout(() => {
          setJumpLoading(false);
        }, 100);
        break;
      case 'loginError':
        message.warning('登录失败,请联系管理人员');
        handError();
        break;
      case '无法连接':
        message.warning('该站点无法连接,请联系管理人员');
        setTimeout(() => {
          handError();
        }, 100);
        break;
      case 'showBack':
        setShowBackBtn(true);
        break;
      case 'hideBack':
        setShowBackBtn(false);
        break;
      default:
        break;
    }
  };
  const iframeItem = useMemo(() => {
    if (!linkUrl) return null;
    return (
      <>
        <div
          className={classNames(!jumpLoading ? styles.scaleInCenter : styles.hide, 'animate__animated')}
          style={{ zIndex: 11 }}
        >
          <Iframe linkUrl={linkUrl} onMessageBack={onMessageBack} />
        </div>
      </>
    );
  }, [linkUrl, jumpLoading]);
  const startTiming = (time = 2) => {
    if (timer3.current) {
      clearInterval(timer3.current);
      timer3.current = null;
    }
    timer3.current = setTimeout(() => {
      setJumpLoading(false);
      timer2.current && clearInterval(timer2.current);
      timer2.current = null;
    }, time * 1000);
  };
238 239 240 241 242 243 244 245 246
  const toRevenue = async item => {
    setJumpLoading(true);
    jumpProgressStart();
    startTiming(6);
    try {
      const res = await appService.getTicketByToken({ token: window.globalConfig?.token });
      if (res.code === 0) {
        // 营收是api-bcs,直饮水是api-ddw
        const apiPath = `${item.url}/api-ddw/sysUser/ssoGCK?sysFlag=0&${item.paramName}=${res.data}`;
247 248 249 250
        // setLinkUrl(apiPath);
        if (item?.openOpt === '当前页打开') {
          setLinkUrl(apiPath);
        } else {
251 252
          setJumpLoading(false);
          jumpProgressEnd();
253
          window.open(apiPath, '_blank');
254 255 256 257 258 259 260 261 262
        }
      } else {
        res.msg && message.error(res.msg);
        setJumpLoading(false);
        jumpProgressEnd();
      }
    } catch (error) {
      setJumpLoading(false);
      jumpProgressEnd();
263
    }
264 265 266 267 268 269
  };
  const onLink = (item, loginA) => {
    // if (!integrationData[item.name]) {
    //   message.warning('当前账号没有权限,请联系管理人员配置');
    //   return;
    // }
270 271 272
    const { url, client } = item;
    if (!url && !client) return message.warning('未配置功能路径');
    if (url) {
273 274 275 276
      if (item.paramName) {
        toRevenue(item);
        return;
      }
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
      setJumpLoading(true);
      jumpProgressStart();
      setLinkUrl(url);
      let time = 15;
      if (!url.includes('user/noscret')) {
        time = 4;
      }
      startTiming(time);
    }
    if (client) {
      if (window.qiankunIsCache) {
        store.set('event:dropCache');
      }
      Cookies.set('client', client, {
        expires: 86400000 / (24 * 60 * 60 * 1000),
        path: '/',
      });
      sessionStorage.setItem('client', client);
      const currentProduct = `__global__recent_productIndex__micro_${window.location.hostname}_${window.globalConfig
        ?.client ?? 'city'}`;
      sessionStorage.removeItem(currentProduct);
      const currentProductNew = `__global__recent_productIndex__micro_${window.location.hostname}_${client || 'city'}`;
      sessionStorage.setItem(currentProductNew, 0);
      setMClient(client);
      const config = props.global;
      window.qiankunStarted = false;
      if (client) {
        config.client = client;
      }

      const token = props.global?.token || Cookies.get('token');

      if (!token) {
310
        history.push(`/user/login?client=${integrationClient}`, { reload: true });
311 312 313 314 315 316
        clear();
        props.logout();
      } else {
        setJumpLoading(true);
        jumpProgressStart();
        startTiming(15);
317
        window.jumpLoadingProgress = 99;
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
        getWebSiteConfig({
          identity: token,
          client,
        })
          .then(res => {
            const data = res.data?.[0] || {};
            config.uiwidgets = data.uiwidgets || [];
            config.widgets = data.widgets || [];
            config.allWidgets = data.widgets || [];
            const homeType = config.productType || 'civweb4';
            const homepage = params.getParams('homepage')
              ? params.getParams('homepage')
              : homeType && data.homepage
              ? `${homeType}/${params.getParams('homepage') || data.homepage}`
              : '';
            config.homepage = homepage;
            config.hideFeedback =
              data.afterSales && typeof data.afterSales === 'string'
                ? data.afterSales.split(',').includes(`${props.global?.userInfo?.OID}`)
                : false;
            config.IsOpenTransitionPage = data.IsOpenTransitionPage || false;
            config.openAnnouncement = data.openAnnouncement;
            config.announcementContent = data.announcementContent;
            if (!config.widgets.length) {
              message.error({
                duration: 3,
344
                content: '您没有该板块权限,请联系管理员',
345 346 347
              });
              setJumpLoading(false);
              jumpProgressEnd();
348
              window.jumpLoadingProgress = 0;
349 350 351 352 353 354 355 356
              return;
            }
            loginAction.updateConfig && loginAction.updateConfig(config);
            loginAction && loginAction.getIndustry(true, token);
          })
          .catch(err => {
            setJumpLoading(false);
            jumpProgressEnd();
357
            window.jumpLoadingProgress = 0;
358 359
          });
      }
周宏民's avatar
周宏民 committed
360 361
    }
  };
362

周宏民's avatar
周宏民 committed
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
  useEffect(() => {
    getData();
    window.addEventListener('resize', debounce(onResize, 300));
    onResize();
    return () => {
      window.removeEventListener('resize', onResize);
      timer2.current && clearInterval(timer2.current);
      timer2.current = null;
      timer3.current && clearInterval(timer3.current);
      timer3.current = null;
    };
  }, []);
  useEffect(() => {
    if (!linkUrl) {
      if (timer4.current) {
        clearTimeout(timer4.current);
        timer4.current = null;
      }
      timer4.current = setTimeout(() => {
382
        if ($('.CarouselRipples')?.ripples) {
周宏民's avatar
周宏民 committed
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
          $('.CarouselRipples').ripples({
            resolution: 800,
            dropRadius: 20, // px
            perturbance: 2,
          });
        }
      }, 800);
    }

    return () => {
      if (timer4.current) {
        clearTimeout(timer4.current);
        timer4.current = null;
      }
    };
  }, [linkUrl]);
399 400 401 402
  useEffect(() => {
    const handleToggleIndustry = event => {
      setJumpLoading(false);
      jumpProgressEnd();
403
      window.jumpLoadingProgress = 0;
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
      props.updateCurrentIndex && props.updateCurrentIndex(0);

      props.history.push(`/?client=${mClient || props.global.client}`);

      defaultApp();
    };
    const handleError = () => {
      setJumpLoading(false);
      jumpProgressEnd();
    };

    loginAction.events.on('loginSuccess', handleToggleIndustry);
    loginAction.events.on('loginError', handleError);

    return () => {
      loginAction && loginAction.events && loginAction.events.removeListener('loginSuccess', handleToggleIndustry);
      loginAction && loginAction.events && loginAction.events.removeListener('loginError', handleError);
    };
  }, [loginAction.events, props, mClient]);
周宏民's avatar
周宏民 committed
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
  return (
    <div className={classNames(styles.integrationMile, 'integrationMile')} ref={ref}>
      {jumpLoading ? (
        <div className={styles.integrationJumpLoad} key="jumpLoading">
          <div style={{ width: '285px' }}>
            <LoadPage percent={progressValue2 / 100} text="页面加载中~" />
          </div>
        </div>
      ) : null}
      {!linkUrl ? (
        <div className={styles.integrationMile_exit} onClick={exit}>
          <Button type="text" style={{ color: '#fff', fontSize: '24px' }}>
            {isFullscreen ? <FullscreenExitOutlined /> : <FullscreenOutlined />}
          </Button>
        </div>
      ) : null}

      <div
        className={styles.integration_content}
        style={{
          width: boxWidth,
          height: boxSize.boxHeight,
          transform: `scale(${boxSize.scale}) translate(-50%,-50%)`,
          zIndex: linkUrl ? 0 : 10,
        }}
      >
        <div className={styles.integrationMile_title}>
          <div className={styles.integrationMile_icon}>
            <img
              src={
                props.global &&
                props.global.transformDevAssetsBaseURL &&
455
                props.global.transformDevAssetsBaseURL(logo || props.global.logo)
周宏民's avatar
周宏民 committed
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
              }
              alt="logo"
            />
          </div>
          <div className={styles.integrationMile_title_text}>
            <span>{configData?.['标题'] || '智慧水务综合监控平台'}</span>
          </div>
        </div>
        <div className={styles.integrationMile_title_sub}>
          {configData?.['副标题'] || 'Mile Water Company Information Platform'}
        </div>
        <div className={styles.IY_list}>
          {configData?.listData
            ? configData?.listData.map(item => (
                <div
471
                  onClick={() => onLink(item, loginAction)}
周宏民's avatar
周宏民 committed
472 473 474 475 476 477 478 479 480 481 482 483
                  className={styles.IY_item}
                  key={item.name}
                  type={item.name}
                  style={{ zIndex: linkUrl ? 0 : 10 }}
                >
                  <div className={styles.IY_item_name}>{item.label || item.name}</div>
                  <div className={styles.IY_item_name_sub}>{item.english || ''}</div>
                </div>
              ))
            : null}
        </div>
      </div>
484
      {!linkUrl ? (
周宏民's avatar
周宏民 committed
485
        <div
486
          className={classNames(styles.iframeBack, 'animate__animated', 'animate__fadeIn')}
487
          onClick={() => props.logout()}
周宏民's avatar
周宏民 committed
488 489 490 491
        >
          <div className={styles.iframeBackLeft}>
            <img src={arrowLeftImg} alt="返回" />
          </div>
492
          <div className={styles.iframeBackIcon}>
周宏民's avatar
周宏民 committed
493
            <img src={backImg} alt="返回" />
494
            退出
周宏民's avatar
周宏民 committed
495 496 497
          </div>
        </div>
      ) : null}
498 499 500 501 502 503 504 505 506 507 508 509 510 511
      {linkUrl && showBackBtn ? (
        <div
          className={classNames(styles.iframeExit, 'animate__animated', 'animate__fadeIn')}
          onClick={() => setLinkUrl('')}
        >
          <div className={styles.iframeExitLeft}>
            <img src={arrowLeftImg} alt="返回" />
          </div>
          <div className={styles.iframeExitIcon}>
            <img src={backImg} alt="返回" />
            返回
          </div>
        </div>
      ) : null}
周宏民's avatar
周宏民 committed
512 513 514 515 516 517 518 519
      {iframeItem}
      {!linkUrl ? <div className={classNames(styles.CarouselRipples, 'CarouselRipples')} data-ripple="ripple" /> : null}
    </div>
  );
};
const mapStateToProps = state => ({
  global: state.getIn(['global', 'globalConfig']),
});
520 521 522 523 524 525 526 527 528 529
const mapDispatchToProps = dispatch => ({
  updateConfig(config) {
    dispatch(actionCreators.getConfig(config));
  },
  createContext(data) {
    dispatch(actionCreators.createContext(data));
  },
  updateCurrentIndex(index) {
    dispatch(actionCreators.updateCurrentIndex(index));
  },
530 531 532
  logout() {
    dispatch(actionCreators.logout());
  },
533 534 535 536 537
});
export default connect(
  mapStateToProps,
  mapDispatchToProps,
)(IntegrationMile);