import React from 'react'; import { injectIntl } from 'react-intl'; import DocumentTitle from 'react-document-title'; import PropTypes from 'prop-types'; import Animate from 'rc-animate'; import Banner from './Banner'; import Page1 from './Page1'; import Page2 from './Page2'; import Page3 from './Page3'; // To store style which is only for Home and has conflicts with others. function getStyle() { return ` .main-wrapper { padding: 0; } #header { box-shadow: none; max-width: 1200px; width: 100%; margin: 20px auto 0; padding: 0 24px; } #header, #header .ant-select-selection, #header .ant-menu { background: transparent; } #header #logo { padding: 0; } #header .ant-row > div:last-child, #header .nav-phone-icon{ display: none; } footer .footer-wrap{ width: 100%; padding: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.25); } footer .footer-wrap .ant-row{ width: 100%; max-width: 1200px; padding: 86px 24px 93px 24px; margin: auto; } footer .bottom-bar{ margin: auto; max-width: 1200px; padding: 16px 24px; border-top: none; } @media only screen and (max-width: 768px) { footer .footer-wrap .ant-row{ padding: 0; } } `; } const versionName = 'antd-noShowNewVersionVideo-3.0'; const vidoeSrc = 'https://gw.alipayobjects.com/os/rmsportal/DNDyihnvkHUuANuumKck.mp4'; // window.localStorage.setItem(versionName, 'false'); class Home extends React.Component { static contextTypes = { intl: PropTypes.object.isRequired, isMobile: PropTypes.bool.isRequired, } constructor(props) { super(props); const noShowNewVersionVideo = typeof window === 'undefined' ? true : ( window.localStorage && window.localStorage.getItem(versionName) === 'true' ); this.state = { noShowNewVersionVideo }; } onVideoEnd = () => { this.setState({ noShowNewVersionVideo: true, }); if (window.localStorage) { window.localStorage.setItem(versionName, 'true'); } } render() { const { isMobile, intl } = this.context; const childProps = { ...this.props, isMobile, locale: intl.locale }; const noShowNewVersionVideo = this.state.noShowNewVersionVideo ? null : (
); return (