├── .gitignore ├── .idea ├── deployment.xml ├── misc.xml ├── modules.xml ├── react-news.iml └── workspace.xml ├── README.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── polyfills.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── scripts ├── build.js ├── start.js └── test.js ├── src ├── App.css ├── App.js ├── App.test.js ├── component │ ├── common │ │ ├── FormComment.js │ │ └── common_comment.js │ ├── mobile │ │ ├── content │ │ │ ├── LoadMore.js │ │ │ ├── mobile_content.js │ │ │ ├── mobile_news.js │ │ │ ├── mobile_news_component.css │ │ │ └── mobile_news_component.js │ │ ├── footer │ │ │ └── mobile_footer.js │ │ └── header │ │ │ ├── mobile_header.css │ │ │ └── mobile_header.js │ └── pc │ │ ├── footer │ │ └── pc_footer.js │ │ ├── header │ │ ├── LogoutComponent.js │ │ ├── WrappedLoginForm.js │ │ ├── WrappedRegisterForm.js │ │ ├── loginRegisterModal.js │ │ ├── nav.js │ │ ├── pc_header.css │ │ └── pc_header.js │ │ └── topcontent │ │ ├── pc_news_card │ │ ├── pc_news_Component.js │ │ ├── pc_news_block.js │ │ └── pc_news_component.css │ │ ├── pc_news_image │ │ ├── image_news_component.css │ │ ├── image_news_component.js │ │ └── pc_news_imageblock.js │ │ └── pc_news_singleImage │ │ ├── imageSingle_component.css │ │ ├── imageSingle_component.js │ │ └── pc_news_imgeSingle.js ├── container │ ├── mobile │ │ ├── mobile_app.js │ │ └── mobile_news_detail.js │ └── pc │ │ ├── pc_app.js │ │ ├── pc_news_container.css │ │ ├── pc_news_container.js │ │ └── pc_news_detail.js ├── index.css ├── index.js ├── logo.svg ├── registerServiceWorker.js └── static │ └── images │ ├── carousel_1.jpg │ ├── carousel_2.jpg │ ├── carousel_3.jpg │ ├── carousel_4.jpg │ └── logo.png └── 实现效果图 ├── pc端注册页.png ├── pc端登录后页面.png ├── pc端登录页.png ├── pc端详情页.png ├── pc端首页.png ├── 手机端注册页.PNG ├── 手机端登录页.PNG ├── 手机端详情页.png └── 手机端首页.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/react-news.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/.idea/react-news.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/component/common/FormComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/common/FormComment.js -------------------------------------------------------------------------------- /src/component/common/common_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/common/common_comment.js -------------------------------------------------------------------------------- /src/component/mobile/content/LoadMore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/mobile/content/LoadMore.js -------------------------------------------------------------------------------- /src/component/mobile/content/mobile_content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/mobile/content/mobile_content.js -------------------------------------------------------------------------------- /src/component/mobile/content/mobile_news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/mobile/content/mobile_news.js -------------------------------------------------------------------------------- /src/component/mobile/content/mobile_news_component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/mobile/content/mobile_news_component.css -------------------------------------------------------------------------------- /src/component/mobile/content/mobile_news_component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/mobile/content/mobile_news_component.js -------------------------------------------------------------------------------- /src/component/mobile/footer/mobile_footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/mobile/footer/mobile_footer.js -------------------------------------------------------------------------------- /src/component/mobile/header/mobile_header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/mobile/header/mobile_header.css -------------------------------------------------------------------------------- /src/component/mobile/header/mobile_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/mobile/header/mobile_header.js -------------------------------------------------------------------------------- /src/component/pc/footer/pc_footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/footer/pc_footer.js -------------------------------------------------------------------------------- /src/component/pc/header/LogoutComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/header/LogoutComponent.js -------------------------------------------------------------------------------- /src/component/pc/header/WrappedLoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/header/WrappedLoginForm.js -------------------------------------------------------------------------------- /src/component/pc/header/WrappedRegisterForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/header/WrappedRegisterForm.js -------------------------------------------------------------------------------- /src/component/pc/header/loginRegisterModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/header/loginRegisterModal.js -------------------------------------------------------------------------------- /src/component/pc/header/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/header/nav.js -------------------------------------------------------------------------------- /src/component/pc/header/pc_header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/header/pc_header.css -------------------------------------------------------------------------------- /src/component/pc/header/pc_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/header/pc_header.js -------------------------------------------------------------------------------- /src/component/pc/topcontent/pc_news_card/pc_news_Component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/topcontent/pc_news_card/pc_news_Component.js -------------------------------------------------------------------------------- /src/component/pc/topcontent/pc_news_card/pc_news_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/topcontent/pc_news_card/pc_news_block.js -------------------------------------------------------------------------------- /src/component/pc/topcontent/pc_news_card/pc_news_component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/topcontent/pc_news_card/pc_news_component.css -------------------------------------------------------------------------------- /src/component/pc/topcontent/pc_news_image/image_news_component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/topcontent/pc_news_image/image_news_component.css -------------------------------------------------------------------------------- /src/component/pc/topcontent/pc_news_image/image_news_component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/topcontent/pc_news_image/image_news_component.js -------------------------------------------------------------------------------- /src/component/pc/topcontent/pc_news_image/pc_news_imageblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/topcontent/pc_news_image/pc_news_imageblock.js -------------------------------------------------------------------------------- /src/component/pc/topcontent/pc_news_singleImage/imageSingle_component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/topcontent/pc_news_singleImage/imageSingle_component.css -------------------------------------------------------------------------------- /src/component/pc/topcontent/pc_news_singleImage/imageSingle_component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/topcontent/pc_news_singleImage/imageSingle_component.js -------------------------------------------------------------------------------- /src/component/pc/topcontent/pc_news_singleImage/pc_news_imgeSingle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/component/pc/topcontent/pc_news_singleImage/pc_news_imgeSingle.js -------------------------------------------------------------------------------- /src/container/mobile/mobile_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/container/mobile/mobile_app.js -------------------------------------------------------------------------------- /src/container/mobile/mobile_news_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/container/mobile/mobile_news_detail.js -------------------------------------------------------------------------------- /src/container/pc/pc_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/container/pc/pc_app.js -------------------------------------------------------------------------------- /src/container/pc/pc_news_container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/container/pc/pc_news_container.css -------------------------------------------------------------------------------- /src/container/pc/pc_news_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/container/pc/pc_news_container.js -------------------------------------------------------------------------------- /src/container/pc/pc_news_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/container/pc/pc_news_detail.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/static/images/carousel_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/static/images/carousel_1.jpg -------------------------------------------------------------------------------- /src/static/images/carousel_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/static/images/carousel_2.jpg -------------------------------------------------------------------------------- /src/static/images/carousel_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/static/images/carousel_3.jpg -------------------------------------------------------------------------------- /src/static/images/carousel_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/static/images/carousel_4.jpg -------------------------------------------------------------------------------- /src/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/src/static/images/logo.png -------------------------------------------------------------------------------- /实现效果图/pc端注册页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/实现效果图/pc端注册页.png -------------------------------------------------------------------------------- /实现效果图/pc端登录后页面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/实现效果图/pc端登录后页面.png -------------------------------------------------------------------------------- /实现效果图/pc端登录页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/实现效果图/pc端登录页.png -------------------------------------------------------------------------------- /实现效果图/pc端详情页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/实现效果图/pc端详情页.png -------------------------------------------------------------------------------- /实现效果图/pc端首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/实现效果图/pc端首页.png -------------------------------------------------------------------------------- /实现效果图/手机端注册页.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/实现效果图/手机端注册页.PNG -------------------------------------------------------------------------------- /实现效果图/手机端登录页.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/实现效果图/手机端登录页.PNG -------------------------------------------------------------------------------- /实现效果图/手机端详情页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/实现效果图/手机端详情页.png -------------------------------------------------------------------------------- /实现效果图/手机端首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ching-Lee/react_news/HEAD/实现效果图/手机端首页.png --------------------------------------------------------------------------------