Repository: biaochenxuying/blog-react-admin Branch: master Commit: 220b0aee8250 Files: 281 Total size: 551.1 KB Directory structure: gitextract_4hkosi02/ ├── .circleci/ │ └── config.yml ├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .firebaserc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .stylelintrc.json ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Dockerfile.dev ├── LICENSE ├── README.md ├── README.ru-RU.md ├── README.zh-CN.md ├── appveyor.yml ├── config/ │ ├── config.js │ ├── plugin.config.js │ └── router.config.js ├── docker/ │ ├── docker-compose.dev.yml │ ├── docker-compose.yml │ └── nginx.conf ├── firebase.json ├── functions/ │ ├── index.js │ ├── matchMock.js │ └── package.json ├── jest.config.js ├── jsconfig.json ├── mock/ │ ├── api.js │ ├── blog.js │ ├── chart.js │ ├── geographic/ │ │ ├── city.json │ │ └── province.json │ ├── geographic.js │ ├── notices.js │ ├── profile.js │ ├── rule.js │ └── user.js ├── package.json ├── scripts/ │ └── generateMock.js ├── src/ │ ├── components/ │ │ ├── Authorized/ │ │ │ ├── Authorized.js │ │ │ ├── AuthorizedRoute.js │ │ │ ├── CheckPermissions.js │ │ │ ├── CheckPermissions.test.js │ │ │ ├── PromiseRender.js │ │ │ ├── Secured.js │ │ │ ├── demo/ │ │ │ │ ├── AuthorizedArray.md │ │ │ │ ├── AuthorizedFunction.md │ │ │ │ ├── basic.md │ │ │ │ └── secured.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.md │ │ │ └── renderAuthorize.js │ │ ├── Charts/ │ │ │ ├── Bar/ │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── ChartCard/ │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── Field/ │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── Gauge/ │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── MiniArea/ │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── MiniBar/ │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── MiniProgress/ │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── Pie/ │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── Radar/ │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── TagCloud/ │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── TimelineChart/ │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── WaterWave/ │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.less │ │ │ ├── autoHeight.js │ │ │ ├── bizcharts.d.ts │ │ │ ├── bizcharts.js │ │ │ ├── demo/ │ │ │ │ ├── bar.md │ │ │ │ ├── chart-card.md │ │ │ │ ├── gauge.md │ │ │ │ ├── mini-area.md │ │ │ │ ├── mini-bar.md │ │ │ │ ├── mini-pie.md │ │ │ │ ├── mini-progress.md │ │ │ │ ├── mix.md │ │ │ │ ├── pie.md │ │ │ │ ├── radar.md │ │ │ │ ├── tag-cloud.md │ │ │ │ ├── timeline-chart.md │ │ │ │ └── waterwave.md │ │ │ ├── g2.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ └── index.md │ │ ├── Exception/ │ │ │ ├── demo/ │ │ │ │ ├── 403.md │ │ │ │ ├── 404.md │ │ │ │ └── 500.md │ │ │ ├── index.d.ts │ │ │ ├── index.en-US.md │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ ├── index.zh-CN.md │ │ │ └── typeConfig.js │ │ ├── FooterToolbar/ │ │ │ ├── demo/ │ │ │ │ └── basic.md │ │ │ ├── index.d.ts │ │ │ ├── index.en-US.md │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ └── index.zh-CN.md │ │ ├── GlobalFooter/ │ │ │ ├── demo/ │ │ │ │ └── basic.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ └── index.md │ │ ├── GlobalHeader/ │ │ │ ├── RightContent.js │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── Login/ │ │ │ ├── LoginItem.js │ │ │ ├── LoginSubmit.js │ │ │ ├── LoginTab.js │ │ │ ├── demo/ │ │ │ │ └── basic.md │ │ │ ├── index.d.ts │ │ │ ├── index.en-US.md │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ ├── index.zh-CN.md │ │ │ ├── loginContext.js │ │ │ └── map.js │ │ ├── NoticeIcon/ │ │ │ ├── NoticeIconTab.d.ts │ │ │ ├── NoticeList.js │ │ │ ├── NoticeList.less │ │ │ ├── demo/ │ │ │ │ ├── basic.md │ │ │ │ └── popover.md │ │ │ ├── index.d.ts │ │ │ ├── index.en-US.md │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ └── index.zh-CN.md │ │ ├── PageHeader/ │ │ │ ├── breadcrumb.d.ts │ │ │ ├── breadcrumb.js │ │ │ ├── demo/ │ │ │ │ ├── image.md │ │ │ │ ├── simple.md │ │ │ │ ├── standard.md │ │ │ │ └── structure.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ ├── index.md │ │ │ └── index.test.js │ │ ├── PageHeaderWrapper/ │ │ │ ├── GridContent.js │ │ │ ├── GridContent.less │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── PageLoading/ │ │ │ └── index.js │ │ ├── Result/ │ │ │ ├── demo/ │ │ │ │ ├── classic.md │ │ │ │ ├── error.md │ │ │ │ └── structure.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ └── index.md │ │ ├── SelectLang/ │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── SettingDrawer/ │ │ │ ├── BlockChecbox.js │ │ │ ├── ThemeColor.js │ │ │ ├── ThemeColor.less │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── SiderMenu/ │ │ │ ├── BaseMenu.js │ │ │ ├── SiderMenu.js │ │ │ ├── SiderMenu.test.js │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── StandardTable/ │ │ │ ├── index.js │ │ │ └── index.less │ │ ├── TopNavHeader/ │ │ │ ├── index.js │ │ │ └── index.less │ │ └── _utils/ │ │ ├── pathTools.js │ │ └── pathTools.test.js │ ├── defaultSettings.js │ ├── e2e/ │ │ ├── home.e2e.js │ │ └── login.e2e.js │ ├── global.less │ ├── layouts/ │ │ ├── BasicLayout.js │ │ ├── BlankLayout.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Header.less │ │ ├── MenuContext.js │ │ ├── UserLayout.js │ │ └── UserLayout.less │ ├── locales/ │ │ ├── en-US.js │ │ ├── pt-BR.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ ├── models/ │ │ ├── article.js │ │ ├── category.js │ │ ├── global.js │ │ ├── link.js │ │ ├── list.js │ │ ├── login.js │ │ ├── message.js │ │ ├── otherUser.js │ │ ├── project.js │ │ ├── setting.js │ │ ├── tag.js │ │ ├── timeAxis.js │ │ └── user.js │ ├── pages/ │ │ ├── 404.js │ │ ├── Account/ │ │ │ └── Settings/ │ │ │ ├── BaseView.js │ │ │ ├── BaseView.less │ │ │ ├── Info.js │ │ │ ├── Info.less │ │ │ └── PersonalLinkView.js │ │ ├── Article/ │ │ │ ├── ArticleComponent.js │ │ │ ├── ArticleCreate.js │ │ │ ├── CommentsComponent.js │ │ │ ├── List.js │ │ │ └── style.less │ │ ├── Authorized.js │ │ ├── Category/ │ │ │ ├── CategoryComponent.js │ │ │ └── List.js │ │ ├── Dashboard/ │ │ │ ├── Workplace.js │ │ │ ├── Workplace.less │ │ │ └── models/ │ │ │ └── activities.js │ │ ├── Exception/ │ │ │ ├── 403.js │ │ │ ├── 404.js │ │ │ ├── 500.js │ │ │ ├── TriggerException.js │ │ │ ├── models/ │ │ │ │ └── error.js │ │ │ └── style.less │ │ ├── Link/ │ │ │ ├── LinkComponent.js │ │ │ └── List.js │ │ ├── Message/ │ │ │ ├── List.js │ │ │ └── MessageComponent.js │ │ ├── OtherUser/ │ │ │ ├── List.js │ │ │ ├── OtherUserComponent.js │ │ │ └── style.less │ │ ├── Project/ │ │ │ ├── List.js │ │ │ └── ProjectComponent.js │ │ ├── Tag/ │ │ │ ├── List.js │ │ │ └── TagComponent.js │ │ ├── TimeAxis/ │ │ │ ├── List.js │ │ │ └── TimeAxisComponent.js │ │ ├── User/ │ │ │ ├── Login.js │ │ │ ├── Login.less │ │ │ ├── Register.js │ │ │ ├── Register.less │ │ │ ├── RegisterResult.js │ │ │ ├── RegisterResult.less │ │ │ └── models/ │ │ │ └── register.js │ │ └── document.ejs │ ├── services/ │ │ ├── api.js │ │ ├── error.js │ │ ├── geographic.js │ │ └── user.js │ └── utils/ │ ├── Authorized.js │ ├── Yuan.js │ ├── authority.js │ ├── authority.test.js │ ├── domain.js │ ├── request.js │ ├── utils.js │ └── utils.less └── tests/ ├── fix_puppeteer.sh └── run-tests.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .circleci/config.yml ================================================ version: 2 jobs: build: docker: - image: circleci/node:8.11.4 steps: - checkout - run: npm install - run: npm run build test: docker: - image: circleci/node:8.11.4 steps: - checkout - run: sh ./tests/fix_puppeteer.sh - run: npm install - run: command : npm run test:all no_output_timeout : 30m workflows: version: 2 build_and_test: jobs: - build - test ================================================ FILE: .dockerignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies **/node_modules # roadhog-api-doc ignore /src/utils/request-temp.js _roadhog-api-doc # production /dist /.vscode # misc .DS_Store npm-debug.log* yarn-error.log /coverage .idea yarn.lock package-lock.json *bak .vscode # visual studio code .history *.log functions/mock .temp/** # umi .umi .umi-production # screenshot screenshot .firebase ================================================ FILE: .editorconfig ================================================ # http://editorconfig.org root = true [*] indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false [Makefile] indent_style = tab ================================================ FILE: .eslintignore ================================================ /functions/mock ================================================ FILE: .eslintrc.js ================================================ module.exports = { parser: 'babel-eslint', extends: ['airbnb', 'prettier', 'plugin:compat/recommended'], env: { browser: true, node: true, es6: true, mocha: true, jest: true, jasmine: true, }, globals: { APP_TYPE: true, }, rules: { 'react/jsx-filename-extension': [1, { extensions: ['.js'] }], 'react/jsx-wrap-multilines': 0, 'react/prop-types': 0, 'react/forbid-prop-types': 0, 'react/jsx-one-expression-per-line': 0, 'import/no-unresolved': [2, { ignore: ['^@/', '^umi/'] }], 'import/no-extraneous-dependencies': [2, { optionalDependencies: true }], 'jsx-a11y/no-noninteractive-element-interactions': 0, 'jsx-a11y/click-events-have-key-events': 0, 'jsx-a11y/no-static-element-interactions': 0, 'jsx-a11y/anchor-is-valid': 0, 'linebreak-style': 0, }, settings: { polyfills: ['fetch', 'promises', 'url'], }, }; ================================================ FILE: .firebaserc ================================================ { "projects": { "default": "antd-pro" } } ================================================ FILE: .gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies **/node_modules /dist # roadhog-api-doc ignore /src/utils/request-temp.js _roadhog-api-doc # production /.vscode # misc .DS_Store npm-debug.log* yarn-error.log /coverage .idea yarn.lock package-lock.json *bak .vscode # visual studio code .history *.log functions/mock .temp/** # umi .umi .umi-production # screenshot screenshot .firebase ================================================ FILE: .prettierignore ================================================ **/*.md **/*.svg **/*.ejs **/*.html package.json .umi .umi-production ================================================ FILE: .prettierrc ================================================ { "singleQuote": true, "trailingComma": "es5", "printWidth": 100, "overrides": [ { "files": ".prettierrc", "options": { "parser": "json" } } ] } ================================================ FILE: .stylelintrc.json ================================================ { "extends": ["stylelint-config-standard", "stylelint-config-prettier"], "rules": { "declaration-empty-line-before": null, "no-descending-specificity": null, "selector-pseudo-class-no-unknown": null, "selector-pseudo-element-colon-notation": null } } ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at afc163@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] [homepage]: http://contributor-covenant.org [version]: http://contributor-covenant.org/version/1/4/ ================================================ FILE: Dockerfile ================================================ FROM node:latest WORKDIR /usr/src/app/ COPY package.json ./ RUN npm install --silent --no-cache COPY ./ ./ RUN apt-get update RUN apt-get install -yq gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 \ libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 \ libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 \ libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \ ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget CMD ["npm", "run", "build"] ================================================ FILE: Dockerfile.dev ================================================ FROM node:latest WORKDIR /usr/src/app/ COPY package.json ./ RUN npm install --silent --no-cache COPY ./ ./ CMD ["npm", "run", "start"] ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2018 Alipay.inc Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ ![效果图1.gif](https://upload-images.jianshu.io/upload_images/12890819-226f48af9087c3cf.gif?imageMogr2/auto-orient/strip) ![文章列表效果](https://upload-images.jianshu.io/upload_images/12890819-470c8996b8ebdfaf.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) ![评论审核效果](https://upload-images.jianshu.io/upload_images/12890819-80ae92fc0e493805.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) ## 前言 此 blog-react-admin 项目是基于 [蚂蚁金服开源的 ant design pro](https://pro.ant.design/index-cn) 之上,用 react 全家桶 + Ant Design 的进行再次开发的,项目已经开源,项目地址在 github 上。 效果预览 [https://preview.pro.ant.design/user/login](https://preview.pro.ant.design/user/login) ## 已实现功能 - [x] 登录 - [x] 文章管理 - [x] 标签管理 - [x] 留言管理 - [x] 用户管理 - [x] 友情链接管理 - [x] 时间轴管理 - [x] 富文本编辑器(支持 MarkDown 语法) - [x] 项目展示 - [x] 评论管理 ## 待实现功能 - [ ] 个人中心(用来设置博主的各种信息) - [ ] 工作台( 接入百度统计接口,查看网站浏览量和用户访问等数据 ) ## 主要项目结构 ``` - pages - Account 博主个人中心 - article 文章管理 - Category 分类 - Dashboard 工作台 - Exection 403 404 500 等页面 - Link 链接管理 - Message 留言管理 - OtherUser 用户管理 - Project 项目 - Tag 标签管理 - TimeAsix 时间轴 - User 登录注册管理 ``` 文章管理、用户管理、留言等 具体业务需求,都是些常用的逻辑可以实现的,也很简单,这里就不展开讲了。 ## 添加富文本编辑器,同样支持 markdown 语法 添加的编辑器为 [simplemde-markdown-editor](https://github.com/sparksuite/simplemde-markdown-editor) 效果图 ![效果图1](https://user-images.githubusercontent.com/24362914/49021611-01c45080-f1ce-11e8-988a-8c1064a448de.png) 参考的文章为 [react 搭建博客---支持markdown的富文本编辑器](https://segmentfault.com/a/1190000010616632) ## 搭建 使用详情请查看 [Ant Design Pro ](https://pro.ant.design/docs/getting-started-cn),因为本项目也是在这个基础之上,按这个规范来构建的。 ## 缺点 开发时,程序出错后,修改正确后,webpack 有时不会及时查觉到内容已经更改,从而不能及时编译,要重新运行命令打包。 笔者的文章里面的图片都是上传到简书上的,创建文章时,只是写个图片链接而已,你们也可以上传到简书或者七牛云,或者其他第三方。 ## Build Setup ( 构建安装 ) ``` # install dependencies npm install # serve with hot reload at localhost: 3000 npm start # build for production with minification npm run build ``` 如果要看完整的效果,是要和后台项目 **[blog-node](https://github.com/biaochenxuying/blog-node)** 一起运行才行的,不然接口请求会失败。 ## 项目常见问题 ### 管理后台登录 管理后台登录是用 **邮箱加密码** 进行登录 ### 管理员账号创建 ![](https://upload-images.jianshu.io/upload_images/12890819-67861a912768e646.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) 管理后台的登录账号并不是 admin/user ,也不是搭建 mongodb 数据库时创建的 user 用户,这里的账号和密码要自己创建,至于怎样创建呢? ### 用 postman 调接口注册 如果是本地的可以像这样子创建,如果是服务器上的,请把 url 修改一下, ![注册](https://upload-images.jianshu.io/upload_images/12890819-3772744f72b8ed3e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) - 1. url ``` http://127.0.0.1:3000/register ``` - 2. param ``` { "name": "BiaoChenXuYing", "password": "888888", "email": "admin@qq.com", "phone": 1380013800, "type": 0, "introduce":"加班到天明,学习到昏厥!!! 微信公众号:【 BiaoChenXuYing 】,分享 WEB 全栈开发等相关的技术文章,热点资源,全栈程序员的成长之路。" } ``` 这里的 type 为 0 是管理员账号,为 1 时,是普通用户。 ### 权限 注册了管理员账号,并用管理员账号登录,还不能正常登录管理后台的,会被重定向加登录页面。因为权限管理的限制,要把自己注册的管理员账号的 **名字** 加在 config/router.config.js 的 authority 里面。 详情请看: ``` https://pro.ant.design/docs/authority-management-cn ``` ### 登录 登录博客管理后台是用 **邮箱** 加 **密码** 登录。 ## 项目地址与文档教程 开源不易,如果觉得该项目不错或者对你有所帮助,欢迎到 github 上给个 star,谢谢。 **项目地址:** > [前台展示: https://github.com/biaochenxuying/blog-react](https://github.com/biaochenxuying/blog-react) > [前台展示: https://github.com/biaochenxuying/blog-vue-typescript](https://github.com/biaochenxuying/blog-vue-typescript) > [管理后台:https://github.com/biaochenxuying/blog-react-admin](https://github.com/biaochenxuying/blog-react-admin) > [后端:https://github.com/biaochenxuying/blog-node](https://github.com/biaochenxuying/blog-node) > [blog:https://github.com/biaochenxuying/blog](https://github.com/biaochenxuying/blog) **本博客系统的系列文章:** - 1. [react + node + express + ant + mongodb 的简洁兼时尚的博客网站](https://biaochenxuying.cn/articleDetail?article_id=5bf57a8f85e0f13af26e579b) - 2. [react + Ant Design + 支持 markdown 的 blog-react 项目文档说明](https://biaochenxuying.cn/articleDetail?article_id=5bf6bb5e85e0f13af26e57b7) - 3. [基于 node + express + mongodb 的 blog-node 项目文档说明](https://biaochenxuying.cn/articleDetail?article_id=5bf8c57185e0f13af26e7d0d) - 4. [服务器小白的我,是如何将 node+mongodb 项目部署在服务器上并进行性能优化的](https://biaochenxuying.cn/articleDetail?article_id=5bfa728bb54f044b4f9da240) - 5. [github 授权登录教程与如何设计第三方授权登录的用户表](https://biaochenxuying.cn/articleDetail?article_id=5c7bd34e42b55e2ecc90976d) - 6. [一次网站的性能优化之路 -- 天下武功,唯快不破](https://biaochenxuying.cn/articleDetail?article_id=5c8ca2d3b87b8a04f1860c9a) - 7. [Vue + TypeScript + Element 搭建简洁时尚的博客网站及踩坑记](https://biaochenxuying.cn/articleDetail?article_id=5c9d8ce5f181945ddd6b0ffc) - 8. [前端解决第三方图片防盗链的办法 - html referrer 访问图片资源403问题](https://biaochenxuying.cn/articleDetail?article_id=5cfcc6798090bd3c84138a08) ## 服务器 笔者觉得每个开发者都应该拥有自己的网站和服务器,这可是很酷的事情,学习 Linux、跑跑脚本、建站、搭博客啥的都行啊。 因为笔者就有自己的服务器,而且有两台了,用于平时的学习,还搭建了自己的网站。 有不少读者问过我,为什么我学的那么快的呢 ? 怎么在一年内学了那么知识的... 其实也没什么秘决,就是平时有自己的服务器了,就爱折腾,学到的知识能很快得到验证,所以学起来兴致高一点。 特别是大三和大四的学生,买了服务器,搭建个项目给面试官看也香,对找工作和面试都加分,还可以熟悉技术栈。 [想学得快,就得有自己的服务器来折腾才行(低于 1 折、89/年、229/3年,比学生机还便宜)](https://biaochenxuying.cn/articleDetail?article_id=5de65dd90283dc742f8f633a) 比如笔者的两个网站: > https://biaochenxuying.cn/ > https://www.kwgg2020.com/ ## 最后 如果您觉得本项目和文章不错或者对你有所帮助,请给个星吧,你的肯定就是我继续创作的最大动力。 ================================================ FILE: README.ru-RU.md ================================================ [English](./README.md) | [简体中文](./README.zh-CN.md) | Русский

Ant Design Pro

UI-решение "из коробки" для корпоративных приложений как React boilerplate [![CircleCI Status](https://circleci.com/gh/ant-design/ant-design-pro.svg?style=svg)](https://circleci.com/gh/ant-design/ant-design-pro/) [![Build status](https://ci.appveyor.com/api/projects/status/67fxu2by3ibvqtat/branch/master?svg=true)](https://ci.appveyor.com/project/afc163/ant-design-pro/branch/master) [![Dependencies](https://img.shields.io/david/ant-design/ant-design-pro.svg)](https://david-dm.org/ant-design/ant-design-pro) [![DevDependencies](https://img.shields.io/david/dev/ant-design/ant-design-pro.svg)](https://david-dm.org/ant-design/ant-design-pro?type=dev) [![Gitter](https://badges.gitter.im/ant-design/ant-design-pro.svg)](https://gitter.im/ant-design/ant-design-pro?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) ![](https://user-images.githubusercontent.com/8186664/44953195-581e3d80-aec4-11e8-8dcb-54b9db38ec11.png)
- Демо: http://preview.pro.ant.design - Домашняя страница: http://pro.ant.design - Документация: http://pro.ant.design/docs/getting-started - История изменений: http://pro.ant.design/docs/changelog - FAQ: http://pro.ant.design/docs/faq - Китайское зеркало сайта: http://ant-design-pro.gitee.io ## Поиск переводчиков :loudspeaker: Нам нужна ваша помощь: https://github.com/ant-design/ant-design-pro/issues/120 ## Возможности - :gem: **Аккуратный дизайн**: Посмотрите [спецификацию Ant Design](http://ant.design/) - :triangular_ruler: **Общие шаблоны**: Стандартные шаблоны для корпоративных приложений - :rocket: **Разработка, как искусство**: Новейший стек технологий React/umi/dva/antd - :iphone: **Отзывчивая верстка**: Создан для экранов разных размеров - :art: **Темизация**: Возможность изменения темы с помощью конфигурации - :globe_with_meridians: **Мультиязычность**: Встроенное i18n решение - :gear: **Лучшие практики**: Надежные процессы для хорошего кода - :1234: **Разработка по шаблону**: Простое в использовании решение для разработки - :white_check_mark: **UI тесты**: Разрабатывайте безопасно с юнит и e2e тестами ## Шаблоны ``` - Dashboard - Analytic - Monitor - Workspace - Form - Basic Form - Step Form - Advanced From - List - Standard Table - Standard List - Card List - Search List (Project/Applications/Article) - Profile - Simple Profile - Advanced Profile - Account - Account Center - Account Settings - Result - Success - Failed - Exception - 403 - 404 - 500 - User - Login - Register - Register Result ``` ## Использование ```bash $ git clone https://github.com/ant-design/ant-design-pro.git --depth=1 $ cd ant-design-pro $ npm install $ npm start # visit http://localhost:8000 ``` Больше информации в [документации](http://pro.ant.design/docs/getting-started). ## Совместимость Современные браузеры и IE11. | [IE / Edge](http://godban.github.io/browsers-support-badges/)
IE / Edge | [Firefox](http://godban.github.io/browsers-support-badges/)
Firefox | [Chrome](http://godban.github.io/browsers-support-badges/)
Chrome | [Safari](http://godban.github.io/browsers-support-badges/)
Safari | [Opera](http://godban.github.io/browsers-support-badges/)
Opera | | --------- | --------- | --------- | --------- | --------- | | IE11, Edge| last 2 versions| last 2 versions| last 2 versions| last 2 versions ## Распространение Любые варианты распространения приветствуются! Вот несколько примероы того, как вы можете помочь распространению проекта: - Использовать Ant Design Pro в ежедневной работе. - Создавать [задачи](http://github.com/ant-design/ant-design-pro/issues) заводить баги или отвечать на вопросы. - Делать [pull-реквесты](http://github.com/ant-design/ant-design-pro/pulls) для совершенствования нашего кода. ================================================ FILE: README.zh-CN.md ================================================ [English](./README.md) | 简体中文 | [Русский](./README.ru-RU.md)

Ant Design Pro

开箱即用的中台前端/设计解决方案。 [![CircleCI Status](https://circleci.com/gh/ant-design/ant-design-pro.svg?style=svg)](https://circleci.com/gh/ant-design/ant-design-pro/) [![Build status](https://ci.appveyor.com/api/projects/status/67fxu2by3ibvqtat/branch/master?svg=true)](https://ci.appveyor.com/project/afc163/ant-design-pro/branch/master) [![Dependencies](https://img.shields.io/david/ant-design/ant-design-pro.svg)](https://david-dm.org/ant-design/ant-design-pro) [![DevDependencies](https://img.shields.io/david/dev/ant-design/ant-design-pro.svg)](https://david-dm.org/ant-design/ant-design-pro?type=dev) [![Gitter](https://badges.gitter.im/ant-design/ant-design-pro.svg)](https://gitter.im/ant-design/ant-design-pro?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) ![](https://user-images.githubusercontent.com/8186664/44953195-581e3d80-aec4-11e8-8dcb-54b9db38ec11.png)
- 预览:http://preview.pro.ant.design - 首页:http://pro.ant.design/index-cn - 使用文档:http://pro.ant.design/docs/getting-started-cn - 更新日志: http://pro.ant.design/docs/changelog-cn - 常见问题:http://pro.ant.design/docs/faq-cn - 国内镜像:http://ant-design-pro.gitee.io ## 特性 - :gem: **优雅美观**:基于 Ant Design 体系精心设计 - :triangular_ruler: **常见设计模式**:提炼自中后台应用的典型页面和场景 - :rocket: **最新技术栈**:使用 React/umi/dva/antd 等前端前沿技术开发 - :iphone: **响应式**:针对不同屏幕大小设计 - :art: **主题**:可配置的主题满足多样化的品牌诉求 - :globe_with_meridians: **国际化**:内建业界通用的国际化方案 - :gear: **最佳实践**:良好的工程实践助您持续产出高质量代码 - :1234: **Mock 数据**:实用的本地数据调试方案 - :white_check_mark: **UI 测试**:自动化测试保障前端产品质量 ## 模板 ``` - Dashboard - 分析页 - 监控页 - 工作台 - 表单页 - 基础表单页 - 分步表单页 - 高级表单页 - 列表页 - 查询表格 - 标准列表 - 卡片列表 - 搜索列表(项目/应用/文章) - 详情页 - 基础详情页 - 高级详情页 - 用户 - 用户中心页 - 用户设置页 - 结果 - 成功页 - 失败页 - 异常 - 403 无权限 - 404 找不到 - 500 服务器出错 - 帐户 - 登录 - 注册 - 注册成功 ``` ## 使用 ### 使用命令行 ```bash $ git clone https://github.com/ant-design/ant-design-pro.git --depth=1 $ cd ant-design-pro $ npm install $ npm start # 访问 http://localhost:8000 ``` ### 使用 docker ```bash // dev $ npm run docker:dev // build $ npm run docker:build // production dev $ npm run docker-prod:dev // production build $ npm run docker-prod:build ``` 更多信息请参考 [使用文档](http://pro.ant.design/docs/getting-started)。 ## 支持环境 现代浏览器及 IE11。 | [IE / Edge](http://godban.github.io/browsers-support-badges/)
IE / Edge | [Firefox](http://godban.github.io/browsers-support-badges/)
Firefox | [Chrome](http://godban.github.io/browsers-support-badges/)
Chrome | [Safari](http://godban.github.io/browsers-support-badges/)
Safari | [Opera](http://godban.github.io/browsers-support-badges/)
Opera | | --------- | --------- | --------- | --------- | --------- | | IE11, Edge| last 2 versions| last 2 versions| last 2 versions| last 2 versions ## 参与贡献 我们非常欢迎你的贡献,你可以通过以下方式和我们一起共建 :smiley:: - 在你的公司或个人项目中使用 Ant Design Pro。 - 通过 [Issue](http://github.com/ant-design/ant-design-pro/issues) 报告 bug 或进行咨询。 - 提交 [Pull Request](http://github.com/ant-design/ant-design-pro/pulls) 改进 Pro 的代码。 ================================================ FILE: appveyor.yml ================================================ # Test against the latest version of this Node.js version environment: nodejs_version: "8" # this is how to allow failing jobs in the matrix matrix: fast_finish: true # set this flag to immediately finish build once one of the jobs fails. # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:nodejs_version # install modules - npm install # Output useful info for debugging. - node --version - npm --version # Post-install test scripts. test_script: - npm run lint - npm run test:all - npm run build # Don't actually build. build: off ================================================ FILE: config/config.js ================================================ // https://umijs.org/config/ import os from 'os'; import pageRoutes from './router.config'; import webpackplugin from './plugin.config'; import defaultSettings from '../src/defaultSettings'; export default { // add for transfer to umi plugins: [ [ 'umi-plugin-react', { antd: true, dva: { hmr: true, }, targets: { ie: 11, }, locale: { enable: true, // default false default: 'zh-CN', // default zh-CN baseNavigator: true, // default true, when it is true, will use `navigator.language` overwrite default }, dynamicImport: { loadingComponent: './components/PageLoading/index', }, ...(!process.env.TEST && os.platform() === 'darwin' ? { dll: { include: ['dva', 'dva/router', 'dva/saga', 'dva/fetch'], exclude: ['@babel/runtime'], }, hardSource: true, } : {}), }, ], [ 'umi-plugin-ga', { code: 'UA-72788897-6', }, ], ], targets: { ie: 11, }, define: { APP_TYPE: process.env.APP_TYPE || '', }, // 路由配置 routes: pageRoutes, // Theme for antd // https://ant.design/docs/react/customize-theme-cn theme: { 'primary-color': defaultSettings.primaryColor, }, externals: { '@antv/data-set': 'DataSet', }, proxy: { '/api': { target: 'http://127.0.0.1:3000', changeOrigin: true, pathRewrite: { '^/api': '' }, }, }, ignoreMomentLocale: true, lessLoaderOptions: { javascriptEnabled: true, }, disableRedirectHoist: true, cssLoaderOptions: { modules: true, getLocalIdent: (context, localIdentName, localName) => { if ( context.resourcePath.includes('node_modules') || context.resourcePath.includes('ant.design.pro.less') || context.resourcePath.includes('global.less') ) { return localName; } const match = context.resourcePath.match(/src(.*)/); if (match && match[1]) { const antdProPath = match[1].replace('.less', ''); const arr = antdProPath .split('/') .map(a => a.replace(/([A-Z])/g, '-$1')) .map(a => a.toLowerCase()); return `antd-pro${arr.join('-')}-${localName}`.replace(/--/g, '-'); } return localName; }, }, manifest: { name: 'reac-blog', background_color: '#FFF', description: 'An out-of-box UI solution for enterprise applications as a React boilerplate.', display: 'standalone', start_url: '/index.html', icons: [ { src: '/favicon.png', sizes: '48x48', type: 'image/png', }, ], }, chainWebpack: webpackplugin, cssnano: { mergeRules: false, }, }; ================================================ FILE: config/plugin.config.js ================================================ // Change theme plugin import MergeLessPlugin from 'antd-pro-merge-less'; import AntDesignThemePlugin from 'antd-pro-theme-webpack-plugin'; import path from 'path'; export default config => { // 将所有 less 合并为一个供 themePlugin使用 const outFile = path.join(__dirname, '../.temp/ant-design-pro.less'); const stylesDir = path.join(__dirname, '../src/'); config.plugin('merge-less').use(MergeLessPlugin, [ { stylesDir, outFile, }, ]); config.plugin('ant-design-theme').use(AntDesignThemePlugin, [ { antDir: path.join(__dirname, '../node_modules/antd'), stylesDir, varFile: path.join(__dirname, '../node_modules/antd/lib/style/themes/default.less'), mainLessFile: outFile, // themeVariables: ['@primary-color'], indexFileName: 'index.html', }, ]); }; ================================================ FILE: config/router.config.js ================================================ export default [ // user { path: '/user', component: '../layouts/UserLayout', routes: [ { path: '/user', redirect: '/user/login' }, { path: '/user/login', component: './User/Login' }, // { path: '/user/register', component: './User/Register' }, // { path: '/user/register-result', component: './User/RegisterResult' }, ], }, // app { path: '/', component: '../layouts/BasicLayout', Routes: ['src/pages/Authorized'], authority: ['admin', 'user', 'xuying', 'biaochenxuying'], routes: [ // dashboard { path: '/', redirect: '/user/login' }, // { path: '/', redirect: '/dashboard/workplace' }, { path: '/dashboard', name: 'dashboard', icon: 'dashboard', routes: [ { path: '/dashboard/workplace', name: 'workplace', component: './Dashboard/Workplace', }, ], }, { path: '/otherUser', name: 'otherUser', icon: 'usergroup-add', routes: [ { path: '/otherUser/list', name: 'list', component: './OtherUser/List', }, ], }, { path: '/article', name: 'article', icon: 'file-markdown', routes: [ { path: '/article/list', name: 'list', component: './Article/List', }, { path: '/article/create', name: 'create', component: './Article/ArticleCreate', }, ], }, { path: '/message', name: 'message', icon: 'message', routes: [ { path: '/message/list', name: 'list', component: './Message/List', }, ], }, { path: '/tag', name: 'tag', icon: 'tags', routes: [ { path: '/tag/list', name: 'list', component: './Tag/List', }, ], }, { path: '/link', name: 'link', icon: 'link', routes: [ { path: '/link/list', name: 'list', component: './Link/List', }, ], }, { path: '/category', name: 'category', icon: 'book', routes: [ { path: '/category/list', name: 'list', component: './Category/List', }, ], }, { path: '/timeAxis', name: 'timeAxis', icon: 'clock-circle', routes: [ { path: '/timeAxis/list', name: 'list', component: './TimeAxis/List', }, ], }, { path: '/project', name: 'project', icon: 'clock-circle', routes: [ { path: '/project/list', name: 'list', component: './Project/List', }, ], }, { name: 'exception', icon: 'warning', path: '/exception', routes: [ // exception { path: '/exception/403', name: 'not-permission', component: './Exception/403', }, { path: '/exception/404', name: 'not-find', component: './Exception/404', }, { path: '/exception/500', name: 'server-error', component: './Exception/500', }, { path: '/exception/trigger', name: 'trigger', hideInMenu: true, component: './Exception/TriggerException', }, ], }, { name: 'account', icon: 'user', path: '/account', routes: [ { path: '/account/settings', name: 'settings', component: './Account/Settings/Info', routes: [ { path: '/account/settings', redirect: '/account/settings/base', }, { path: '/account/settings/base', component: './Account/Settings/BaseView', }, { path: '/account/settings/personalLink', component: './Account/Settings/PersonalLinkView', }, ], }, ], }, { component: '404', }, ], }, ]; ================================================ FILE: docker/docker-compose.dev.yml ================================================ version: "3.5" services: ant-design-pro_dev: ports: - 8000:8000 build: context: ../ dockerfile: Dockerfile.dev container_name: "ant-design-pro_dev" volumes: - ../src:/usr/src/app/src - ../config:/usr/src/app/config - ../mock:/usr/src/app/mock ================================================ FILE: docker/docker-compose.yml ================================================ version: "3.5" services: ant-design-pro_build: build: ../ container_name: "ant-design-pro_build" volumes: - dist:/usr/src/app/dist ant-design-pro_web: image: nginx ports: - 80:80 container_name: "ant-design-pro_web" restart: unless-stopped volumes: - dist:/usr/share/nginx/html:ro - ./nginx.conf:/etc/nginx/conf.d/default.conf volumes: dist: ================================================ FILE: docker/nginx.conf ================================================ server { listen 80; # gzip config gzip on; gzip_min_length 1k; gzip_comp_level 9 gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png; gzip_vary on; gzip_disable "MSIE [1-6]\."; root /usr/share/nginx/html; location / { try_files $uri $uri/ /index.html; } location /api { proxy_pass https://preview.pro.ant.design; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; } } ================================================ FILE: firebase.json ================================================ { "hosting": { "public": "dist", "rewrites": [ { "source": "/api/**", "function": "api" }, { "source": "**", "destination": "/index.html" } ], "ignore": ["firebase.json", "**/.*", "**/node_modules/**"] } } ================================================ FILE: functions/index.js ================================================ // [START functionsimport] const functions = require('firebase-functions'); const express = require('express'); const matchMock = require('./matchMock'); const app = express(); app.use(matchMock); exports.api = functions.https.onRequest(app); ================================================ FILE: functions/matchMock.js ================================================ const mockFile = require('./mock/index'); const pathToRegexp = require('path-to-regexp'); const debug = console.log; const bodyParser = require('body-parser'); const BODY_PARSED_METHODS = ['post', 'put', 'patch']; function parseKey(key) { let method = 'get'; let path = key; if (key.indexOf(' ') > -1) { const splited = key.split(' '); method = splited[0].toLowerCase(); path = splited[1]; // eslint-disable-line } return { method, path, }; } function createHandler(method, path, handler) { return function(req, res, next) { if (BODY_PARSED_METHODS.includes(method)) { bodyParser.json({ limit: '5mb', strict: false })(req, res, () => { bodyParser.urlencoded({ limit: '5mb', extended: true })(req, res, () => { sendData(); }); }); } else { sendData(); } function sendData() { if (typeof handler === 'function') { handler(req, res, next); } else { res.json(handler); } } }; } function normalizeConfig(config) { return Object.keys(config).reduce((memo, key) => { const handler = config[key]; const { method, path } = parseKey(key); const keys = []; const re = pathToRegexp(path, keys); memo.push({ method, path, re, keys, handler: createHandler(method, path, handler), }); return memo; }, []); } const mockData = normalizeConfig(mockFile); function matchMock(req) { const { path: exceptPath } = req; const exceptMethod = req.method.toLowerCase(); for (const mock of mockData) { const { method, re, keys } = mock; if (method === exceptMethod) { const match = re.exec(req.path); if (match) { const params = {}; for (let i = 1; i < match.length; i = i + 1) { const key = keys[i - 1]; const prop = key.name; const val = decodeParam(match[i]); if (val !== undefined || !hasOwnProperty.call(params, prop)) { params[prop] = val; } } req.params = params; return mock; } } } function decodeParam(val) { if (typeof val !== 'string' || val.length === 0) { return val; } try { return decodeURIComponent(val); } catch (err) { if (err instanceof URIError) { err.message = `Failed to decode param ' ${val} '`; err.status = err.statusCode = 400; } throw err; } } return mockData.filter(({ method, re }) => { return method === exceptMethod && re.test(exceptPath); })[0]; } module.exports = (req, res, next) => { const match = matchMock(req); if (match) { debug(`mock matched: [${match.method}] ${match.path}`); return match.handler(req, res, next); } else { return next(); } }; ================================================ FILE: functions/package.json ================================================ { "name": "functions", "description": "Cloud Functions for Firebase", "scripts": { "serve": "npm run mock && firebase serve --only functions", "shell": "firebase functions:shell", "start": "npm run shell", "deploy": "firebase deploy --only functions", "logs": "firebase functions:log", "mock": "node ../scripts/generateMock.js" }, "dependencies": { "@babel/runtime": "^7.0.0", "body-parser": "^1.18.3", "express": "^4.16.3", "firebase-admin": "^5.12.1", "firebase-functions": "^2.0.5", "mockjs": "^1.0.1-beta3", "moment": "^2.22.2", "path-to-regexp": "^2.2.1" }, "private": true } ================================================ FILE: jest.config.js ================================================ module.exports = { testURL: 'http://localhost:8000', }; ================================================ FILE: jsconfig.json ================================================ { "compilerOptions": { "emitDecoratorMetadata": true, "experimentalDecorators": true, "baseUrl": ".", "paths": { "@/*": ["./src/*"] } } } ================================================ FILE: mock/api.js ================================================ import mockjs from 'mockjs'; const titles = [ 'Alipay', 'Angular', 'Ant Design', 'Ant Design Pro', 'Bootstrap', 'React', 'Vue', 'Webpack', ]; const avatars = [ 'https://gw.alipayobjects.com/zos/rmsportal/WdGqmHpayyMjiEhcKoVE.png', // Alipay 'https://gw.alipayobjects.com/zos/rmsportal/zOsKZmFRdUtvpqCImOVY.png', // Angular 'https://gw.alipayobjects.com/zos/rmsportal/dURIMkkrRFpPgTuzkwnB.png', // Ant Design 'https://gw.alipayobjects.com/zos/rmsportal/sfjbOqnsXXJgNCjCzDBL.png', // Ant Design Pro 'https://gw.alipayobjects.com/zos/rmsportal/siCrBXXhmvTQGWPNLBow.png', // Bootstrap 'https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png', // React 'https://gw.alipayobjects.com/zos/rmsportal/ComBAopevLwENQdKWiIn.png', // Vue 'https://gw.alipayobjects.com/zos/rmsportal/nxkuOJlFJuAUhzlMTCEe.png', // Webpack ]; const avatars2 = [ 'https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png', 'https://gw.alipayobjects.com/zos/rmsportal/cnrhVkzwxjPwAaCfPbdc.png', 'https://gw.alipayobjects.com/zos/rmsportal/gaOngJwsRYRaVAuXXcmB.png', 'https://gw.alipayobjects.com/zos/rmsportal/ubnKSIfAJTxIgXOKlciN.png', 'https://gw.alipayobjects.com/zos/rmsportal/WhxKECPNujWoWEFNdnJE.png', 'https://gw.alipayobjects.com/zos/rmsportal/jZUIxmJycoymBprLOUbT.png', 'https://gw.alipayobjects.com/zos/rmsportal/psOgztMplJMGpVEqfcgF.png', 'https://gw.alipayobjects.com/zos/rmsportal/ZpBqSxLxVEXfcUNoPKrz.png', 'https://gw.alipayobjects.com/zos/rmsportal/laiEnJdGHVOhJrUShBaJ.png', 'https://gw.alipayobjects.com/zos/rmsportal/UrQsqscbKEpNuJcvBZBu.png', ]; const covers = [ 'https://gw.alipayobjects.com/zos/rmsportal/uMfMFlvUuceEyPpotzlq.png', 'https://gw.alipayobjects.com/zos/rmsportal/iZBVOIhGJiAnhplqjvZW.png', 'https://gw.alipayobjects.com/zos/rmsportal/iXjVmWVHbCJAyqvDxdtx.png', 'https://gw.alipayobjects.com/zos/rmsportal/gLaIAoVWTtLbBWZNYEMg.png', ]; const desc = [ '那是一种内在的东西, 他们到达不了,也无法触及的', '希望是一个好东西,也许是最好的,好东西是不会消亡的', '生命就像一盒巧克力,结果往往出人意料', '城镇中有那么多的酒馆,她却偏偏走进了我的酒馆', '那时候我只会想自己想要什么,从不想自己拥有什么', ]; const user = [ '付小小', '曲丽丽', '林东东', '周星星', '吴加好', '朱偏右', '鱼酱', '乐哥', '谭小仪', '仲尼', ]; function fakeList(count) { const list = []; for (let i = 0; i < count; i += 1) { list.push({ id: `fake-list-${i}`, owner: user[i % 10], title: titles[i % 8], avatar: avatars[i % 8], cover: parseInt(i / 4, 10) % 2 === 0 ? covers[i % 4] : covers[3 - (i % 4)], status: ['active', 'exception', 'normal'][i % 3], percent: Math.ceil(Math.random() * 50) + 50, logo: avatars[i % 8], href: 'https://ant.design', updatedAt: new Date(new Date().getTime() - 1000 * 60 * 60 * 2 * i), createdAt: new Date(new Date().getTime() - 1000 * 60 * 60 * 2 * i), subDescription: desc[i % 5], description: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的组件会被抽离成一套标准规范。', activeUser: Math.ceil(Math.random() * 100000) + 100000, newUser: Math.ceil(Math.random() * 1000) + 1000, star: Math.ceil(Math.random() * 100) + 100, like: Math.ceil(Math.random() * 100) + 100, message: Math.ceil(Math.random() * 10) + 10, content: '段落示意:蚂蚁金服设计平台 ant.design,用最小的工作量,无缝接入蚂蚁金服生态,提供跨越设计与开发的体验解决方案。蚂蚁金服设计平台 ant.design,用最小的工作量,无缝接入蚂蚁金服生态,提供跨越设计与开发的体验解决方案。', members: [ { avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ZiESqWwCXBRQoaPONSJe.png', name: '曲丽丽', id: 'member1', }, { avatar: 'https://gw.alipayobjects.com/zos/rmsportal/tBOxZPlITHqwlGjsJWaF.png', name: '王昭君', id: 'member2', }, { avatar: 'https://gw.alipayobjects.com/zos/rmsportal/sBxjgqiuHMGRkIjqlQCd.png', name: '董娜娜', id: 'member3', }, ], }); } return list; } let sourceData; function getFakeList(req, res) { const params = req.query; const count = params.count * 1 || 20; const result = fakeList(count); sourceData = result; return res.json(result); } function postFakeList(req, res) { const { /* url = '', */ body } = req; // const params = getUrlParams(url); const { method, id } = body; // const count = (params.count * 1) || 20; let result = sourceData; switch (method) { case 'delete': result = result.filter(item => item.id !== id); break; case 'update': result.forEach((item, i) => { if (item.id === id) { result[i] = Object.assign(item, body); } }); break; case 'post': result.unshift({ body, id: `fake-list-${result.length}`, createdAt: new Date().getTime(), }); break; default: break; } return res.json(result); } const getNotice = [ { id: 'xxx1', title: titles[0], logo: avatars[0], description: '那是一种内在的东西,他们到达不了,也无法触及的', updatedAt: new Date(), member: '科学搬砖组', href: '', memberLink: '', }, { id: 'xxx2', title: titles[1], logo: avatars[1], description: '希望是一个好东西,也许是最好的,好东西是不会消亡的', updatedAt: new Date('2017-07-24'), member: '全组都是吴彦祖', href: '', memberLink: '', }, { id: 'xxx3', title: titles[2], logo: avatars[2], description: '城镇中有那么多的酒馆,她却偏偏走进了我的酒馆', updatedAt: new Date(), member: '中二少女团', href: '', memberLink: '', }, { id: 'xxx4', title: titles[3], logo: avatars[3], description: '那时候我只会想自己想要什么,从不想自己拥有什么', updatedAt: new Date('2017-07-23'), member: '程序员日常', href: '', memberLink: '', }, { id: 'xxx5', title: titles[4], logo: avatars[4], description: '凛冬将至', updatedAt: new Date('2017-07-23'), member: '高逼格设计天团', href: '', memberLink: '', }, { id: 'xxx6', title: titles[5], logo: avatars[5], description: '生命就像一盒巧克力,结果往往出人意料', updatedAt: new Date('2017-07-23'), member: '骗你来学计算机', href: '', memberLink: '', }, ]; const getActivities = [ { id: 'trend-1', updatedAt: new Date(), user: { name: '曲丽丽', avatar: avatars2[0], }, group: { name: '高逼格设计天团', link: 'http://github.com/', }, project: { name: '六月迭代', link: 'http://github.com/', }, template: '在 @{group} 新建项目 @{project}', }, { id: 'trend-2', updatedAt: new Date(), user: { name: '付小小', avatar: avatars2[1], }, group: { name: '高逼格设计天团', link: 'http://github.com/', }, project: { name: '六月迭代', link: 'http://github.com/', }, template: '在 @{group} 新建项目 @{project}', }, { id: 'trend-3', updatedAt: new Date(), user: { name: '林东东', avatar: avatars2[2], }, group: { name: '中二少女团', link: 'http://github.com/', }, project: { name: '六月迭代', link: 'http://github.com/', }, template: '在 @{group} 新建项目 @{project}', }, { id: 'trend-4', updatedAt: new Date(), user: { name: '周星星', avatar: avatars2[4], }, project: { name: '5 月日常迭代', link: 'http://github.com/', }, template: '将 @{project} 更新至已发布状态', }, { id: 'trend-5', updatedAt: new Date(), user: { name: '朱偏右', avatar: avatars2[3], }, project: { name: '工程效能', link: 'http://github.com/', }, comment: { name: '留言', link: 'http://github.com/', }, template: '在 @{project} 发布了 @{comment}', }, { id: 'trend-6', updatedAt: new Date(), user: { name: '乐哥', avatar: avatars2[5], }, group: { name: '程序员日常', link: 'http://github.com/', }, project: { name: '品牌迭代', link: 'http://github.com/', }, template: '在 @{group} 新建项目 @{project}', }, ]; function getFakeCaptcha(req, res) { return res.json('captcha-xxx'); } export default { 'GET /api/project/notice': getNotice, 'GET /api/activities': getActivities, 'POST /api/forms': (req, res) => { res.send({ message: 'Ok' }); }, 'GET /api/tags': mockjs.mock({ 'list|100': [{ name: '@city', 'value|1-100': 150, 'type|0-2': 1 }], }), 'GET /api/fake_list': getFakeList, 'POST /api/fake_list': postFakeList, 'GET /api/captcha': getFakeCaptcha, }; ================================================ FILE: mock/blog.js ================================================ const getArticle = (req, res) => res.json([ { id: '000000001', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png', title: '你收到了 14 份新周报', datetime: '2017-08-09', type: 'notification', }, { id: '000000002', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/OKJXDXrmkNshAMvwtvhu.png', title: '你推荐的 曲妮妮 已通过第三轮面试', datetime: '2017-08-08', type: 'notification', }, { id: '000000003', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/kISTdvpyTAhtGxpovNWd.png', title: '这种模板可以区分多种通知类型', datetime: '2017-08-07', read: true, type: 'notification', }, { id: '000000004', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/GvqBnKhFgObvnSGkDsje.png', title: '左侧图标用于区分不同的类型', datetime: '2017-08-07', type: 'notification', }, { id: '000000005', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png', title: '内容不要超过两行字,超出时自动截断', datetime: '2017-08-07', type: 'notification', }, { id: '000000006', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg', title: '曲丽丽 评论了你', description: '描述信息描述信息描述信息', datetime: '2017-08-07', type: 'message', }, { id: '000000007', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg', title: '朱偏右 回复了你', description: '这种模板用于提醒谁与你发生了互动,左侧放『谁』的头像', datetime: '2017-08-07', type: 'message', }, { id: '000000008', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg', title: '标题', description: '这种模板用于提醒谁与你发生了互动,左侧放『谁』的头像', datetime: '2017-08-07', type: 'message', }, { id: '000000009', title: '任务名称', description: '任务需要在 2017-01-12 20:00 前启动', extra: '未开始', status: 'todo', type: 'event', }, { id: '000000010', title: '第三方紧急代码变更', description: '冠霖提交于 2017-01-06,需在 2017-01-07 前完成代码变更任务', extra: '马上到期', status: 'urgent', type: 'event', }, { id: '000000011', title: '信息安全考试', description: '指派竹尔于 2017-01-09 前完成更新并发布', extra: '已耗时 8 天', status: 'doing', type: 'event', }, { id: '000000012', title: 'ABCD 版本发布', description: '冠霖提交于 2017-01-06,需在 2017-01-07 前完成代码变更任务', extra: '进行中', status: 'processing', type: 'event', }, ]); export default { 'GET /api/article': getArticle, }; ================================================ FILE: mock/chart.js ================================================ import moment from 'moment'; // mock data const visitData = []; const beginDay = new Date().getTime(); const fakeY = [7, 5, 4, 2, 4, 7, 5, 6, 5, 9, 6, 3, 1, 5, 3, 6, 5]; for (let i = 0; i < fakeY.length; i += 1) { visitData.push({ x: moment(new Date(beginDay + 1000 * 60 * 60 * 24 * i)).format('YYYY-MM-DD'), y: fakeY[i], }); } const visitData2 = []; const fakeY2 = [1, 6, 4, 8, 3, 7, 2]; for (let i = 0; i < fakeY2.length; i += 1) { visitData2.push({ x: moment(new Date(beginDay + 1000 * 60 * 60 * 24 * i)).format('YYYY-MM-DD'), y: fakeY2[i], }); } const salesData = []; for (let i = 0; i < 12; i += 1) { salesData.push({ x: `${i + 1}月`, y: Math.floor(Math.random() * 1000) + 200, }); } const searchData = []; for (let i = 0; i < 50; i += 1) { searchData.push({ index: i + 1, keyword: `搜索关键词-${i}`, count: Math.floor(Math.random() * 1000), range: Math.floor(Math.random() * 100), status: Math.floor((Math.random() * 10) % 2), }); } const salesTypeData = [ { x: '家用电器', y: 4544, }, { x: '食用酒水', y: 3321, }, { x: '个护健康', y: 3113, }, { x: '服饰箱包', y: 2341, }, { x: '母婴产品', y: 1231, }, { x: '其他', y: 1231, }, ]; const salesTypeDataOnline = [ { x: '家用电器', y: 244, }, { x: '食用酒水', y: 321, }, { x: '个护健康', y: 311, }, { x: '服饰箱包', y: 41, }, { x: '母婴产品', y: 121, }, { x: '其他', y: 111, }, ]; const salesTypeDataOffline = [ { x: '家用电器', y: 99, }, { x: '食用酒水', y: 188, }, { x: '个护健康', y: 344, }, { x: '服饰箱包', y: 255, }, { x: '其他', y: 65, }, ]; const offlineData = []; for (let i = 0; i < 10; i += 1) { offlineData.push({ name: `Stores ${i}`, cvr: Math.ceil(Math.random() * 9) / 10, }); } const offlineChartData = []; for (let i = 0; i < 20; i += 1) { offlineChartData.push({ x: new Date().getTime() + 1000 * 60 * 30 * i, y1: Math.floor(Math.random() * 100) + 10, y2: Math.floor(Math.random() * 100) + 10, }); } const radarOriginData = [ { name: '个人', ref: 10, koubei: 8, output: 4, contribute: 5, hot: 7, }, { name: '团队', ref: 3, koubei: 9, output: 6, contribute: 3, hot: 1, }, { name: '部门', ref: 4, koubei: 1, output: 6, contribute: 5, hot: 7, }, ]; const radarData = []; const radarTitleMap = { ref: '引用', koubei: '口碑', output: '产量', contribute: '贡献', hot: '热度', }; radarOriginData.forEach(item => { Object.keys(item).forEach(key => { if (key !== 'name') { radarData.push({ name: item.name, label: radarTitleMap[key], value: item[key], }); } }); }); const getFakeChartData = { visitData, visitData2, salesData, searchData, offlineData, offlineChartData, salesTypeData, salesTypeDataOnline, salesTypeDataOffline, radarData, }; export default { 'GET /api/fake_chart_data': getFakeChartData, }; ================================================ FILE: mock/geographic/city.json ================================================ { "110000": [ { "province": "北京市", "name": "市辖区", "id": "110100" } ], "120000": [ { "province": "天津市", "name": "市辖区", "id": "120100" } ], "130000": [ { "province": "河北省", "name": "石家庄市", "id": "130100" }, { "province": "河北省", "name": "唐山市", "id": "130200" }, { "province": "河北省", "name": "秦皇岛市", "id": "130300" }, { "province": "河北省", "name": "邯郸市", "id": "130400" }, { "province": "河北省", "name": "邢台市", "id": "130500" }, { "province": "河北省", "name": "保定市", "id": "130600" }, { "province": "河北省", "name": "张家口市", "id": "130700" }, { "province": "河北省", "name": "承德市", "id": "130800" }, { "province": "河北省", "name": "沧州市", "id": "130900" }, { "province": "河北省", "name": "廊坊市", "id": "131000" }, { "province": "河北省", "name": "衡水市", "id": "131100" }, { "province": "河北省", "name": "省直辖县级行政区划", "id": "139000" } ], "140000": [ { "province": "山西省", "name": "太原市", "id": "140100" }, { "province": "山西省", "name": "大同市", "id": "140200" }, { "province": "山西省", "name": "阳泉市", "id": "140300" }, { "province": "山西省", "name": "长治市", "id": "140400" }, { "province": "山西省", "name": "晋城市", "id": "140500" }, { "province": "山西省", "name": "朔州市", "id": "140600" }, { "province": "山西省", "name": "晋中市", "id": "140700" }, { "province": "山西省", "name": "运城市", "id": "140800" }, { "province": "山西省", "name": "忻州市", "id": "140900" }, { "province": "山西省", "name": "临汾市", "id": "141000" }, { "province": "山西省", "name": "吕梁市", "id": "141100" } ], "150000": [ { "province": "内蒙古自治区", "name": "呼和浩特市", "id": "150100" }, { "province": "内蒙古自治区", "name": "包头市", "id": "150200" }, { "province": "内蒙古自治区", "name": "乌海市", "id": "150300" }, { "province": "内蒙古自治区", "name": "赤峰市", "id": "150400" }, { "province": "内蒙古自治区", "name": "通辽市", "id": "150500" }, { "province": "内蒙古自治区", "name": "鄂尔多斯市", "id": "150600" }, { "province": "内蒙古自治区", "name": "呼伦贝尔市", "id": "150700" }, { "province": "内蒙古自治区", "name": "巴彦淖尔市", "id": "150800" }, { "province": "内蒙古自治区", "name": "乌兰察布市", "id": "150900" }, { "province": "内蒙古自治区", "name": "兴安盟", "id": "152200" }, { "province": "内蒙古自治区", "name": "锡林郭勒盟", "id": "152500" }, { "province": "内蒙古自治区", "name": "阿拉善盟", "id": "152900" } ], "210000": [ { "province": "辽宁省", "name": "沈阳市", "id": "210100" }, { "province": "辽宁省", "name": "大连市", "id": "210200" }, { "province": "辽宁省", "name": "鞍山市", "id": "210300" }, { "province": "辽宁省", "name": "抚顺市", "id": "210400" }, { "province": "辽宁省", "name": "本溪市", "id": "210500" }, { "province": "辽宁省", "name": "丹东市", "id": "210600" }, { "province": "辽宁省", "name": "锦州市", "id": "210700" }, { "province": "辽宁省", "name": "营口市", "id": "210800" }, { "province": "辽宁省", "name": "阜新市", "id": "210900" }, { "province": "辽宁省", "name": "辽阳市", "id": "211000" }, { "province": "辽宁省", "name": "盘锦市", "id": "211100" }, { "province": "辽宁省", "name": "铁岭市", "id": "211200" }, { "province": "辽宁省", "name": "朝阳市", "id": "211300" }, { "province": "辽宁省", "name": "葫芦岛市", "id": "211400" } ], "220000": [ { "province": "吉林省", "name": "长春市", "id": "220100" }, { "province": "吉林省", "name": "吉林市", "id": "220200" }, { "province": "吉林省", "name": "四平市", "id": "220300" }, { "province": "吉林省", "name": "辽源市", "id": "220400" }, { "province": "吉林省", "name": "通化市", "id": "220500" }, { "province": "吉林省", "name": "白山市", "id": "220600" }, { "province": "吉林省", "name": "松原市", "id": "220700" }, { "province": "吉林省", "name": "白城市", "id": "220800" }, { "province": "吉林省", "name": "延边朝鲜族自治州", "id": "222400" } ], "230000": [ { "province": "黑龙江省", "name": "哈尔滨市", "id": "230100" }, { "province": "黑龙江省", "name": "齐齐哈尔市", "id": "230200" }, { "province": "黑龙江省", "name": "鸡西市", "id": "230300" }, { "province": "黑龙江省", "name": "鹤岗市", "id": "230400" }, { "province": "黑龙江省", "name": "双鸭山市", "id": "230500" }, { "province": "黑龙江省", "name": "大庆市", "id": "230600" }, { "province": "黑龙江省", "name": "伊春市", "id": "230700" }, { "province": "黑龙江省", "name": "佳木斯市", "id": "230800" }, { "province": "黑龙江省", "name": "七台河市", "id": "230900" }, { "province": "黑龙江省", "name": "牡丹江市", "id": "231000" }, { "province": "黑龙江省", "name": "黑河市", "id": "231100" }, { "province": "黑龙江省", "name": "绥化市", "id": "231200" }, { "province": "黑龙江省", "name": "大兴安岭地区", "id": "232700" } ], "310000": [ { "province": "上海市", "name": "市辖区", "id": "310100" } ], "320000": [ { "province": "江苏省", "name": "南京市", "id": "320100" }, { "province": "江苏省", "name": "无锡市", "id": "320200" }, { "province": "江苏省", "name": "徐州市", "id": "320300" }, { "province": "江苏省", "name": "常州市", "id": "320400" }, { "province": "江苏省", "name": "苏州市", "id": "320500" }, { "province": "江苏省", "name": "南通市", "id": "320600" }, { "province": "江苏省", "name": "连云港市", "id": "320700" }, { "province": "江苏省", "name": "淮安市", "id": "320800" }, { "province": "江苏省", "name": "盐城市", "id": "320900" }, { "province": "江苏省", "name": "扬州市", "id": "321000" }, { "province": "江苏省", "name": "镇江市", "id": "321100" }, { "province": "江苏省", "name": "泰州市", "id": "321200" }, { "province": "江苏省", "name": "宿迁市", "id": "321300" } ], "330000": [ { "province": "浙江省", "name": "杭州市", "id": "330100" }, { "province": "浙江省", "name": "宁波市", "id": "330200" }, { "province": "浙江省", "name": "温州市", "id": "330300" }, { "province": "浙江省", "name": "嘉兴市", "id": "330400" }, { "province": "浙江省", "name": "湖州市", "id": "330500" }, { "province": "浙江省", "name": "绍兴市", "id": "330600" }, { "province": "浙江省", "name": "金华市", "id": "330700" }, { "province": "浙江省", "name": "衢州市", "id": "330800" }, { "province": "浙江省", "name": "舟山市", "id": "330900" }, { "province": "浙江省", "name": "台州市", "id": "331000" }, { "province": "浙江省", "name": "丽水市", "id": "331100" } ], "340000": [ { "province": "安徽省", "name": "合肥市", "id": "340100" }, { "province": "安徽省", "name": "芜湖市", "id": "340200" }, { "province": "安徽省", "name": "蚌埠市", "id": "340300" }, { "province": "安徽省", "name": "淮南市", "id": "340400" }, { "province": "安徽省", "name": "马鞍山市", "id": "340500" }, { "province": "安徽省", "name": "淮北市", "id": "340600" }, { "province": "安徽省", "name": "铜陵市", "id": "340700" }, { "province": "安徽省", "name": "安庆市", "id": "340800" }, { "province": "安徽省", "name": "黄山市", "id": "341000" }, { "province": "安徽省", "name": "滁州市", "id": "341100" }, { "province": "安徽省", "name": "阜阳市", "id": "341200" }, { "province": "安徽省", "name": "宿州市", "id": "341300" }, { "province": "安徽省", "name": "六安市", "id": "341500" }, { "province": "安徽省", "name": "亳州市", "id": "341600" }, { "province": "安徽省", "name": "池州市", "id": "341700" }, { "province": "安徽省", "name": "宣城市", "id": "341800" } ], "350000": [ { "province": "福建省", "name": "福州市", "id": "350100" }, { "province": "福建省", "name": "厦门市", "id": "350200" }, { "province": "福建省", "name": "莆田市", "id": "350300" }, { "province": "福建省", "name": "三明市", "id": "350400" }, { "province": "福建省", "name": "泉州市", "id": "350500" }, { "province": "福建省", "name": "漳州市", "id": "350600" }, { "province": "福建省", "name": "南平市", "id": "350700" }, { "province": "福建省", "name": "龙岩市", "id": "350800" }, { "province": "福建省", "name": "宁德市", "id": "350900" } ], "360000": [ { "province": "江西省", "name": "南昌市", "id": "360100" }, { "province": "江西省", "name": "景德镇市", "id": "360200" }, { "province": "江西省", "name": "萍乡市", "id": "360300" }, { "province": "江西省", "name": "九江市", "id": "360400" }, { "province": "江西省", "name": "新余市", "id": "360500" }, { "province": "江西省", "name": "鹰潭市", "id": "360600" }, { "province": "江西省", "name": "赣州市", "id": "360700" }, { "province": "江西省", "name": "吉安市", "id": "360800" }, { "province": "江西省", "name": "宜春市", "id": "360900" }, { "province": "江西省", "name": "抚州市", "id": "361000" }, { "province": "江西省", "name": "上饶市", "id": "361100" } ], "370000": [ { "province": "山东省", "name": "济南市", "id": "370100" }, { "province": "山东省", "name": "青岛市", "id": "370200" }, { "province": "山东省", "name": "淄博市", "id": "370300" }, { "province": "山东省", "name": "枣庄市", "id": "370400" }, { "province": "山东省", "name": "东营市", "id": "370500" }, { "province": "山东省", "name": "烟台市", "id": "370600" }, { "province": "山东省", "name": "潍坊市", "id": "370700" }, { "province": "山东省", "name": "济宁市", "id": "370800" }, { "province": "山东省", "name": "泰安市", "id": "370900" }, { "province": "山东省", "name": "威海市", "id": "371000" }, { "province": "山东省", "name": "日照市", "id": "371100" }, { "province": "山东省", "name": "莱芜市", "id": "371200" }, { "province": "山东省", "name": "临沂市", "id": "371300" }, { "province": "山东省", "name": "德州市", "id": "371400" }, { "province": "山东省", "name": "聊城市", "id": "371500" }, { "province": "山东省", "name": "滨州市", "id": "371600" }, { "province": "山东省", "name": "菏泽市", "id": "371700" } ], "410000": [ { "province": "河南省", "name": "郑州市", "id": "410100" }, { "province": "河南省", "name": "开封市", "id": "410200" }, { "province": "河南省", "name": "洛阳市", "id": "410300" }, { "province": "河南省", "name": "平顶山市", "id": "410400" }, { "province": "河南省", "name": "安阳市", "id": "410500" }, { "province": "河南省", "name": "鹤壁市", "id": "410600" }, { "province": "河南省", "name": "新乡市", "id": "410700" }, { "province": "河南省", "name": "焦作市", "id": "410800" }, { "province": "河南省", "name": "濮阳市", "id": "410900" }, { "province": "河南省", "name": "许昌市", "id": "411000" }, { "province": "河南省", "name": "漯河市", "id": "411100" }, { "province": "河南省", "name": "三门峡市", "id": "411200" }, { "province": "河南省", "name": "南阳市", "id": "411300" }, { "province": "河南省", "name": "商丘市", "id": "411400" }, { "province": "河南省", "name": "信阳市", "id": "411500" }, { "province": "河南省", "name": "周口市", "id": "411600" }, { "province": "河南省", "name": "驻马店市", "id": "411700" }, { "province": "河南省", "name": "省直辖县级行政区划", "id": "419000" } ], "420000": [ { "province": "湖北省", "name": "武汉市", "id": "420100" }, { "province": "湖北省", "name": "黄石市", "id": "420200" }, { "province": "湖北省", "name": "十堰市", "id": "420300" }, { "province": "湖北省", "name": "宜昌市", "id": "420500" }, { "province": "湖北省", "name": "襄阳市", "id": "420600" }, { "province": "湖北省", "name": "鄂州市", "id": "420700" }, { "province": "湖北省", "name": "荆门市", "id": "420800" }, { "province": "湖北省", "name": "孝感市", "id": "420900" }, { "province": "湖北省", "name": "荆州市", "id": "421000" }, { "province": "湖北省", "name": "黄冈市", "id": "421100" }, { "province": "湖北省", "name": "咸宁市", "id": "421200" }, { "province": "湖北省", "name": "随州市", "id": "421300" }, { "province": "湖北省", "name": "恩施土家族苗族自治州", "id": "422800" }, { "province": "湖北省", "name": "省直辖县级行政区划", "id": "429000" } ], "430000": [ { "province": "湖南省", "name": "长沙市", "id": "430100" }, { "province": "湖南省", "name": "株洲市", "id": "430200" }, { "province": "湖南省", "name": "湘潭市", "id": "430300" }, { "province": "湖南省", "name": "衡阳市", "id": "430400" }, { "province": "湖南省", "name": "邵阳市", "id": "430500" }, { "province": "湖南省", "name": "岳阳市", "id": "430600" }, { "province": "湖南省", "name": "常德市", "id": "430700" }, { "province": "湖南省", "name": "张家界市", "id": "430800" }, { "province": "湖南省", "name": "益阳市", "id": "430900" }, { "province": "湖南省", "name": "郴州市", "id": "431000" }, { "province": "湖南省", "name": "永州市", "id": "431100" }, { "province": "湖南省", "name": "怀化市", "id": "431200" }, { "province": "湖南省", "name": "娄底市", "id": "431300" }, { "province": "湖南省", "name": "湘西土家族苗族自治州", "id": "433100" } ], "440000": [ { "province": "广东省", "name": "广州市", "id": "440100" }, { "province": "广东省", "name": "韶关市", "id": "440200" }, { "province": "广东省", "name": "深圳市", "id": "440300" }, { "province": "广东省", "name": "珠海市", "id": "440400" }, { "province": "广东省", "name": "汕头市", "id": "440500" }, { "province": "广东省", "name": "佛山市", "id": "440600" }, { "province": "广东省", "name": "江门市", "id": "440700" }, { "province": "广东省", "name": "湛江市", "id": "440800" }, { "province": "广东省", "name": "茂名市", "id": "440900" }, { "province": "广东省", "name": "肇庆市", "id": "441200" }, { "province": "广东省", "name": "惠州市", "id": "441300" }, { "province": "广东省", "name": "梅州市", "id": "441400" }, { "province": "广东省", "name": "汕尾市", "id": "441500" }, { "province": "广东省", "name": "河源市", "id": "441600" }, { "province": "广东省", "name": "阳江市", "id": "441700" }, { "province": "广东省", "name": "清远市", "id": "441800" }, { "province": "广东省", "name": "东莞市", "id": "441900" }, { "province": "广东省", "name": "中山市", "id": "442000" }, { "province": "广东省", "name": "潮州市", "id": "445100" }, { "province": "广东省", "name": "揭阳市", "id": "445200" }, { "province": "广东省", "name": "云浮市", "id": "445300" } ], "450000": [ { "province": "广西壮族自治区", "name": "南宁市", "id": "450100" }, { "province": "广西壮族自治区", "name": "柳州市", "id": "450200" }, { "province": "广西壮族自治区", "name": "桂林市", "id": "450300" }, { "province": "广西壮族自治区", "name": "梧州市", "id": "450400" }, { "province": "广西壮族自治区", "name": "北海市", "id": "450500" }, { "province": "广西壮族自治区", "name": "防城港市", "id": "450600" }, { "province": "广西壮族自治区", "name": "钦州市", "id": "450700" }, { "province": "广西壮族自治区", "name": "贵港市", "id": "450800" }, { "province": "广西壮族自治区", "name": "玉林市", "id": "450900" }, { "province": "广西壮族自治区", "name": "百色市", "id": "451000" }, { "province": "广西壮族自治区", "name": "贺州市", "id": "451100" }, { "province": "广西壮族自治区", "name": "河池市", "id": "451200" }, { "province": "广西壮族自治区", "name": "来宾市", "id": "451300" }, { "province": "广西壮族自治区", "name": "崇左市", "id": "451400" } ], "460000": [ { "province": "海南省", "name": "海口市", "id": "460100" }, { "province": "海南省", "name": "三亚市", "id": "460200" }, { "province": "海南省", "name": "三沙市", "id": "460300" }, { "province": "海南省", "name": "儋州市", "id": "460400" }, { "province": "海南省", "name": "省直辖县级行政区划", "id": "469000" } ], "500000": [ { "province": "重庆市", "name": "市辖区", "id": "500100" }, { "province": "重庆市", "name": "县", "id": "500200" } ], "510000": [ { "province": "四川省", "name": "成都市", "id": "510100" }, { "province": "四川省", "name": "自贡市", "id": "510300" }, { "province": "四川省", "name": "攀枝花市", "id": "510400" }, { "province": "四川省", "name": "泸州市", "id": "510500" }, { "province": "四川省", "name": "德阳市", "id": "510600" }, { "province": "四川省", "name": "绵阳市", "id": "510700" }, { "province": "四川省", "name": "广元市", "id": "510800" }, { "province": "四川省", "name": "遂宁市", "id": "510900" }, { "province": "四川省", "name": "内江市", "id": "511000" }, { "province": "四川省", "name": "乐山市", "id": "511100" }, { "province": "四川省", "name": "南充市", "id": "511300" }, { "province": "四川省", "name": "眉山市", "id": "511400" }, { "province": "四川省", "name": "宜宾市", "id": "511500" }, { "province": "四川省", "name": "广安市", "id": "511600" }, { "province": "四川省", "name": "达州市", "id": "511700" }, { "province": "四川省", "name": "雅安市", "id": "511800" }, { "province": "四川省", "name": "巴中市", "id": "511900" }, { "province": "四川省", "name": "资阳市", "id": "512000" }, { "province": "四川省", "name": "阿坝藏族羌族自治州", "id": "513200" }, { "province": "四川省", "name": "甘孜藏族自治州", "id": "513300" }, { "province": "四川省", "name": "凉山彝族自治州", "id": "513400" } ], "520000": [ { "province": "贵州省", "name": "贵阳市", "id": "520100" }, { "province": "贵州省", "name": "六盘水市", "id": "520200" }, { "province": "贵州省", "name": "遵义市", "id": "520300" }, { "province": "贵州省", "name": "安顺市", "id": "520400" }, { "province": "贵州省", "name": "毕节市", "id": "520500" }, { "province": "贵州省", "name": "铜仁市", "id": "520600" }, { "province": "贵州省", "name": "黔西南布依族苗族自治州", "id": "522300" }, { "province": "贵州省", "name": "黔东南苗族侗族自治州", "id": "522600" }, { "province": "贵州省", "name": "黔南布依族苗族自治州", "id": "522700" } ], "530000": [ { "province": "云南省", "name": "昆明市", "id": "530100" }, { "province": "云南省", "name": "曲靖市", "id": "530300" }, { "province": "云南省", "name": "玉溪市", "id": "530400" }, { "province": "云南省", "name": "保山市", "id": "530500" }, { "province": "云南省", "name": "昭通市", "id": "530600" }, { "province": "云南省", "name": "丽江市", "id": "530700" }, { "province": "云南省", "name": "普洱市", "id": "530800" }, { "province": "云南省", "name": "临沧市", "id": "530900" }, { "province": "云南省", "name": "楚雄彝族自治州", "id": "532300" }, { "province": "云南省", "name": "红河哈尼族彝族自治州", "id": "532500" }, { "province": "云南省", "name": "文山壮族苗族自治州", "id": "532600" }, { "province": "云南省", "name": "西双版纳傣族自治州", "id": "532800" }, { "province": "云南省", "name": "大理白族自治州", "id": "532900" }, { "province": "云南省", "name": "德宏傣族景颇族自治州", "id": "533100" }, { "province": "云南省", "name": "怒江傈僳族自治州", "id": "533300" }, { "province": "云南省", "name": "迪庆藏族自治州", "id": "533400" } ], "540000": [ { "province": "西藏自治区", "name": "拉萨市", "id": "540100" }, { "province": "西藏自治区", "name": "日喀则市", "id": "540200" }, { "province": "西藏自治区", "name": "昌都市", "id": "540300" }, { "province": "西藏自治区", "name": "林芝市", "id": "540400" }, { "province": "西藏自治区", "name": "山南市", "id": "540500" }, { "province": "西藏自治区", "name": "那曲地区", "id": "542400" }, { "province": "西藏自治区", "name": "阿里地区", "id": "542500" } ], "610000": [ { "province": "陕西省", "name": "西安市", "id": "610100" }, { "province": "陕西省", "name": "铜川市", "id": "610200" }, { "province": "陕西省", "name": "宝鸡市", "id": "610300" }, { "province": "陕西省", "name": "咸阳市", "id": "610400" }, { "province": "陕西省", "name": "渭南市", "id": "610500" }, { "province": "陕西省", "name": "延安市", "id": "610600" }, { "province": "陕西省", "name": "汉中市", "id": "610700" }, { "province": "陕西省", "name": "榆林市", "id": "610800" }, { "province": "陕西省", "name": "安康市", "id": "610900" }, { "province": "陕西省", "name": "商洛市", "id": "611000" } ], "620000": [ { "province": "甘肃省", "name": "兰州市", "id": "620100" }, { "province": "甘肃省", "name": "嘉峪关市", "id": "620200" }, { "province": "甘肃省", "name": "金昌市", "id": "620300" }, { "province": "甘肃省", "name": "白银市", "id": "620400" }, { "province": "甘肃省", "name": "天水市", "id": "620500" }, { "province": "甘肃省", "name": "武威市", "id": "620600" }, { "province": "甘肃省", "name": "张掖市", "id": "620700" }, { "province": "甘肃省", "name": "平凉市", "id": "620800" }, { "province": "甘肃省", "name": "酒泉市", "id": "620900" }, { "province": "甘肃省", "name": "庆阳市", "id": "621000" }, { "province": "甘肃省", "name": "定西市", "id": "621100" }, { "province": "甘肃省", "name": "陇南市", "id": "621200" }, { "province": "甘肃省", "name": "临夏回族自治州", "id": "622900" }, { "province": "甘肃省", "name": "甘南藏族自治州", "id": "623000" } ], "630000": [ { "province": "青海省", "name": "西宁市", "id": "630100" }, { "province": "青海省", "name": "海东市", "id": "630200" }, { "province": "青海省", "name": "海北藏族自治州", "id": "632200" }, { "province": "青海省", "name": "黄南藏族自治州", "id": "632300" }, { "province": "青海省", "name": "海南藏族自治州", "id": "632500" }, { "province": "青海省", "name": "果洛藏族自治州", "id": "632600" }, { "province": "青海省", "name": "玉树藏族自治州", "id": "632700" }, { "province": "青海省", "name": "海西蒙古族藏族自治州", "id": "632800" } ], "640000": [ { "province": "宁夏回族自治区", "name": "银川市", "id": "640100" }, { "province": "宁夏回族自治区", "name": "石嘴山市", "id": "640200" }, { "province": "宁夏回族自治区", "name": "吴忠市", "id": "640300" }, { "province": "宁夏回族自治区", "name": "固原市", "id": "640400" }, { "province": "宁夏回族自治区", "name": "中卫市", "id": "640500" } ], "650000": [ { "province": "新疆维吾尔自治区", "name": "乌鲁木齐市", "id": "650100" }, { "province": "新疆维吾尔自治区", "name": "克拉玛依市", "id": "650200" }, { "province": "新疆维吾尔自治区", "name": "吐鲁番市", "id": "650400" }, { "province": "新疆维吾尔自治区", "name": "哈密市", "id": "650500" }, { "province": "新疆维吾尔自治区", "name": "昌吉回族自治州", "id": "652300" }, { "province": "新疆维吾尔自治区", "name": "博尔塔拉蒙古自治州", "id": "652700" }, { "province": "新疆维吾尔自治区", "name": "巴音郭楞蒙古自治州", "id": "652800" }, { "province": "新疆维吾尔自治区", "name": "阿克苏地区", "id": "652900" }, { "province": "新疆维吾尔自治区", "name": "克孜勒苏柯尔克孜自治州", "id": "653000" }, { "province": "新疆维吾尔自治区", "name": "喀什地区", "id": "653100" }, { "province": "新疆维吾尔自治区", "name": "和田地区", "id": "653200" }, { "province": "新疆维吾尔自治区", "name": "伊犁哈萨克自治州", "id": "654000" }, { "province": "新疆维吾尔自治区", "name": "塔城地区", "id": "654200" }, { "province": "新疆维吾尔自治区", "name": "阿勒泰地区", "id": "654300" }, { "province": "新疆维吾尔自治区", "name": "自治区直辖县级行政区划", "id": "659000" } ] } ================================================ FILE: mock/geographic/province.json ================================================ [ { "name": "北京市", "id": "110000" }, { "name": "天津市", "id": "120000" }, { "name": "河北省", "id": "130000" }, { "name": "山西省", "id": "140000" }, { "name": "内蒙古自治区", "id": "150000" }, { "name": "辽宁省", "id": "210000" }, { "name": "吉林省", "id": "220000" }, { "name": "黑龙江省", "id": "230000" }, { "name": "上海市", "id": "310000" }, { "name": "江苏省", "id": "320000" }, { "name": "浙江省", "id": "330000" }, { "name": "安徽省", "id": "340000" }, { "name": "福建省", "id": "350000" }, { "name": "江西省", "id": "360000" }, { "name": "山东省", "id": "370000" }, { "name": "河南省", "id": "410000" }, { "name": "湖北省", "id": "420000" }, { "name": "湖南省", "id": "430000" }, { "name": "广东省", "id": "440000" }, { "name": "广西壮族自治区", "id": "450000" }, { "name": "海南省", "id": "460000" }, { "name": "重庆市", "id": "500000" }, { "name": "四川省", "id": "510000" }, { "name": "贵州省", "id": "520000" }, { "name": "云南省", "id": "530000" }, { "name": "西藏自治区", "id": "540000" }, { "name": "陕西省", "id": "610000" }, { "name": "甘肃省", "id": "620000" }, { "name": "青海省", "id": "630000" }, { "name": "宁夏回族自治区", "id": "640000" }, { "name": "新疆维吾尔自治区", "id": "650000" }, { "name": "台湾省", "id": "710000" }, { "name": "香港特别行政区", "id": "810000" }, { "name": "澳门特别行政区", "id": "820000" } ] ================================================ FILE: mock/geographic.js ================================================ import city from './geographic/city.json'; import province from './geographic/province.json'; function getProvince(req, res) { return res.json(province); } function getCity(req, res) { return res.json(city[req.params.province]); } export default { 'GET /api/geographic/province': getProvince, 'GET /api/geographic/city/:province': getCity, }; ================================================ FILE: mock/notices.js ================================================ const getNotices = (req, res) => res.json([ { id: '000000001', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png', title: '你收到了 14 份新周报', datetime: '2017-08-09', type: 'notification', }, { id: '000000002', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/OKJXDXrmkNshAMvwtvhu.png', title: '你推荐的 曲妮妮 已通过第三轮面试', datetime: '2017-08-08', type: 'notification', }, { id: '000000003', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/kISTdvpyTAhtGxpovNWd.png', title: '这种模板可以区分多种通知类型', datetime: '2017-08-07', read: true, type: 'notification', }, { id: '000000004', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/GvqBnKhFgObvnSGkDsje.png', title: '左侧图标用于区分不同的类型', datetime: '2017-08-07', type: 'notification', }, { id: '000000005', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png', title: '内容不要超过两行字,超出时自动截断', datetime: '2017-08-07', type: 'notification', }, { id: '000000006', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg', title: '曲丽丽 评论了你', description: '描述信息描述信息描述信息', datetime: '2017-08-07', type: 'message', }, { id: '000000007', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg', title: '朱偏右 回复了你', description: '这种模板用于提醒谁与你发生了互动,左侧放『谁』的头像', datetime: '2017-08-07', type: 'message', }, { id: '000000008', avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg', title: '标题', description: '这种模板用于提醒谁与你发生了互动,左侧放『谁』的头像', datetime: '2017-08-07', type: 'message', }, { id: '000000009', title: '任务名称', description: '任务需要在 2017-01-12 20:00 前启动', extra: '未开始', status: 'todo', type: 'event', }, { id: '000000010', title: '第三方紧急代码变更', description: '冠霖提交于 2017-01-06,需在 2017-01-07 前完成代码变更任务', extra: '马上到期', status: 'urgent', type: 'event', }, { id: '000000011', title: '信息安全考试', description: '指派竹尔于 2017-01-09 前完成更新并发布', extra: '已耗时 8 天', status: 'doing', type: 'event', }, { id: '000000012', title: 'ABCD 版本发布', description: '冠霖提交于 2017-01-06,需在 2017-01-07 前完成代码变更任务', extra: '进行中', status: 'processing', type: 'event', }, ]); export default { 'GET /api/notices': getNotices, }; ================================================ FILE: mock/profile.js ================================================ const basicGoods = [ { id: '1234561', name: '矿泉水 550ml', barcode: '12421432143214321', price: '2.00', num: '1', amount: '2.00', }, { id: '1234562', name: '凉茶 300ml', barcode: '12421432143214322', price: '3.00', num: '2', amount: '6.00', }, { id: '1234563', name: '好吃的薯片', barcode: '12421432143214323', price: '7.00', num: '4', amount: '28.00', }, { id: '1234564', name: '特别好吃的蛋卷', barcode: '12421432143214324', price: '8.50', num: '3', amount: '25.50', }, ]; const basicProgress = [ { key: '1', time: '2017-10-01 14:10', rate: '联系客户', status: 'processing', operator: '取货员 ID1234', cost: '5mins', }, { key: '2', time: '2017-10-01 14:05', rate: '取货员出发', status: 'success', operator: '取货员 ID1234', cost: '1h', }, { key: '3', time: '2017-10-01 13:05', rate: '取货员接单', status: 'success', operator: '取货员 ID1234', cost: '5mins', }, { key: '4', time: '2017-10-01 13:00', rate: '申请审批通过', status: 'success', operator: '系统', cost: '1h', }, { key: '5', time: '2017-10-01 12:00', rate: '发起退货申请', status: 'success', operator: '用户', cost: '5mins', }, ]; const advancedOperation1 = [ { key: 'op1', type: '订购关系生效', name: '曲丽丽', status: 'agree', updatedAt: '2017-10-03 19:23:12', memo: '-', }, { key: 'op2', type: '财务复审', name: '付小小', status: 'reject', updatedAt: '2017-10-03 19:23:12', memo: '不通过原因', }, { key: 'op3', type: '部门初审', name: '周毛毛', status: 'agree', updatedAt: '2017-10-03 19:23:12', memo: '-', }, { key: 'op4', type: '提交订单', name: '林东东', status: 'agree', updatedAt: '2017-10-03 19:23:12', memo: '很棒', }, { key: 'op5', type: '创建订单', name: '汗牙牙', status: 'agree', updatedAt: '2017-10-03 19:23:12', memo: '-', }, ]; const advancedOperation2 = [ { key: 'op1', type: '订购关系生效', name: '曲丽丽', status: 'agree', updatedAt: '2017-10-03 19:23:12', memo: '-', }, ]; const advancedOperation3 = [ { key: 'op1', type: '创建订单', name: '汗牙牙', status: 'agree', updatedAt: '2017-10-03 19:23:12', memo: '-', }, ]; const getProfileBasicData = { basicGoods, basicProgress, }; const getProfileAdvancedData = { advancedOperation1, advancedOperation2, advancedOperation3, }; export default { 'GET /api/profile/advanced': getProfileAdvancedData, 'GET /api/profile/basic': getProfileBasicData, }; ================================================ FILE: mock/rule.js ================================================ import { parse } from 'url'; // mock tableListDataSource let tableListDataSource = []; for (let i = 0; i < 46; i += 1) { tableListDataSource.push({ key: i, disabled: i % 6 === 0, href: 'https://ant.design', avatar: [ 'https://gw.alipayobjects.com/zos/rmsportal/eeHMaZBwmTvLdIwMfBpg.png', 'https://gw.alipayobjects.com/zos/rmsportal/udxAbMEhpwthVVcjLXik.png', ][i % 2], name: `TradeCode ${i}`, title: `一个任务名称 ${i}`, owner: '曲丽丽', desc: '这是一段描述', callNo: Math.floor(Math.random() * 1000), status: Math.floor(Math.random() * 10) % 4, updatedAt: new Date(`2017-07-${Math.floor(i / 2) + 1}`), createdAt: new Date(`2017-07-${Math.floor(i / 2) + 1}`), progress: Math.ceil(Math.random() * 100), }); } function getRule(req, res, u) { let url = u; if (!url || Object.prototype.toString.call(url) !== '[object String]') { url = req.url; // eslint-disable-line } const params = parse(url, true).query; let dataSource = tableListDataSource; if (params.sorter) { const s = params.sorter.split('_'); dataSource = dataSource.sort((prev, next) => { if (s[1] === 'descend') { return next[s[0]] - prev[s[0]]; } return prev[s[0]] - next[s[0]]; }); } if (params.status) { const status = params.status.split(','); let filterDataSource = []; status.forEach(s => { filterDataSource = filterDataSource.concat( dataSource.filter(data => parseInt(data.status, 10) === parseInt(s[0], 10)) ); }); dataSource = filterDataSource; } if (params.name) { dataSource = dataSource.filter(data => data.name.indexOf(params.name) > -1); } let pageSize = 10; if (params.pageSize) { pageSize = params.pageSize * 1; } const result = { list: dataSource, pagination: { total: dataSource.length, pageSize, current: parseInt(params.currentPage, 10) || 1, }, }; return res.json(result); } function postRule(req, res, u, b) { let url = u; if (!url || Object.prototype.toString.call(url) !== '[object String]') { url = req.url; // eslint-disable-line } const body = (b && b.body) || req.body; const { method, name, desc, key } = body; switch (method) { /* eslint no-case-declarations:0 */ case 'delete': tableListDataSource = tableListDataSource.filter(item => key.indexOf(item.key) === -1); break; case 'post': const i = Math.ceil(Math.random() * 10000); tableListDataSource.unshift({ key: i, href: 'https://ant.design', avatar: [ 'https://gw.alipayobjects.com/zos/rmsportal/eeHMaZBwmTvLdIwMfBpg.png', 'https://gw.alipayobjects.com/zos/rmsportal/udxAbMEhpwthVVcjLXik.png', ][i % 2], name: `TradeCode ${i}`, title: `一个任务名称 ${i}`, owner: '曲丽丽', desc, callNo: Math.floor(Math.random() * 1000), status: Math.floor(Math.random() * 10) % 2, updatedAt: new Date(), createdAt: new Date(), progress: Math.ceil(Math.random() * 100), }); break; case 'update': tableListDataSource = tableListDataSource.map(item => { if (item.key === key) { Object.assign(item, { desc, name }); return item; } return item; }); break; default: break; } const result = { list: tableListDataSource, pagination: { total: tableListDataSource.length, }, }; return res.json(result); } export default { 'GET /api/rule': getRule, 'POST /api/rule': postRule, }; ================================================ FILE: mock/user.js ================================================ // 代码中会兼容本地 service mock 以及部署站点的静态数据 export default { // 支持值为 Object 和 Array 'GET /api/currentUser': { name: 'BiaoChenXuying', // avatar: 'https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png', avatar: 'http://p61te2jup.bkt.clouddn.com/WechatIMG8.jpeg', userid: '00000001', email: 'antdesign@alipay.com', signature: '海纳百川,有容乃大', title: '交互专家', group: 'BiaoChenXuying', tags: [ { key: '0', label: '很有想法的', }, { key: '1', label: '专注设计', }, { key: '2', label: '辣~', }, { key: '3', label: '大长腿', }, { key: '4', label: '川妹子', }, { key: '5', label: '海纳百川', }, ], notifyCount: 12, country: 'China', geographic: { province: { label: '浙江省', key: '330000', }, city: { label: '杭州市', key: '330100', }, }, address: '西湖区工专路 77 号', phone: '0752-268888888', }, // GET POST 可省略 'GET /api/users': [ { key: '1', name: 'John Brown', age: 32, address: 'New York No. 1 Lake Park', }, { key: '2', name: 'Jim Green', age: 42, address: 'London No. 1 Lake Park', }, { key: '3', name: 'Joe Black', age: 32, address: 'Sidney No. 1 Lake Park', }, ], 'POST /api/login/account': (req, res) => { const { password, userName, type } = req.body; if (password === '888888' && userName === 'admin') { res.send({ status: 'ok', type, currentAuthority: 'admin', }); return; } if (password === '123456' && userName === 'user') { res.send({ status: 'ok', type, currentAuthority: 'user', }); return; } res.send({ status: 'error', type, currentAuthority: 'guest', }); }, 'POST /api/register': (req, res) => { res.send({ status: 'ok', currentAuthority: 'user' }); }, 'GET /api/500': (req, res) => { res.status(500).send({ timestamp: 1513932555104, status: 500, error: 'error', message: 'error', path: '/base/category/list', }); }, 'GET /api/404': (req, res) => { res.status(404).send({ timestamp: 1513932643431, status: 404, error: 'Not Found', message: 'No message available', path: '/base/category/list/2121212', }); }, 'GET /api/403': (req, res) => { res.status(403).send({ timestamp: 1513932555104, status: 403, error: 'Unauthorized', message: 'Unauthorized', path: '/base/category/list', }); }, 'GET /api/401': (req, res) => { res.status(401).send({ timestamp: 1513932555104, status: 401, error: 'Unauthorized', message: 'Unauthorized', path: '/base/category/list', }); }, }; ================================================ FILE: package.json ================================================ { "name": "ant-design-pro", "version": "2.0.0", "description": "An out-of-box UI solution for enterprise applications", "private": true, "scripts": { "precommit": "npm run lint-staged", "presite": "node ./scripts/generateMock.js && cd functions && npm install", "start": "cross-env APP_TYPE=site umi dev", "start:no-mock": "cross-env MOCK=none umi dev", "build": "umi build", "site": "npm run presite && cross-env APP_TYPE=site npm run build && firebase deploy", "analyze": "cross-env ANALYZE=1 umi build", "lint:style": "stylelint \"src/**/*.less\" --syntax less", "lint": "eslint --ext .js src mock tests && npm run lint:style", "lint:fix": "eslint --fix --ext .js src mock tests && npm run lint:style", "lint-staged": "lint-staged", "lint-staged:js": "eslint --ext .js", "test": "umi test", "test:component": "umi test ./src/components", "test:all": "node ./tests/run-tests.js", "prettier": "prettier --write ./src/**/**/**/*", "docker:dev": "docker-compose -f ./docker/docker-compose.dev.yml up", "docker:build": "docker-compose -f ./docker/docker-compose.dev.yml build", "docker-prod:dev": "docker-compose -f ./docker/docker-compose.yml up", "docker-prod:build": "docker-compose -f ./docker/docker-compose.yml build" }, "dependencies": { "@antv/data-set": "^0.9.6", "@babel/runtime": "^7.0.0", "antd": "^3.11.6", "bizcharts": "^3.2.2", "bizcharts-plugin-slider": "^2.0.3", "classnames": "^2.2.6", "dva": "^2.4.0", "enquire-js": "^0.2.1", "hash.js": "^1.1.5", "highlight.js": "^9.13.1", "lodash": "^4.17.10", "lodash-decorators": "^6.0.0", "marked": "^0.5.2", "memoize-one": "^4.0.0", "moment": "^2.22.2", "numeral": "^2.0.6", "nzh": "^1.0.3", "omit.js": "^1.0.0", "path-to-regexp": "^2.4.0", "prop-types": "^15.5.10", "qs": "^6.5.2", "rc-animate": "^2.4.4", "react": "^16.5.1", "react-container-query": "^0.11.0", "react-copy-to-clipboard": "^5.0.1", "react-document-title": "^2.0.3", "react-dom": "^16.5.1", "react-fittext": "^1.0.0", "react-router-dom": "^4.3.1", "save": "^2.3.2", "simplemde": "^1.11.2" }, "devDependencies": { "@types/react": "^16.4.11", "@types/react-dom": "^16.0.6", "antd-pro-merge-less": "^0.0.9", "antd-pro-theme-webpack-plugin": "^1.1.8", "babel-eslint": "^9.0.0", "babel-plugin-transform-decorators-legacy": "^1.3.5", "cross-env": "^5.1.1", "cross-port-killer": "^1.0.1", "enzyme": "^3.4.4", "eslint": "^5.4.0", "eslint-config-airbnb": "^17.0.0", "eslint-config-prettier": "^3.0.1", "eslint-plugin-babel": "^5.1.0", "eslint-plugin-compat": "^2.5.1", "eslint-plugin-import": "^2.8.0", "eslint-plugin-jsx-a11y": "^6.0.3", "eslint-plugin-markdown": "^1.0.0-beta.6", "eslint-plugin-react": "^7.11.1", "gh-pages": "^2.0.0", "husky": "^0.14.3", "lint-staged": "^7.2.0", "merge-umi-mock-data": "^0.0.3", "mockjs": "^1.0.1-beta3", "prettier": "1.14.2", "pro-download": "^1.0.1", "stylelint": "^9.4.0", "stylelint-config-prettier": "^4.0.0", "stylelint-config-standard": "^18.0.0", "umi": "^2.1.1", "umi-plugin-ga": "^1.0.3", "umi-plugin-react": "^1.1.1" }, "optionalDependencies": { "puppeteer": "^1.6.0" }, "lint-staged": { "**/*.{js,jsx,less}": [ "prettier --write", "git add" ], "**/*.{js,jsx}": "npm run lint-staged:js", "**/*.less": "stylelint --syntax less" }, "engines": { "node": ">=8.0.0" }, "browserslist": [ "> 1%", "last 2 versions", "not ie <= 10" ] } ================================================ FILE: scripts/generateMock.js ================================================ const generateMock = require('merge-umi-mock-data'); const path = require('path'); generateMock(path.join(__dirname, '../mock'), path.join(__dirname, '../functions/mock/index.js')); ================================================ FILE: src/components/Authorized/Authorized.js ================================================ import CheckPermissions from './CheckPermissions'; const Authorized = ({ children, authority, noMatch = null }) => { const childrenRender = typeof children === 'undefined' ? null : children; return CheckPermissions(authority, childrenRender, noMatch); }; export default Authorized; ================================================ FILE: src/components/Authorized/AuthorizedRoute.js ================================================ import React from 'react'; import { Route, Redirect } from 'react-router-dom'; import Authorized from './Authorized'; // TODO: umi只会返回render和rest const AuthorizedRoute = ({ component: Component, render, authority, redirectPath, ...rest }) => ( } />} > (Component ? : render(props))} /> ); export default AuthorizedRoute; ================================================ FILE: src/components/Authorized/CheckPermissions.js ================================================ import React from 'react'; import PromiseRender from './PromiseRender'; import { CURRENT } from './renderAuthorize'; function isPromise(obj) { return ( !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function' ); } /** * 通用权限检查方法 * Common check permissions method * @param { 权限判定 Permission judgment type string |array | Promise | Function } authority * @param { 你的权限 Your permission description type:string} currentAuthority * @param { 通过的组件 Passing components } target * @param { 未通过的组件 no pass components } Exception */ const checkPermissions = (authority, currentAuthority, target, Exception) => { // 没有判定权限.默认查看所有 // Retirement authority, return target; if (!authority) { return target; } // 数组处理 if (Array.isArray(authority)) { if (authority.indexOf(currentAuthority) >= 0) { return target; } if (Array.isArray(currentAuthority)) { for (let i = 0; i < currentAuthority.length; i += 1) { const element = currentAuthority[i]; if (authority.indexOf(element) >= 0) { return target; } } } return Exception; } // string 处理 if (typeof authority === 'string') { if (authority === currentAuthority) { return target; } if (Array.isArray(currentAuthority)) { for (let i = 0; i < currentAuthority.length; i += 1) { const element = currentAuthority[i]; if (authority.indexOf(element) >= 0) { return target; } } } return Exception; } // Promise 处理 if (isPromise(authority)) { return ; } // Function 处理 if (typeof authority === 'function') { try { const bool = authority(currentAuthority); // 函数执行后返回值是 Promise if (isPromise(bool)) { return ; } if (bool) { return target; } return Exception; } catch (error) { throw error; } } throw new Error('unsupported parameters'); }; export { checkPermissions }; const check = (authority, target, Exception) => checkPermissions(authority, CURRENT, target, Exception); export default check; ================================================ FILE: src/components/Authorized/CheckPermissions.test.js ================================================ import { checkPermissions } from './CheckPermissions'; const target = 'ok'; const error = 'error'; describe('test CheckPermissions', () => { it('Correct string permission authentication', () => { expect(checkPermissions('user', 'user', target, error)).toEqual('ok'); }); it('Correct string permission authentication', () => { expect(checkPermissions('user', 'NULL', target, error)).toEqual('error'); }); it('authority is undefined , return ok', () => { expect(checkPermissions(null, 'NULL', target, error)).toEqual('ok'); }); it('currentAuthority is undefined , return error', () => { expect(checkPermissions('admin', null, target, error)).toEqual('error'); }); it('Wrong string permission authentication', () => { expect(checkPermissions('admin', 'user', target, error)).toEqual('error'); }); it('Correct Array permission authentication', () => { expect(checkPermissions(['user', 'admin'], 'user', target, error)).toEqual('ok'); }); it('Wrong Array permission authentication,currentAuthority error', () => { expect(checkPermissions(['user', 'admin'], 'user,admin', target, error)).toEqual('error'); }); it('Wrong Array permission authentication', () => { expect(checkPermissions(['user', 'admin'], 'guest', target, error)).toEqual('error'); }); it('Wrong Function permission authentication', () => { expect(checkPermissions(() => false, 'guest', target, error)).toEqual('error'); }); it('Correct Function permission authentication', () => { expect(checkPermissions(() => true, 'guest', target, error)).toEqual('ok'); }); it('authority is string, currentAuthority is array, return ok', () => { expect(checkPermissions('user', ['user'], target, error)).toEqual('ok'); }); it('authority is string, currentAuthority is array, return ok', () => { expect(checkPermissions('user', ['user', 'admin'], target, error)).toEqual('ok'); }); it('authority is array, currentAuthority is array, return ok', () => { expect(checkPermissions(['user', 'admin'], ['user', 'admin'], target, error)).toEqual('ok'); }); it('Wrong Function permission authentication', () => { expect(checkPermissions(() => false, ['user'], target, error)).toEqual('error'); }); it('Correct Function permission authentication', () => { expect(checkPermissions(() => true, ['user'], target, error)).toEqual('ok'); }); it('authority is undefined , return ok', () => { expect(checkPermissions(null, ['user'], target, error)).toEqual('ok'); }); }); ================================================ FILE: src/components/Authorized/PromiseRender.js ================================================ import React from 'react'; import { Spin } from 'antd'; export default class PromiseRender extends React.PureComponent { state = { component: null, }; componentDidMount() { this.setRenderComponent(this.props); } componentDidUpdate(nextProps) { // new Props enter this.setRenderComponent(nextProps); } // set render Component : ok or error setRenderComponent(props) { const ok = this.checkIsInstantiation(props.ok); const error = this.checkIsInstantiation(props.error); props.promise .then(() => { this.setState({ component: ok, }); }) .catch(() => { this.setState({ component: error, }); }); } // Determine whether the incoming component has been instantiated // AuthorizedRoute is already instantiated // Authorized render is already instantiated, children is no instantiated // Secured is not instantiated checkIsInstantiation = target => { if (!React.isValidElement(target)) { return target; } return () => target; }; render() { const { component: Component } = this.state; const { ok, error, promise, ...rest } = this.props; return Component ? ( ) : (
); } } ================================================ FILE: src/components/Authorized/Secured.js ================================================ import React from 'react'; import Exception from '../Exception'; import CheckPermissions from './CheckPermissions'; /** * 默认不能访问任何页面 * default is "NULL" */ const Exception403 = () => ; // Determine whether the incoming component has been instantiated // AuthorizedRoute is already instantiated // Authorized render is already instantiated, children is no instantiated // Secured is not instantiated const checkIsInstantiation = target => { if (!React.isValidElement(target)) { return target; } return () => target; }; /** * 用于判断是否拥有权限访问此view权限 * authority 支持传入 string, function:()=>boolean|Promise * e.g. 'user' 只有user用户能访问 * e.g. 'user,admin' user和 admin 都能访问 * e.g. ()=>boolean 返回true能访问,返回false不能访问 * e.g. Promise then 能访问 catch不能访问 * e.g. authority support incoming string, function: () => boolean | Promise * e.g. 'user' only user user can access * e.g. 'user, admin' user and admin can access * e.g. () => boolean true to be able to visit, return false can not be accessed * e.g. Promise then can not access the visit to catch * @param {string | function | Promise} authority * @param {ReactNode} error 非必需参数 */ const authorize = (authority, error) => { /** * conversion into a class * 防止传入字符串时找不到staticContext造成报错 * String parameters can cause staticContext not found error */ let classError = false; if (error) { classError = () => error; } if (!authority) { throw new Error('authority is required'); } return function decideAuthority(target) { const component = CheckPermissions(authority, target, classError || Exception403); return checkIsInstantiation(component); }; }; export default authorize; ================================================ FILE: src/components/Authorized/demo/AuthorizedArray.md ================================================ --- order: 1 title: zh-CN: 使用数组作为参数 en-US: Use Array as a parameter --- Use Array as a parameter ```jsx import RenderAuthorized from 'ant-design-pro/lib/Authorized'; import { Alert } from 'antd'; const Authorized = RenderAuthorized('user'); const noMatch = ; ReactDOM.render( , mountNode, ); ``` ================================================ FILE: src/components/Authorized/demo/AuthorizedFunction.md ================================================ --- order: 2 title: zh-CN: 使用方法作为参数 en-US: Use function as a parameter --- Use Function as a parameter ```jsx import RenderAuthorized from 'ant-design-pro/lib/Authorized'; import { Alert } from 'antd'; const Authorized = RenderAuthorized('user'); const noMatch = ; const havePermission = () => { return false; }; ReactDOM.render( , mountNode, ); ``` ================================================ FILE: src/components/Authorized/demo/basic.md ================================================ --- order: 0 title: zh-CN: 基本使用 en-US: Basic use --- Basic use ```jsx import RenderAuthorized from 'ant-design-pro/lib/Authorized'; import { Alert } from 'antd'; const Authorized = RenderAuthorized('user'); const noMatch = ; ReactDOM.render(
, mountNode, ); ``` ================================================ FILE: src/components/Authorized/demo/secured.md ================================================ --- order: 3 title: zh-CN: 注解基本使用 en-US: Basic use secured --- secured demo used ```jsx import RenderAuthorized from 'ant-design-pro/lib/Authorized'; import { Alert } from 'antd'; const { Secured } = RenderAuthorized('user'); @Secured('admin') class TestSecuredString extends React.Component { render() { ; } } ReactDOM.render(
, mountNode, ); ``` ================================================ FILE: src/components/Authorized/index.d.ts ================================================ import * as React from 'react'; import { RouteProps } from 'react-router'; type authorityFN = (currentAuthority?: string) => boolean; type authority = string | Array | authorityFN | Promise; export type IReactComponent

= | React.StatelessComponent

| React.ComponentClass

| React.ClassicComponentClass

; interface Secured { (authority: authority, error?: React.ReactNode): (target: T) => T; } export interface AuthorizedRouteProps extends RouteProps { authority: authority; } export class AuthorizedRoute extends React.Component {} interface check { ( authority: authority, target: T, Exception: S ): T | S; } export interface AuthorizedProps { authority: authority; noMatch?: React.ReactNode; } export class Authorized extends React.Component { static Secured: Secured; static AuthorizedRoute: typeof AuthorizedRoute; static check: check; } declare function renderAuthorize(currentAuthority: string): typeof Authorized; export default renderAuthorize; ================================================ FILE: src/components/Authorized/index.js ================================================ import Authorized from './Authorized'; import AuthorizedRoute from './AuthorizedRoute'; import Secured from './Secured'; import check from './CheckPermissions'; import renderAuthorize from './renderAuthorize'; Authorized.Secured = Secured; Authorized.AuthorizedRoute = AuthorizedRoute; Authorized.check = check; export default renderAuthorize(Authorized); ================================================ FILE: src/components/Authorized/index.md ================================================ --- title: en-US: Authorized zh-CN: Authorized subtitle: 权限 cols: 1 order: 15 --- 权限组件,通过比对现有权限与准入权限,决定相关元素的展示。 ## API ### RenderAuthorized `RenderAuthorized: (currentAuthority: string | () => string) => Authorized` 权限组件默认 export RenderAuthorized 函数,它接收当前权限作为参数,返回一个权限对象,该对象提供以下几种使用方式。 ### Authorized 最基础的权限控制。 | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | children | 正常渲染的元素,权限判断通过时展示 | ReactNode | - | | authority | 准入权限/权限判断 | `string | array | Promise | (currentAuthority) => boolean | Promise` | - | | noMatch | 权限异常渲染元素,权限判断不通过时展示 | ReactNode | - | ### Authorized.AuthorizedRoute | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | authority | 准入权限/权限判断 | `string | array | Promise | (currentAuthority) => boolean | Promise` | - | | redirectPath | 权限异常时重定向的页面路由 | string | - | 其余参数与 `Route` 相同。 ### Authorized.Secured 注解方式,`@Authorized.Secured(authority, error)` | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | authority | 准入权限/权限判断 | `string | Promise | (currentAuthority) => boolean | Promise` | - | | error | 权限异常时渲染元素 | ReactNode | | ### Authorized.check 函数形式的 Authorized,用于某些不能被 HOC 包裹的组件。 `Authorized.check(authority, target, Exception)` 注意:传入一个 Promise 时,无论正确还是错误返回的都是一个 ReactClass。 | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | authority | 准入权限/权限判断 | `string | Promise | (currentAuthority) => boolean | Promise` | - | | target | 权限判断通过时渲染的元素 | ReactNode | - | | Exception | 权限异常时渲染元素 | ReactNode | - | ================================================ FILE: src/components/Authorized/renderAuthorize.js ================================================ /* eslint-disable import/no-mutable-exports */ let CURRENT = 'NULL'; /** * use authority or getAuthority * @param {string|()=>String} currentAuthority */ const renderAuthorize = Authorized => currentAuthority => { if (currentAuthority) { if (typeof currentAuthority === 'function') { CURRENT = currentAuthority(); } if ( Object.prototype.toString.call(currentAuthority) === '[object String]' || Array.isArray(currentAuthority) ) { CURRENT = currentAuthority; } } else { CURRENT = 'NULL'; } return Authorized; }; export { CURRENT }; export default Authorized => renderAuthorize(Authorized); ================================================ FILE: src/components/Charts/Bar/index.d.ts ================================================ import * as React from 'react'; export interface IBarProps { title: React.ReactNode; color?: string; padding?: [number, number, number, number]; height: number; data: Array<{ x: string; y: number; }>; autoLabel?: boolean; style?: React.CSSProperties; } export default class Bar extends React.Component {} ================================================ FILE: src/components/Charts/Bar/index.js ================================================ import React, { Component } from 'react'; import { Chart, Axis, Tooltip, Geom } from 'bizcharts'; import Debounce from 'lodash-decorators/debounce'; import Bind from 'lodash-decorators/bind'; import autoHeight from '../autoHeight'; import styles from '../index.less'; @autoHeight() class Bar extends Component { state = { autoHideXLabels: false, }; componentDidMount() { window.addEventListener('resize', this.resize, { passive: true }); } componentWillUnmount() { window.removeEventListener('resize', this.resize); } handleRoot = n => { this.root = n; }; handleRef = n => { this.node = n; }; @Bind() @Debounce(400) resize() { if (!this.node) { return; } const canvasWidth = this.node.parentNode.clientWidth; const { data = [], autoLabel = true } = this.props; if (!autoLabel) { return; } const minWidth = data.length * 30; const { autoHideXLabels } = this.state; if (canvasWidth <= minWidth) { if (!autoHideXLabels) { this.setState({ autoHideXLabels: true, }); } } else if (autoHideXLabels) { this.setState({ autoHideXLabels: false, }); } } render() { const { height, title, forceFit = true, data, color = 'rgba(24, 144, 255, 0.85)', padding, } = this.props; const { autoHideXLabels } = this.state; const scale = { x: { type: 'cat', }, y: { min: 0, }, }; const tooltip = [ 'x*y', (x, y) => ({ name: x, value: y, }), ]; return (

{title &&

{title}

}
); } } export default Bar; ================================================ FILE: src/components/Charts/ChartCard/index.d.ts ================================================ import * as React from 'react'; import { CardProps } from 'antd/lib/card'; export interface IChartCardProps extends CardProps { title: React.ReactNode; action?: React.ReactNode; total?: React.ReactNode | number | (() => React.ReactNode | number); footer?: React.ReactNode; contentHeight?: number; avatar?: React.ReactNode; style?: React.CSSProperties; } export default class ChartCard extends React.Component {} ================================================ FILE: src/components/Charts/ChartCard/index.js ================================================ import React from 'react'; import { Card } from 'antd'; import classNames from 'classnames'; import styles from './index.less'; const renderTotal = total => { let totalDom; switch (typeof total) { case 'undefined': totalDom = null; break; case 'function': totalDom =
{total()}
; break; default: totalDom =
{total}
; } return totalDom; }; class ChartCard extends React.PureComponent { renderConnet = () => { const { contentHeight, title, avatar, action, total, footer, children, loading } = this.props; if (loading) { return false; } return (
{avatar}
{title} {action}
{renderTotal(total)}
{children && (
{children}
)} {footer && (
{footer}
)}
); }; render() { const { loading = false, contentHeight, title, avatar, action, total, footer, children, ...rest } = this.props; return ( {this.renderConnet()} ); } } export default ChartCard; ================================================ FILE: src/components/Charts/ChartCard/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .chartCard { position: relative; .chartTop { position: relative; overflow: hidden; width: 100%; } .chartTopMargin { margin-bottom: 12px; } .chartTopHasMargin { margin-bottom: 20px; } .metaWrap { float: left; } .avatar { position: relative; top: 4px; float: left; margin-right: 20px; img { border-radius: 100%; } } .meta { color: @text-color-secondary; font-size: @font-size-base; line-height: 22px; height: 22px; } .action { cursor: pointer; position: absolute; top: 0; right: 0; } .total { overflow: hidden; text-overflow: ellipsis; word-break: break-all; white-space: nowrap; color: @heading-color; margin-top: 4px; margin-bottom: 0; font-size: 30px; line-height: 38px; height: 38px; } .content { margin-bottom: 12px; position: relative; width: 100%; } .contentFixed { position: absolute; left: 0; bottom: 0; width: 100%; } .footer { border-top: 1px solid @border-color-split; padding-top: 9px; margin-top: 8px; & > * { position: relative; } } .footerMargin { margin-top: 20px; } } ================================================ FILE: src/components/Charts/Field/index.d.ts ================================================ import * as React from 'react'; export interface IFieldProps { label: React.ReactNode; value: React.ReactNode; style?: React.CSSProperties; } export default class Field extends React.Component {} ================================================ FILE: src/components/Charts/Field/index.js ================================================ import React from 'react'; import styles from './index.less'; const Field = ({ label, value, ...rest }) => (
{label} {value}
); export default Field; ================================================ FILE: src/components/Charts/Field/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .field { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; span { font-size: @font-size-base; line-height: 22px; } span:last-child { margin-left: 8px; color: @heading-color; } } ================================================ FILE: src/components/Charts/Gauge/index.d.ts ================================================ import * as React from 'react'; export interface IGaugeProps { title: React.ReactNode; color?: string; height: number; bgColor?: number; percent: number; style?: React.CSSProperties; } export default class Gauge extends React.Component {} ================================================ FILE: src/components/Charts/Gauge/index.js ================================================ import React from 'react'; import { Chart, Geom, Axis, Coord, Guide, Shape } from 'bizcharts'; import autoHeight from '../autoHeight'; const { Arc, Html, Line } = Guide; const defaultFormatter = val => { switch (val) { case '2': return '差'; case '4': return '中'; case '6': return '良'; case '8': return '优'; default: return ''; } }; Shape.registerShape('point', 'pointer', { drawShape(cfg, group) { let point = cfg.points[0]; point = this.parsePoint(point); const center = this.parsePoint({ x: 0, y: 0, }); group.addShape('line', { attrs: { x1: center.x, y1: center.y, x2: point.x, y2: point.y, stroke: cfg.color, lineWidth: 2, lineCap: 'round', }, }); return group.addShape('circle', { attrs: { x: center.x, y: center.y, r: 6, stroke: cfg.color, lineWidth: 3, fill: '#fff', }, }); }, }); @autoHeight() class Gauge extends React.Component { render() { const { title, height, percent, forceFit = true, formatter = defaultFormatter, color = '#2F9CFF', bgColor = '#F0F2F5', } = this.props; const cols = { value: { type: 'linear', min: 0, max: 10, tickCount: 6, nice: true, }, }; const data = [{ value: percent / 10 }]; return ( `

${title}

${data[0].value * 10}%

`} />
); } } export default Gauge; ================================================ FILE: src/components/Charts/MiniArea/index.d.ts ================================================ import * as React from 'react'; // g2已经更新到3.0 // 不带的写了 export interface IAxis { title: any; line: any; gridAlign: any; labels: any; tickLine: any; grid: any; } export interface IMiniAreaProps { color?: string; height: number; borderColor?: string; line?: boolean; animate?: boolean; xAxis?: IAxis; yAxis?: IAxis; data: Array<{ x: number | string; y: number; }>; } export default class MiniArea extends React.Component {} ================================================ FILE: src/components/Charts/MiniArea/index.js ================================================ import React from 'react'; import { Chart, Axis, Tooltip, Geom } from 'bizcharts'; import autoHeight from '../autoHeight'; import styles from '../index.less'; @autoHeight() class MiniArea extends React.PureComponent { render() { const { height, data = [], forceFit = true, color = 'rgba(24, 144, 255, 0.2)', borderColor = '#1089ff', scale = {}, borderWidth = 2, line, xAxis, yAxis, animate = true, } = this.props; const padding = [36, 5, 30, 5]; const scaleProps = { x: { type: 'cat', range: [0, 1], ...scale.x, }, y: { min: 0, ...scale.y, }, }; const tooltip = [ 'x*y', (x, y) => ({ name: x, value: y, }), ]; const chartHeight = height + 54; return (
{height > 0 && ( {line ? ( ) : ( )} )}
); } } export default MiniArea; ================================================ FILE: src/components/Charts/MiniBar/index.d.ts ================================================ import * as React from 'react'; export interface IMiniBarProps { color?: string; height: number; data: Array<{ x: number | string; y: number; }>; style?: React.CSSProperties; } export default class MiniBar extends React.Component {} ================================================ FILE: src/components/Charts/MiniBar/index.js ================================================ import React from 'react'; import { Chart, Tooltip, Geom } from 'bizcharts'; import autoHeight from '../autoHeight'; import styles from '../index.less'; @autoHeight() class MiniBar extends React.Component { render() { const { height, forceFit = true, color = '#1890FF', data = [] } = this.props; const scale = { x: { type: 'cat', }, y: { min: 0, }, }; const padding = [36, 5, 30, 5]; const tooltip = [ 'x*y', (x, y) => ({ name: x, value: y, }), ]; // for tooltip not to be hide const chartHeight = height + 54; return (
); } } export default MiniBar; ================================================ FILE: src/components/Charts/MiniProgress/index.d.ts ================================================ import * as React from 'react'; export interface IMiniProgressProps { target: number; color?: string; strokeWidth?: number; percent?: number; style?: React.CSSProperties; } export default class MiniProgress extends React.Component {} ================================================ FILE: src/components/Charts/MiniProgress/index.js ================================================ import React from 'react'; import { Tooltip } from 'antd'; import styles from './index.less'; const MiniProgress = ({ target, color = 'rgb(19, 194, 194)', strokeWidth, percent }) => (
); export default MiniProgress; ================================================ FILE: src/components/Charts/MiniProgress/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .miniProgress { padding: 5px 0; position: relative; width: 100%; .progressWrap { background-color: @background-color-base; position: relative; } .progress { transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s; border-radius: 1px 0 0 1px; background-color: @primary-color; width: 0; height: 100%; } .target { position: absolute; top: 0; bottom: 0; span { border-radius: 100px; position: absolute; top: 0; left: 0; height: 4px; width: 2px; } span:last-child { top: auto; bottom: 0; } } } ================================================ FILE: src/components/Charts/Pie/index.d.ts ================================================ import * as React from 'react'; export interface IPieProps { animate?: boolean; color?: string; colors?: string[]; height: number; hasLegend?: boolean; padding?: [number, number, number, number]; percent?: number; data?: Array<{ x: string | string; y: number; }>; total?: React.ReactNode | number | (() => React.ReactNode | number); title?: React.ReactNode; tooltip?: boolean; valueFormat?: (value: string) => string | React.ReactNode; subTitle?: React.ReactNode; } export default class Pie extends React.Component {} ================================================ FILE: src/components/Charts/Pie/index.js ================================================ import React, { Component } from 'react'; import { Chart, Tooltip, Geom, Coord } from 'bizcharts'; import { DataView } from '@antv/data-set'; import { Divider } from 'antd'; import classNames from 'classnames'; import ReactFitText from 'react-fittext'; import Debounce from 'lodash-decorators/debounce'; import Bind from 'lodash-decorators/bind'; import autoHeight from '../autoHeight'; import styles from './index.less'; /* eslint react/no-danger:0 */ @autoHeight() class Pie extends Component { state = { legendData: [], legendBlock: false, }; componentDidMount() { window.addEventListener( 'resize', () => { this.requestRef = requestAnimationFrame(() => this.resize()); }, { passive: true } ); } componentDidUpdate(preProps) { const { data } = this.props; if (data !== preProps.data) { // because of charts data create when rendered // so there is a trick for get rendered time this.getLegendData(); } } componentWillUnmount() { window.cancelAnimationFrame(this.requestRef); window.removeEventListener('resize', this.resize); this.resize.cancel(); } getG2Instance = chart => { this.chart = chart; requestAnimationFrame(() => { this.getLegendData(); this.resize(); }); }; // for custom lengend view getLegendData = () => { if (!this.chart) return; const geom = this.chart.getAllGeoms()[0]; // 获取所有的图形 if (!geom) return; const items = geom.get('dataArray') || []; // 获取图形对应的 const legendData = items.map(item => { /* eslint no-underscore-dangle:0 */ const origin = item[0]._origin; origin.color = item[0].color; origin.checked = true; return origin; }); this.setState({ legendData, }); }; handleRoot = n => { this.root = n; }; handleLegendClick = (item, i) => { const newItem = item; newItem.checked = !newItem.checked; const { legendData } = this.state; legendData[i] = newItem; const filteredLegendData = legendData.filter(l => l.checked).map(l => l.x); if (this.chart) { this.chart.filter('x', val => filteredLegendData.indexOf(val) > -1); } this.setState({ legendData, }); }; // for window resize auto responsive legend @Bind() @Debounce(300) resize() { const { hasLegend } = this.props; const { legendBlock } = this.state; if (!hasLegend || !this.root) { window.removeEventListener('resize', this.resize); return; } if (this.root.parentNode.clientWidth <= 380) { if (!legendBlock) { this.setState({ legendBlock: true, }); } } else if (legendBlock) { this.setState({ legendBlock: false, }); } } render() { const { valueFormat, subTitle, total, hasLegend = false, className, style, height, forceFit = true, percent, color, inner = 0.75, animate = true, colors, lineWidth = 1, } = this.props; const { legendData, legendBlock } = this.state; const pieClassName = classNames(styles.pie, className, { [styles.hasLegend]: !!hasLegend, [styles.legendBlock]: legendBlock, }); const { data: propsData, selected: propsSelected = true, tooltip: propsTooltip = true, } = this.props; let data = propsData || []; let selected = propsSelected; let tooltip = propsTooltip; const defaultColors = colors; data = data || []; selected = selected || true; tooltip = tooltip || true; let formatColor; const scale = { x: { type: 'cat', range: [0, 1], }, y: { min: 0, }, }; if (percent || percent === 0) { selected = false; tooltip = false; formatColor = value => { if (value === '占比') { return color || 'rgba(24, 144, 255, 0.85)'; } return '#F0F2F5'; }; data = [ { x: '占比', y: parseFloat(percent), }, { x: '反比', y: 100 - parseFloat(percent), }, ]; } const tooltipFormat = [ 'x*percent', (x, p) => ({ name: x, value: `${(p * 100).toFixed(2)}%`, }), ]; const padding = [12, 0, 12, 0]; const dv = new DataView(); dv.source(data).transform({ type: 'percent', field: 'y', dimension: 'x', as: 'percent', }); return (
{!!tooltip && } {(subTitle || total) && (
{subTitle &&

{subTitle}

} {/* eslint-disable-next-line */} {total && (
{typeof total === 'function' ? total() : total}
)}
)}
{hasLegend && (
    {legendData.map((item, i) => (
  • this.handleLegendClick(item, i)}> {item.x} {`${(Number.isNaN(item.percent) ? 0 : item.percent * 100).toFixed(2)}%`} {valueFormat ? valueFormat(item.y) : item.y}
  • ))}
)}
); } } export default Pie; ================================================ FILE: src/components/Charts/Pie/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .pie { position: relative; .chart { position: relative; } &.hasLegend .chart { width: ~'calc(100% - 240px)'; } .legend { position: absolute; right: 0; min-width: 200px; top: 50%; transform: translateY(-50%); margin: 0 20px; list-style: none; padding: 0; li { cursor: pointer; margin-bottom: 16px; height: 22px; line-height: 22px; &:last-child { margin-bottom: 0; } } } .dot { border-radius: 8px; display: inline-block; margin-right: 8px; position: relative; top: -1px; height: 8px; width: 8px; } .line { background-color: @border-color-split; display: inline-block; margin-right: 8px; width: 1px; height: 16px; } .legendTitle { color: @text-color; } .percent { color: @text-color-secondary; } .value { position: absolute; right: 0; } .title { margin-bottom: 8px; } .total { position: absolute; left: 50%; top: 50%; text-align: center; max-height: 62px; transform: translate(-50%, -50%); & > h4 { color: @text-color-secondary; font-size: 14px; line-height: 22px; height: 22px; margin-bottom: 8px; font-weight: normal; } & > p { color: @heading-color; display: block; font-size: 1.2em; height: 32px; line-height: 32px; white-space: nowrap; } } } .legendBlock { &.hasLegend .chart { width: 100%; margin: 0 0 32px 0; } .legend { position: relative; transform: none; } } ================================================ FILE: src/components/Charts/Radar/index.d.ts ================================================ import * as React from 'react'; export interface IRadarProps { title?: React.ReactNode; height: number; padding?: [number, number, number, number]; hasLegend?: boolean; data: Array<{ name: string; label: string; value: string; }>; style?: React.CSSProperties; } export default class Radar extends React.Component {} ================================================ FILE: src/components/Charts/Radar/index.js ================================================ import React, { Component } from 'react'; import { Chart, Tooltip, Geom, Coord, Axis } from 'bizcharts'; import { Row, Col } from 'antd'; import autoHeight from '../autoHeight'; import styles from './index.less'; /* eslint react/no-danger:0 */ @autoHeight() class Radar extends Component { state = { legendData: [], }; componentDidMount() { this.getLegendData(); } componentDidUpdate(preProps) { const { data } = this.props; if (data !== preProps.data) { this.getLegendData(); } } getG2Instance = chart => { this.chart = chart; }; // for custom lengend view getLegendData = () => { if (!this.chart) return; const geom = this.chart.getAllGeoms()[0]; // 获取所有的图形 if (!geom) return; const items = geom.get('dataArray') || []; // 获取图形对应的 const legendData = items.map(item => { // eslint-disable-next-line const origins = item.map(t => t._origin); const result = { name: origins[0].name, color: item[0].color, checked: true, value: origins.reduce((p, n) => p + n.value, 0), }; return result; }); this.setState({ legendData, }); }; handleRef = n => { this.node = n; }; handleLegendClick = (item, i) => { const newItem = item; newItem.checked = !newItem.checked; const { legendData } = this.state; legendData[i] = newItem; const filteredLegendData = legendData.filter(l => l.checked).map(l => l.name); if (this.chart) { this.chart.filter('name', val => filteredLegendData.indexOf(val) > -1); this.chart.repaint(); } this.setState({ legendData, }); }; render() { const defaultColors = [ '#1890FF', '#FACC14', '#2FC25B', '#8543E0', '#F04864', '#13C2C2', '#fa8c16', '#a0d911', ]; const { data = [], height = 0, title, hasLegend = false, forceFit = true, tickCount = 4, padding = [35, 30, 16, 30], animate = true, colors = defaultColors, } = this.props; const { legendData } = this.state; const scale = { value: { min: 0, tickCount, }, }; const chartHeight = height - (hasLegend ? 80 : 22); return (
{title &&

{title}

} {hasLegend && ( {legendData.map((item, i) => ( this.handleLegendClick(item, i)} >

{item.name}

{item.value}
))}
)}
); } } export default Radar; ================================================ FILE: src/components/Charts/Radar/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .radar { .legend { margin-top: 16px; .legendItem { position: relative; text-align: center; cursor: pointer; color: @text-color-secondary; line-height: 22px; p { margin: 0; } h6 { color: @heading-color; padding-left: 16px; font-size: 24px; line-height: 32px; margin-top: 4px; margin-bottom: 0; } &:after { background-color: @border-color-split; position: absolute; top: 8px; right: 0; height: 40px; width: 1px; content: ''; } } > :last-child .legendItem:after { display: none; } .dot { border-radius: 6px; display: inline-block; margin-right: 6px; position: relative; top: -1px; height: 6px; width: 6px; } } } ================================================ FILE: src/components/Charts/TagCloud/index.d.ts ================================================ import * as React from 'react'; export interface ITagCloudProps { data: Array<{ name: string; value: number; }>; height: number; style?: React.CSSProperties; } export default class TagCloud extends React.Component {} ================================================ FILE: src/components/Charts/TagCloud/index.js ================================================ import React, { Component } from 'react'; import { Chart, Geom, Coord, Shape } from 'bizcharts'; import DataSet from '@antv/data-set'; import Debounce from 'lodash-decorators/debounce'; import Bind from 'lodash-decorators/bind'; import classNames from 'classnames'; import autoHeight from '../autoHeight'; import styles from './index.less'; /* eslint no-underscore-dangle: 0 */ /* eslint no-param-reassign: 0 */ const imgUrl = 'https://gw.alipayobjects.com/zos/rmsportal/gWyeGLCdFFRavBGIDzWk.png'; @autoHeight() class TagCloud extends Component { state = { dv: null, }; componentDidMount() { requestAnimationFrame(() => { this.initTagCloud(); this.renderChart(); }); window.addEventListener('resize', this.resize, { passive: true }); } componentDidUpdate(preProps) { const { data } = this.props; if (JSON.stringify(preProps.data) !== JSON.stringify(data)) { this.renderChart(this.props); } } componentWillUnmount() { this.isUnmount = true; window.cancelAnimationFrame(this.requestRef); window.removeEventListener('resize', this.resize); } resize = () => { this.requestRef = requestAnimationFrame(() => { this.renderChart(); }); }; saveRootRef = node => { this.root = node; }; initTagCloud = () => { function getTextAttrs(cfg) { return Object.assign( {}, { fillOpacity: cfg.opacity, fontSize: cfg.origin._origin.size, rotate: cfg.origin._origin.rotate, text: cfg.origin._origin.text, textAlign: 'center', fontFamily: cfg.origin._origin.font, fill: cfg.color, textBaseline: 'Alphabetic', }, cfg.style ); } // 给point注册一个词云的shape Shape.registerShape('point', 'cloud', { drawShape(cfg, container) { const attrs = getTextAttrs(cfg); return container.addShape('text', { attrs: Object.assign(attrs, { x: cfg.x, y: cfg.y, }), }); }, }); }; @Bind() @Debounce(500) renderChart(nextProps) { // const colors = ['#1890FF', '#41D9C7', '#2FC25B', '#FACC14', '#9AE65C']; const { data, height } = nextProps || this.props; if (data.length < 1 || !this.root) { return; } const h = height * 4; const w = this.root.offsetWidth * 4; const onload = () => { const dv = new DataSet.View().source(data); const range = dv.range('value'); const [min, max] = range; dv.transform({ type: 'tag-cloud', fields: ['name', 'value'], imageMask: this.imageMask, font: 'Verdana', size: [w, h], // 宽高设置最好根据 imageMask 做调整 padding: 5, timeInterval: 5000, // max execute time rotate() { return 0; }, fontSize(d) { // eslint-disable-next-line return Math.pow((d.value - min) / (max - min), 2) * (70 - 20) + 20; }, }); if (this.isUnmount) { return; } this.setState({ dv, w, h, }); }; if (!this.imageMask) { this.imageMask = new Image(); this.imageMask.crossOrigin = ''; this.imageMask.src = imgUrl; this.imageMask.onload = onload; } else { onload(); } } render() { const { className, height } = this.props; const { dv, w, h } = this.state; return (
{dv && ( )}
); } } export default TagCloud; ================================================ FILE: src/components/Charts/TagCloud/index.less ================================================ .tagCloud { overflow: hidden; canvas { transform: scale(0.25); transform-origin: 0 0; } } ================================================ FILE: src/components/Charts/TimelineChart/index.d.ts ================================================ import * as React from 'react'; export interface ITimelineChartProps { data: Array<{ x: number; y1: number; y2?: number; }>; titleMap: { y1: string; y2?: string }; padding?: [number, number, number, number]; height?: number; style?: React.CSSProperties; } export default class TimelineChart extends React.Component {} ================================================ FILE: src/components/Charts/TimelineChart/index.js ================================================ import React from 'react'; import { Chart, Tooltip, Geom, Legend, Axis } from 'bizcharts'; import DataSet from '@antv/data-set'; import Slider from 'bizcharts-plugin-slider'; import autoHeight from '../autoHeight'; import styles from './index.less'; @autoHeight() class TimelineChart extends React.Component { render() { const { title, height = 400, padding = [60, 20, 40, 40], titleMap = { y1: 'y1', y2: 'y2', }, borderWidth = 2, data = [ { x: 0, y1: 0, y2: 0, }, ], } = this.props; data.sort((a, b) => a.x - b.x); let max; if (data[0] && data[0].y1 && data[0].y2) { max = Math.max( [...data].sort((a, b) => b.y1 - a.y1)[0].y1, [...data].sort((a, b) => b.y2 - a.y2)[0].y2 ); } const ds = new DataSet({ state: { start: data[0].x, end: data[data.length - 1].x, }, }); const dv = ds.createView(); dv.source(data) .transform({ type: 'filter', callback: obj => { const date = obj.x; return date <= ds.state.end && date >= ds.state.start; }, }) .transform({ type: 'map', callback(row) { const newRow = { ...row }; newRow[titleMap.y1] = row.y1; newRow[titleMap.y2] = row.y2; return newRow; }, }) .transform({ type: 'fold', fields: [titleMap.y1, titleMap.y2], // 展开字段集 key: 'key', // key字段 value: 'value', // value字段 }); const timeScale = { type: 'time', tickInterval: 60 * 60 * 1000, mask: 'HH:mm', range: [0, 1], }; const cols = { x: timeScale, value: { max, min: 0, }, }; const SliderGen = () => ( { ds.setState('start', startValue); ds.setState('end', endValue); }} /> ); return (
{title &&

{title}

}
); } } export default TimelineChart; ================================================ FILE: src/components/Charts/TimelineChart/index.less ================================================ .timelineChart { background: #fff; } ================================================ FILE: src/components/Charts/WaterWave/index.d.ts ================================================ import * as React from 'react'; export interface IWaterWaveProps { title: React.ReactNode; color?: string; height: number; percent: number; style?: React.CSSProperties; } export default class WaterWave extends React.Component {} ================================================ FILE: src/components/Charts/WaterWave/index.js ================================================ import React, { PureComponent } from 'react'; import autoHeight from '../autoHeight'; import styles from './index.less'; /* eslint no-return-assign: 0 */ /* eslint no-mixed-operators: 0 */ // riddle: https://riddle.alibaba-inc.com/riddles/2d9a4b90 @autoHeight() class WaterWave extends PureComponent { state = { radio: 1, }; componentDidMount() { this.renderChart(); this.resize(); window.addEventListener( 'resize', () => { requestAnimationFrame(() => this.resize()); }, { passive: true } ); } componentDidUpdate(props) { const { percent } = this.props; if (props.percent !== percent) { // 不加这个会造成绘制缓慢 this.renderChart('update'); } } componentWillUnmount() { cancelAnimationFrame(this.timer); if (this.node) { this.node.innerHTML = ''; } window.removeEventListener('resize', this.resize); } resize = () => { if (this.root) { const { height } = this.props; const { offsetWidth } = this.root.parentNode; this.setState({ radio: offsetWidth < height ? offsetWidth / height : 1, }); } }; renderChart(type) { const { percent, color = '#1890FF' } = this.props; const data = percent / 100; const self = this; cancelAnimationFrame(this.timer); if (!this.node || (data !== 0 && !data)) { return; } const canvas = this.node; const ctx = canvas.getContext('2d'); const canvasWidth = canvas.width; const canvasHeight = canvas.height; const radius = canvasWidth / 2; const lineWidth = 2; const cR = radius - lineWidth; ctx.beginPath(); ctx.lineWidth = lineWidth * 2; const axisLength = canvasWidth - lineWidth; const unit = axisLength / 8; const range = 0.2; // 振幅 let currRange = range; const xOffset = lineWidth; let sp = 0; // 周期偏移量 let currData = 0; const waveupsp = 0.005; // 水波上涨速度 let arcStack = []; const bR = radius - lineWidth; const circleOffset = -(Math.PI / 2); let circleLock = true; for (let i = circleOffset; i < circleOffset + 2 * Math.PI; i += 1 / (8 * Math.PI)) { arcStack.push([radius + bR * Math.cos(i), radius + bR * Math.sin(i)]); } const cStartPoint = arcStack.shift(); ctx.strokeStyle = color; ctx.moveTo(cStartPoint[0], cStartPoint[1]); function drawSin() { ctx.beginPath(); ctx.save(); const sinStack = []; for (let i = xOffset; i <= xOffset + axisLength; i += 20 / axisLength) { const x = sp + (xOffset + i) / unit; const y = Math.sin(x) * currRange; const dx = i; const dy = 2 * cR * (1 - currData) + (radius - cR) - unit * y; ctx.lineTo(dx, dy); sinStack.push([dx, dy]); } const startPoint = sinStack.shift(); ctx.lineTo(xOffset + axisLength, canvasHeight); ctx.lineTo(xOffset, canvasHeight); ctx.lineTo(startPoint[0], startPoint[1]); const gradient = ctx.createLinearGradient(0, 0, 0, canvasHeight); gradient.addColorStop(0, '#ffffff'); gradient.addColorStop(1, color); ctx.fillStyle = gradient; ctx.fill(); ctx.restore(); } function render() { ctx.clearRect(0, 0, canvasWidth, canvasHeight); if (circleLock && type !== 'update') { if (arcStack.length) { const temp = arcStack.shift(); ctx.lineTo(temp[0], temp[1]); ctx.stroke(); } else { circleLock = false; ctx.lineTo(cStartPoint[0], cStartPoint[1]); ctx.stroke(); arcStack = null; ctx.globalCompositeOperation = 'destination-over'; ctx.beginPath(); ctx.lineWidth = lineWidth; ctx.arc(radius, radius, bR, 0, 2 * Math.PI, 1); ctx.beginPath(); ctx.save(); ctx.arc(radius, radius, radius - 3 * lineWidth, 0, 2 * Math.PI, 1); ctx.restore(); ctx.clip(); ctx.fillStyle = color; } } else { if (data >= 0.85) { if (currRange > range / 4) { const t = range * 0.01; currRange -= t; } } else if (data <= 0.1) { if (currRange < range * 1.5) { const t = range * 0.01; currRange += t; } } else { if (currRange <= range) { const t = range * 0.01; currRange += t; } if (currRange >= range) { const t = range * 0.01; currRange -= t; } } if (data - currData > 0) { currData += waveupsp; } if (data - currData < 0) { currData -= waveupsp; } sp += 0.07; drawSin(); } self.timer = requestAnimationFrame(render); } render(); } render() { const { radio } = this.state; const { percent, title, height } = this.props; return (
(this.root = n)} style={{ transform: `scale(${radio})` }} >
(this.node = n)} width={height * 2} height={height * 2} />
{title && {title}}

{percent}%

); } } export default WaterWave; ================================================ FILE: src/components/Charts/WaterWave/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .waterWave { display: inline-block; position: relative; transform-origin: left; .text { position: absolute; left: 0; top: 32px; text-align: center; width: 100%; span { color: @text-color-secondary; font-size: 14px; line-height: 22px; } h4 { color: @heading-color; line-height: 32px; font-size: 24px; } } .waterWaveCanvasWrapper { transform: scale(0.5); transform-origin: 0 0; } } ================================================ FILE: src/components/Charts/autoHeight.js ================================================ /* eslint eqeqeq: 0 */ import React from 'react'; function computeHeight(node) { const totalHeight = parseInt(getComputedStyle(node).height, 10); const padding = parseInt(getComputedStyle(node).paddingTop, 10) + parseInt(getComputedStyle(node).paddingBottom, 10); return totalHeight - padding; } function getAutoHeight(n) { if (!n) { return 0; } let node = n; let height = computeHeight(node); while (!height) { node = node.parentNode; if (node) { height = computeHeight(node); } else { break; } } return height; } const autoHeight = () => WrappedComponent => class extends React.Component { state = { computedHeight: 0, }; componentDidMount() { const { height } = this.props; if (!height) { const h = getAutoHeight(this.root); // eslint-disable-next-line this.setState({ computedHeight: h }); } } handleRoot = node => { this.root = node; }; render() { const { height } = this.props; const { computedHeight } = this.state; const h = height || computedHeight; return (
{h > 0 && }
); } }; export default autoHeight; ================================================ FILE: src/components/Charts/bizcharts.d.ts ================================================ import * as BizChart from 'bizcharts'; export = BizChart; ================================================ FILE: src/components/Charts/bizcharts.js ================================================ import * as BizChart from 'bizcharts'; export default BizChart; ================================================ FILE: src/components/Charts/demo/bar.md ================================================ --- order: 4 title: 柱状图 --- 通过设置 `x`,`y` 属性,可以快速的构建出一个漂亮的柱状图,各种纬度的关系则是通过自定义的数据展现。 ````jsx import { Bar } from 'ant-design-pro/lib/Charts'; const salesData = []; for (let i = 0; i < 12; i += 1) { salesData.push({ x: `${i + 1}月`, y: Math.floor(Math.random() * 1000) + 200, }); } ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Charts/demo/chart-card.md ================================================ --- order: 1 title: 图表卡片 --- 用于展示图表的卡片容器,可以方便的配合其它图表套件展示丰富信息。 ```jsx import { ChartCard, yuan, Field } from 'ant-design-pro/lib/Charts'; import Trend from 'ant-design-pro/lib/Trend'; import { Row, Col, Icon, Tooltip } from 'antd'; import numeral from 'numeral'; ReactDOM.render( } total={() => ( )} footer={ } contentHeight={46} > 周同比 12% 日环比 11% } action={ } total={() => ( )} footer={ } /> } action={ } total={() => ( )} /> , mountNode, ); ``` ================================================ FILE: src/components/Charts/demo/gauge.md ================================================ --- order: 7 title: 仪表盘 --- 仪表盘是一种进度展示方式,可以更直观的展示当前的进展情况,通常也可表示占比。 ````jsx import { Gauge } from 'ant-design-pro/lib/Charts'; ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Charts/demo/mini-area.md ================================================ --- order: 2 col: 2 title: 迷你区域图 --- ````jsx import { MiniArea } from 'ant-design-pro/lib/Charts'; import moment from 'moment'; const visitData = []; const beginDay = new Date().getTime(); for (let i = 0; i < 20; i += 1) { visitData.push({ x: moment(new Date(beginDay + (1000 * 60 * 60 * 24 * i))).format('YYYY-MM-DD'), y: Math.floor(Math.random() * 100) + 10, }); } ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Charts/demo/mini-bar.md ================================================ --- order: 2 col: 2 title: 迷你柱状图 --- 迷你柱状图更适合展示简单的区间数据,简洁的表现方式可以很好的减少大数据量的视觉展现压力。 ````jsx import { MiniBar } from 'ant-design-pro/lib/Charts'; import moment from 'moment'; const visitData = []; const beginDay = new Date().getTime(); for (let i = 0; i < 20; i += 1) { visitData.push({ x: moment(new Date(beginDay + (1000 * 60 * 60 * 24 * i))).format('YYYY-MM-DD'), y: Math.floor(Math.random() * 100) + 10, }); } ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Charts/demo/mini-pie.md ================================================ --- order: 6 title: 迷你饼状图 --- 通过简化 `Pie` 属性的设置,可以快速的实现极简的饼状图,可配合 `ChartCard` 组合展 现更多业务场景。 ```jsx import { Pie } from 'ant-design-pro/lib/Charts'; ReactDOM.render( , mountNode ); ``` ================================================ FILE: src/components/Charts/demo/mini-progress.md ================================================ --- order: 3 title: 迷你进度条 --- ````jsx import { MiniProgress } from 'ant-design-pro/lib/Charts'; ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Charts/demo/mix.md ================================================ --- order: 0 title: 图表套件组合展示 --- 利用 Ant Design Pro 提供的图表套件,可以灵活组合符合设计规范的图表来满足复杂的业务需求。 ````jsx import { ChartCard, Field, MiniArea, MiniBar, MiniProgress } from 'ant-design-pro/lib/Charts'; import Trend from 'ant-design-pro/lib/Trend'; import NumberInfo from 'ant-design-pro/lib/NumberInfo'; import { Row, Col, Icon, Tooltip } from 'antd'; import numeral from 'numeral'; import moment from 'moment'; const visitData = []; const beginDay = new Date().getTime(); for (let i = 0; i < 20; i += 1) { visitData.push({ x: moment(new Date(beginDay + (1000 * 60 * 60 * 24 * i))).format('YYYY-MM-DD'), y: Math.floor(Math.random() * 100) + 10, }); } ReactDOM.render( 本周访问} total={numeral(12321).format('0,0')} status="up" subTotal={17.1} /> } total={numeral(8846).format('0,0')} footer={} contentHeight={46} > } total="78%" footer={
周同比 12% 日环比 11%
} contentHeight={46} >
, mountNode); ```` ================================================ FILE: src/components/Charts/demo/pie.md ================================================ --- order: 5 title: 饼状图 --- ```jsx import { Pie, yuan } from 'ant-design-pro/lib/Charts'; const salesPieData = [ { x: '家用电器', y: 4544, }, { x: '食用酒水', y: 3321, }, { x: '个护健康', y: 3113, }, { x: '服饰箱包', y: 2341, }, { x: '母婴产品', y: 1231, }, { x: '其他', y: 1231, }, ]; ReactDOM.render( ( now.y + pre, 0)) }} /> )} data={salesPieData} valueFormat={val => } height={294} />, mountNode, ); ``` ================================================ FILE: src/components/Charts/demo/radar.md ================================================ --- order: 7 title: 雷达图 --- ````jsx import { Radar, ChartCard } from 'ant-design-pro/lib/Charts'; const radarOriginData = [ { name: '个人', ref: 10, koubei: 8, output: 4, contribute: 5, hot: 7, }, { name: '团队', ref: 3, koubei: 9, output: 6, contribute: 3, hot: 1, }, { name: '部门', ref: 4, koubei: 1, output: 6, contribute: 5, hot: 7, }, ]; const radarData = []; const radarTitleMap = { ref: '引用', koubei: '口碑', output: '产量', contribute: '贡献', hot: '热度', }; radarOriginData.forEach((item) => { Object.keys(item).forEach((key) => { if (key !== 'name') { radarData.push({ name: item.name, label: radarTitleMap[key], value: item[key], }); } }); }); ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Charts/demo/tag-cloud.md ================================================ --- order: 9 title: 标签云 --- 标签云是一套相关的标签以及与此相应的权重展示方式,一般典型的标签云有 30 至 150 个标签,而权重影响使用的字体大小或其他视觉效果。 ````jsx import { TagCloud } from 'ant-design-pro/lib/Charts'; const tags = []; for (let i = 0; i < 50; i += 1) { tags.push({ name: `TagClout-Title-${i}`, value: Math.floor((Math.random() * 50)) + 20, }); } ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Charts/demo/timeline-chart.md ================================================ --- order: 9 title: 带有时间轴的图表 --- 使用 `TimelineChart` 组件可以实现带有时间轴的柱状图展现,而其中的 `x` 属性,则是时间值的指向,默认最多支持同时展现两个指标,分别是 `y1` 和 `y2`。 ````jsx import { TimelineChart } from 'ant-design-pro/lib/Charts'; const chartData = []; for (let i = 0; i < 20; i += 1) { chartData.push({ x: (new Date().getTime()) + (1000 * 60 * 30 * i), y1: Math.floor(Math.random() * 100) + 1000, y2: Math.floor(Math.random() * 100) + 10, }); } ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Charts/demo/waterwave.md ================================================ --- order: 8 title: 水波图 --- 水波图是一种比例的展示方式,可以更直观的展示关键值的占比。 ````jsx import { WaterWave } from 'ant-design-pro/lib/Charts'; ReactDOM.render(
, mountNode); ```` ================================================ FILE: src/components/Charts/g2.js ================================================ // 全局 G2 设置 import { track, setTheme } from 'bizcharts'; track(false); const config = { defaultColor: '#1089ff', shape: { interval: { fillOpacity: 1, }, }, }; setTheme(config); ================================================ FILE: src/components/Charts/index.d.ts ================================================ import * as numeral from 'numeral'; export { default as ChartCard } from './ChartCard'; export { default as Bar } from './Bar'; export { default as Pie } from './Pie'; export { default as Radar } from './Radar'; export { default as Gauge } from './Gauge'; export { default as MiniArea } from './MiniArea'; export { default as MiniBar } from './MiniBar'; export { default as MiniProgress } from './MiniProgress'; export { default as Field } from './Field'; export { default as WaterWave } from './WaterWave'; export { default as TagCloud } from './TagCloud'; export { default as TimelineChart } from './TimelineChart'; declare const yuan: (value: number | string) => string; export { yuan }; ================================================ FILE: src/components/Charts/index.js ================================================ import numeral from 'numeral'; import './g2'; import ChartCard from './ChartCard'; import Bar from './Bar'; import Pie from './Pie'; import Radar from './Radar'; import Gauge from './Gauge'; import MiniArea from './MiniArea'; import MiniBar from './MiniBar'; import MiniProgress from './MiniProgress'; import Field from './Field'; import WaterWave from './WaterWave'; import TagCloud from './TagCloud'; import TimelineChart from './TimelineChart'; const yuan = val => `¥ ${numeral(val).format('0,0')}`; const Charts = { yuan, Bar, Pie, Gauge, Radar, MiniBar, MiniArea, MiniProgress, ChartCard, Field, WaterWave, TagCloud, TimelineChart, }; export { Charts as default, yuan, Bar, Pie, Gauge, Radar, MiniBar, MiniArea, MiniProgress, ChartCard, Field, WaterWave, TagCloud, TimelineChart, }; ================================================ FILE: src/components/Charts/index.less ================================================ .miniChart { position: relative; width: 100%; .chartContent { position: absolute; bottom: -28px; width: 100%; > div { margin: 0 -5px; overflow: hidden; } } .chartLoading { position: absolute; top: 16px; left: 50%; margin-left: -7px; } } ================================================ FILE: src/components/Charts/index.md ================================================ --- title: en-US: Charts zh-CN: Charts subtitle: 图表 order: 2 cols: 2 --- Ant Design Pro 提供的业务中常用的图表类型,都是基于 [G2](https://antv.alipay.com/g2/doc/index.html) 按照 Ant Design 图表规范封装,需要注意的是 Ant Design Pro 的图表组件以套件形式提供,可以任意组合实现复杂的业务需求。 因为结合了 Ant Design 的标准设计,本着极简的设计思想以及开箱即用的理念,简化了大量 API 配置,所以如果需要灵活定制图表,可以参考 Ant Design Pro 图表实现,自行基于 [G2](https://antv.alipay.com/g2/doc/index.html) 封装图表组件使用。 ## API ### ChartCard | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | title | 卡片标题 | ReactNode\|string | - | | action | 卡片操作 | ReactNode | - | | total | 数据总量 | ReactNode \| number \| function | - | | footer | 卡片底部 | ReactNode | - | | contentHeight | 内容区域高度 | number | - | | avatar | 右侧图标 | React.ReactNode | - | ### MiniBar | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | color | 图表颜色 | string | `#1890FF` | | height | 图表高度 | number | - | | data | 数据 | array<{x, y}> | - | ### MiniArea | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | color | 图表颜色 | string | `rgba(24, 144, 255, 0.2)` | | borderColor | 图表边颜色 | string | `#1890FF` | | height | 图表高度 | number | - | | line | 是否显示描边 | boolean | false | | animate | 是否显示动画 | boolean | true | | xAxis | [x 轴配置](http://antvis.github.io/g2/doc/tutorial/start/axis.html) | object | - | | yAxis | [y 轴配置](http://antvis.github.io/g2/doc/tutorial/start/axis.html) | object | - | | data | 数据 | array<{x, y}> | - | ### MiniProgress | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | target | 目标比例 | number | - | | color | 进度条颜色 | string | - | | strokeWidth | 进度条高度 | number | - | | percent | 进度比例 | number | - | ### Bar | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | title | 图表标题 | ReactNode\|string | - | | color | 图表颜色 | string | `rgba(24, 144, 255, 0.85)` | | padding | 图表内部间距 | [array](https://github.com/alibaba/BizCharts/blob/master/doc/api/chart.md#7padding-object--number--array-) | `'auto'` | | height | 图表高度 | number | - | | data | 数据 | array<{x, y}> | - | | autoLabel | 在宽度不足时,自动隐藏 x 轴的 label | boolean | `true` | ### Pie | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | animate | 是否显示动画 | boolean | true | | color | 图表颜色 | string | `rgba(24, 144, 255, 0.85)` | | height | 图表高度 | number | - | | hasLegend | 是否显示 legend | boolean | `false` | | padding | 图表内部间距 | [array](https://github.com/alibaba/BizCharts/blob/master/doc/api/chart.md#7padding-object--number--array-) | `'auto'` | | percent | 占比 | number | - | | tooltip | 是否显示 tooltip | boolean | true | | valueFormat | 显示值的格式化函数 | function | - | | title | 图表标题 | ReactNode\|string | - | | subTitle | 图表子标题 | ReactNode\|string | - | | total | 图标中央的总数 | string | function | - | ### Radar | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | title | 图表标题 | ReactNode\|string | - | | height | 图表高度 | number | - | | hasLegend | 是否显示 legend | boolean | `false` | | padding | 图表内部间距 | [array](https://github.com/alibaba/BizCharts/blob/master/doc/api/chart.md#7padding-object--number--array-) | `'auto'` | | data | 图标数据 | array<{name,label,value}> | - | ### Gauge | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | title | 图表标题 | ReactNode\|string | - | | height | 图表高度 | number | - | | color | 图表颜色 | string | `#2F9CFF` | | bgColor | 图表背景颜色 | string | `#F0F2F5` | | percent | 进度比例 | number | - | ### WaterWave | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | title | 图表标题 | ReactNode\|string | - | | height | 图表高度 | number | - | | color | 图表颜色 | string | `#1890FF` | | percent | 进度比例 | number | - | ### TagCloud | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | data | 标题 | Array | - | | height | 高度值 | number | - | ### TimelineChart | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | data | 标题 | Array | - | | titleMap | 指标别名 | Object{y1: '客流量', y2: '支付笔数'} | - | | height | 高度值 | number | 400 | ### Field | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | label | 标题 | ReactNode\|string | - | | value | 值 | ReactNode\|string | - | ================================================ FILE: src/components/Exception/demo/403.md ================================================ --- order: 2 title: zh-CN: 403 en-US: 403 --- ## zh-CN 403 页面,配合自定义操作。 ## en-US 403 page with custom operations. ````jsx import Exception from 'ant-design-pro/lib/Exception'; import { Button } from 'antd'; const actions = (
); ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Exception/demo/404.md ================================================ --- order: 0 title: zh-CN: 404 en-US: 404 --- ## zh-CN 404 页面。 ## en-US 404 page. ````jsx import Exception from 'ant-design-pro/lib/Exception'; ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Exception/demo/500.md ================================================ --- order: 1 title: zh-CN: 500 en-US: 500 --- ## zh-CN 500 页面。 ## en-US 500 page. ````jsx import Exception from 'ant-design-pro/lib/Exception'; ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Exception/index.d.ts ================================================ import * as React from 'react'; export interface IExceptionProps { type?: '403' | '404' | '500'; title?: React.ReactNode; desc?: React.ReactNode; img?: string; actions?: React.ReactNode; linkElement?: React.ReactNode; style?: React.CSSProperties; className?: string; backText?: React.ReactNode; redirect?: string; } export default class Exception extends React.Component {} ================================================ FILE: src/components/Exception/index.en-US.md ================================================ --- title: Exception cols: 1 order: 5 --- Exceptions page is used to provide feedback on specific abnormal state. Usually, it contains an explanation of the error status, and provides users with suggestions or operations, to prevent users from feeling lost and confused. ## API Property | Description | Type | Default ---------|-------------|------|-------- | backText | default return button text | ReactNode | back to home | type | type of exception, the corresponding default `title`, `desc`, `img` will be given if set, which can be overridden by explicit setting of `title`, `desc`, `img` | Enum {'403', '404', '500'} | - title | title | ReactNode | - desc | supplementary description | ReactNode | - img | the url of background image | string | - actions | suggested operations, a default 'Home' link will show if not set | ReactNode | - linkElement | to specify the element of link | string\|ReactElement | 'a' redirect | redirect path | string | '/' ================================================ FILE: src/components/Exception/index.js ================================================ import React, { createElement } from 'react'; import classNames from 'classnames'; import { Button } from 'antd'; import config from './typeConfig'; import styles from './index.less'; class Exception extends React.PureComponent { static defaultProps = { backText: 'back to home', redirect: '/', }; constructor(props) { super(props); this.state = {}; } render() { const { className, backText, linkElement = 'a', type, title, desc, img, actions, redirect, ...rest } = this.props; const pageType = type in config ? type : '404'; const clsString = classNames(styles.exception, className); return (

{title || config[pageType].title}

{desc || config[pageType].desc}
{actions || createElement( linkElement, { to: redirect, href: redirect, }, )}
); } } export default Exception; ================================================ FILE: src/components/Exception/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .exception { display: flex; align-items: center; height: 80%; min-height: 500px; .imgBlock { flex: 0 0 62.5%; width: 62.5%; padding-right: 152px; zoom: 1; &:before, &:after { content: ' '; display: table; } &:after { clear: both; visibility: hidden; font-size: 0; height: 0; } } .imgEle { height: 360px; width: 100%; max-width: 430px; float: right; background-repeat: no-repeat; background-position: 50% 50%; background-size: contain; } .content { flex: auto; h1 { color: #434e59; font-size: 72px; font-weight: 600; line-height: 72px; margin-bottom: 24px; } .desc { color: @text-color-secondary; font-size: 20px; line-height: 28px; margin-bottom: 16px; } .actions { button:not(:last-child) { margin-right: 8px; } } } } @media screen and (max-width: @screen-xl) { .exception { .imgBlock { padding-right: 88px; } } } @media screen and (max-width: @screen-sm) { .exception { display: block; text-align: center; .imgBlock { padding-right: 0; margin: 0 auto 24px; } } } @media screen and (max-width: @screen-xs) { .exception { .imgBlock { margin-bottom: -24px; overflow: hidden; } } } ================================================ FILE: src/components/Exception/index.zh-CN.md ================================================ --- title: Exception subtitle: 异常 cols: 1 order: 5 --- 异常页用于对页面特定的异常状态进行反馈。通常,它包含对错误状态的阐述,并向用户提供建议或操作,避免用户感到迷失和困惑。 ## API | 参数 | 说明| 类型 | 默认值 | |-------------|------------------------------------------|-------------|-------| | backText| 默认的返回按钮文本 | ReactNode| back to home | | type| 页面类型,若配置,则自带对应类型默认的 `title`,`desc`,`img`,此默认设置可以被 `title`,`desc`,`img` 覆盖 | Enum {'403', '404', '500'} | - | | title | 标题 | ReactNode| -| | desc| 补充描述| ReactNode| -| | img | 背景图片地址 | string| -| | actions | 建议操作,配置此属性时默认的『返回首页』按钮不生效| ReactNode| -| | linkElement | 定义链接的元素 | string\|ReactElement | 'a' | | redirect | 返回按钮的跳转地址 | string | '/' ================================================ FILE: src/components/Exception/typeConfig.js ================================================ const config = { 403: { img: 'https://gw.alipayobjects.com/zos/rmsportal/wZcnGqRDyhPOEYFcZDnb.svg', title: '403', desc: '抱歉,你无权访问该页面', }, 404: { img: 'https://gw.alipayobjects.com/zos/rmsportal/KpnpchXsobRgLElEozzI.svg', title: '404', desc: '抱歉,你访问的页面不存在', }, 500: { img: 'https://gw.alipayobjects.com/zos/rmsportal/RVRUAYdCGeYNBWoKiIwB.svg', title: '500', desc: '抱歉,服务器出错了', }, }; export default config; ================================================ FILE: src/components/FooterToolbar/demo/basic.md ================================================ --- order: 0 title: zh-CN: 演示 en-US: demo iframe: 400 --- ## zh-CN 浮动固定页脚。 ## en-US Fixed to the footer. ````jsx import FooterToolbar from 'ant-design-pro/lib/FooterToolbar'; import { Button } from 'antd'; ReactDOM.render(

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

Content Content Content Content

, mountNode); ```` ================================================ FILE: src/components/FooterToolbar/index.d.ts ================================================ import * as React from 'react'; export interface IFooterToolbarProps { extra: React.ReactNode; style?: React.CSSProperties; } export default class FooterToolbar extends React.Component {} ================================================ FILE: src/components/FooterToolbar/index.en-US.md ================================================ --- title: FooterToolbar cols: 1 order: 6 --- A toolbar fixed at the bottom. ## Usage It is fixed at the bottom of the content area and does not move along with the scroll bar, which is usually used for data collection and submission for long pages. ## API Property | Description | Type | Default ---------|-------------|------|-------- children | toolbar content, align to the right | ReactNode | - extra | extra information, align to the left | ReactNode | - ================================================ FILE: src/components/FooterToolbar/index.js ================================================ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import styles from './index.less'; export default class FooterToolbar extends Component { static contextTypes = { isMobile: PropTypes.bool, }; state = { width: undefined, }; componentDidMount() { window.addEventListener('resize', this.resizeFooterToolbar); this.resizeFooterToolbar(); } componentWillUnmount() { window.removeEventListener('resize', this.resizeFooterToolbar); } resizeFooterToolbar = () => { const sider = document.querySelector('.ant-layout-sider'); if (sider == null) { return; } const { isMobile } = this.context; const width = isMobile ? null : `calc(100% - ${sider.style.width})`; const { width: stateWidth } = this.state; if (stateWidth !== width) { this.setState({ width }); } }; render() { const { children, className, extra, ...restProps } = this.props; const { width } = this.state; return (
{extra}
{children}
); } } ================================================ FILE: src/components/FooterToolbar/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .toolbar { position: fixed; width: 100%; bottom: 0; right: 0; height: 56px; line-height: 56px; box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03); background: #fff; border-top: 1px solid @border-color-split; padding: 0 24px; z-index: 9; &:after { content: ''; display: block; clear: both; } .left { float: left; } .right { float: right; } button + button { margin-left: 8px; } } ================================================ FILE: src/components/FooterToolbar/index.zh-CN.md ================================================ --- title: FooterToolbar subtitle: 底部工具栏 cols: 1 order: 6 --- 固定在底部的工具栏。 ## 何时使用 固定在内容区域的底部,不随滚动条移动,常用于长页面的数据搜集和提交工作。 ## API 参数 | 说明 | 类型 | 默认值 ----|------|-----|------ children | 工具栏内容,向右对齐 | ReactNode | - extra | 额外信息,向左对齐 | ReactNode | - ================================================ FILE: src/components/GlobalFooter/demo/basic.md ================================================ --- order: 0 title: 演示 iframe: 400 --- 基本页脚。 ````jsx import GlobalFooter from 'ant-design-pro/lib/GlobalFooter'; import { Icon } from 'antd'; const links = [{ key: '帮助', title: '帮助', href: '', }, { key: 'github', title: , href: 'https://github.com/ant-design/ant-design-pro', blankTarget: true, }, { key: '条款', title: '条款', href: '', blankTarget: true, }]; const copyright =
Copyright 2017 蚂蚁金服体验技术部出品
; ReactDOM.render(
, mountNode); ```` ================================================ FILE: src/components/GlobalFooter/index.d.ts ================================================ import * as React from 'react'; export interface IGlobalFooterProps { links?: Array<{ key?: string; title: React.ReactNode; href: string; blankTarget?: boolean; }>; copyright?: React.ReactNode; style?: React.CSSProperties; } export default class GlobalFooter extends React.Component {} ================================================ FILE: src/components/GlobalFooter/index.js ================================================ import React from 'react'; import classNames from 'classnames'; import styles from './index.less'; const GlobalFooter = ({ className, links, copyright }) => { const clsString = classNames(styles.globalFooter, className); return (
{links && (
{links.map(link => ( {link.title} ))}
)} {copyright &&
{copyright}
}
); }; export default GlobalFooter; ================================================ FILE: src/components/GlobalFooter/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .globalFooter { padding: 0 16px; margin: 48px 0 24px 0; text-align: center; .links { margin-bottom: 8px; a { color: @text-color-secondary; transition: all 0.3s; &:not(:last-child) { margin-right: 40px; } &:hover { color: @text-color; } } } .copyright { color: @text-color-secondary; font-size: @font-size-base; } } ================================================ FILE: src/components/GlobalFooter/index.md ================================================ --- title: en-US: GlobalFooter zh-CN: GlobalFooter subtitle: 全局页脚 cols: 1 order: 7 --- 页脚属于全局导航的一部分,作为对顶部导航的补充,通过传递数据控制展示内容。 ## API 参数 | 说明 | 类型 | 默认值 ----|------|-----|------ links | 链接数据 | array<{ title: ReactNode, href: string, blankTarget?: boolean }> | - copyright | 版权信息 | ReactNode | - ================================================ FILE: src/components/GlobalHeader/RightContent.js ================================================ import React, { PureComponent } from 'react'; import { FormattedMessage, formatMessage } from 'umi/locale'; import { Spin, Tag, Menu, Icon, Dropdown, Avatar, Tooltip } from 'antd'; import moment from 'moment'; import groupBy from 'lodash/groupBy'; import NoticeIcon from '../NoticeIcon'; import SelectLang from '../SelectLang'; import styles from './index.less'; export default class GlobalHeaderRight extends PureComponent { getNoticeData() { const { notices = [] } = this.props; if (notices.length === 0) { return {}; } const newNotices = notices.map(notice => { const newNotice = { ...notice }; if (newNotice.datetime) { newNotice.datetime = moment(notice.datetime).fromNow(); } if (newNotice.id) { newNotice.key = newNotice.id; } if (newNotice.extra && newNotice.status) { const color = { todo: '', processing: 'blue', urgent: 'red', doing: 'gold', }[newNotice.status]; newNotice.extra = ( {newNotice.extra} ); } return newNotice; }); return groupBy(newNotices, 'type'); } render() { const { currentUser, fetchingNotices, onNoticeVisibleChange, onMenuClick, onNoticeClear, theme, } = this.props; const menu = ( ); const noticeData = this.getNoticeData(); let className = styles.right; if (theme === 'dark') { className = `${styles.right} ${styles.dark}`; } return (
{ console.log(item, tabProps); // eslint-disable-line }} locale={{ emptyText: formatMessage({ id: 'component.noticeIcon.empty' }), clear: formatMessage({ id: 'component.noticeIcon.clear' }), }} onClear={onNoticeClear} onPopupVisibleChange={onNoticeVisibleChange} loading={fetchingNotices} popupAlign={{ offset: [20, -16] }} > {/* */} {currentUser.name ? ( {currentUser.name} ) : ( )}
); } } ================================================ FILE: src/components/GlobalHeader/index.js ================================================ import React, { PureComponent } from 'react'; import { Icon } from 'antd'; import Link from 'umi/link'; import Debounce from 'lodash-decorators/debounce'; import styles from './index.less'; import RightContent from './RightContent'; export default class GlobalHeader extends PureComponent { componentWillUnmount() { this.triggerResizeEvent.cancel(); } /* eslint-disable*/ @Debounce(600) triggerResizeEvent() { // eslint-disable-line const event = document.createEvent('HTMLEvents'); event.initEvent('resize', true, false); window.dispatchEvent(event); } toggle = () => { const { collapsed, onCollapse } = this.props; onCollapse(!collapsed); this.triggerResizeEvent(); }; render() { const { collapsed, isMobile, logo } = this.props; return (
{isMobile && ( logo )}
); } } ================================================ FILE: src/components/GlobalHeader/index.less ================================================ @import '~antd/lib/style/themes/default.less'; @pro-header-hover-bg: rgba(0, 0, 0, 0.025); .header { height: 64px; padding: 0 12px 0 0; background: #fff; box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08); position: relative; } .logo { height: 64px; line-height: 58px; vertical-align: top; display: inline-block; padding: 0 0 0 24px; cursor: pointer; font-size: 20px; img { display: inline-block; vertical-align: middle; } } .menu { :global(.anticon) { margin-right: 8px; } :global(.ant-dropdown-menu-item) { width: 160px; } } i.trigger { font-size: 20px; height: 64px; cursor: pointer; transition: all 0.3s, padding 0s; padding: 22px 24px; &:hover { background: @pro-header-hover-bg; } } .right { float: right; height: 100%; overflow: hidden; .action { cursor: pointer; padding: 0 12px; display: inline-block; transition: all 0.3s; height: 100%; > i { vertical-align: middle; color: @text-color; } &:hover { background: @pro-header-hover-bg; } :global(&.ant-popover-open) { background: @pro-header-hover-bg; } } .search { padding: 0 12px; &:hover { background: transparent; } } .account { .avatar { margin: 20px 8px 20px 0; color: @primary-color; background: rgba(255, 255, 255, 0.85); vertical-align: middle; } } } .dark { height: 64px; .action { color: rgba(255, 255, 255, 0.85); > i { color: rgba(255, 255, 255, 0.85); } &:hover, &:global(.ant-popover-open) { background: @primary-color; } :global(.ant-badge) { color: rgba(255, 255, 255, 0.85); } } } @media only screen and (max-width: @screen-md) { .header { :global(.ant-divider-vertical) { vertical-align: unset; } .name { display: none; } i.trigger { padding: 22px 12px; } .logo { padding-left: 12px; padding-right: 12px; position: relative; } .right { position: absolute; right: 12px; top: 0; background: #fff; .account { .avatar { margin-right: 0; } } } } } ================================================ FILE: src/components/Login/LoginItem.js ================================================ import React, { Component } from 'react'; import { Form, Input, Button, Row, Col } from 'antd'; import omit from 'omit.js'; import styles from './index.less'; import ItemMap from './map'; import LoginContext from './loginContext'; const FormItem = Form.Item; class WrapFormItem extends Component { static defaultProps = { buttonText: '获取验证码', }; constructor(props) { super(props); this.state = { count: 0, }; } componentDidMount() { const { updateActive, name } = this.props; if (updateActive) { updateActive(name); } } componentWillUnmount() { clearInterval(this.interval); } onGetCaptcha = () => { const { onGetCaptcha } = this.props; const result = onGetCaptcha ? onGetCaptcha() : null; if (result === false) { return; } if (result instanceof Promise) { result.then(this.runGetCaptchaCountDown); } else { this.runGetCaptchaCountDown(); } }; getFormItemOptions = ({ onChange, defaultValue, customprops, rules }) => { const options = { rules: rules || customprops.rules, }; if (onChange) { options.onChange = onChange; } if (defaultValue) { options.initialValue = defaultValue; } return options; }; runGetCaptchaCountDown = () => { const { countDown } = this.props; let count = countDown || 59; this.setState({ count }); this.interval = setInterval(() => { count -= 1; this.setState({ count }); if (count === 0) { clearInterval(this.interval); } }, 1000); }; render() { const { count } = this.state; const { form: { getFieldDecorator }, } = this.props; // 这么写是为了防止restProps中 带入 onChange, defaultValue, rules props const { onChange, customprops, defaultValue, rules, name, buttonText, updateActive, type, ...restProps } = this.props; // get getFieldDecorator props const options = this.getFormItemOptions(this.props); const otherProps = restProps || {}; if (type === 'Captcha') { const inputProps = omit(otherProps, ['onGetCaptcha', 'countDown']); return ( {getFieldDecorator(name, options)()} ); } return ( {getFieldDecorator(name, options)()} ); } } const LoginItem = {}; Object.keys(ItemMap).forEach(key => { const item = ItemMap[key]; LoginItem[key] = props => ( {context => ( )} ); }); export default LoginItem; ================================================ FILE: src/components/Login/LoginSubmit.js ================================================ import React from 'react'; import classNames from 'classnames'; import { Button, Form } from 'antd'; import styles from './index.less'; const FormItem = Form.Item; const LoginSubmit = ({ className, ...rest }) => { const clsString = classNames(styles.submit, className); return (
); const extra = (
状态
待审批
订单金额
¥ 568.08
); const breadcrumbList = [{ title: '一级菜单', href: '/', }, { title: '二级菜单', href: '/', }, { title: '三级菜单', }]; const tabList = [{ key: 'detail', tab: '详情', }, { key: 'rule', tab: '规则', }]; function onTabChange(key) { console.log(key); } ReactDOM.render(
} action={action} content={description} extraContent={extra} breadcrumbList={breadcrumbList} tabList={tabList} tabActiveKey="detail" onTabChange={onTabChange} />
, mountNode); ```` ================================================ FILE: src/components/PageHeader/demo/structure.md ================================================ --- order: 0 title: Structure --- 基本结构,具备响应式布局功能,主要断点为 768px 和 576px,拖动窗口改变大小试试看。 ````jsx import PageHeader from 'ant-design-pro/lib/PageHeader'; const breadcrumbList = [{ title: '面包屑', }]; const tabList = [{ key: '1', tab: '页签一', }, { key: '2', tab: '页签二', }, { key: '3', tab: '页签三', }]; ReactDOM.render(
Title
} logo={
logo
} action={
action
} content={
content
} extraContent={
extraContent
} breadcrumbList={breadcrumbList} tabList={tabList} tabActiveKey="1" />
, mountNode); ```` ================================================ FILE: src/components/PageHeader/index.d.ts ================================================ import * as React from 'react'; export interface IPageHeaderProps { title?: React.ReactNode | string; logo?: React.ReactNode | string; action?: React.ReactNode | string; content?: React.ReactNode; extraContent?: React.ReactNode; routes?: any[]; params?: any; breadcrumbList?: Array<{ title: React.ReactNode; href?: string }>; tabList?: Array<{ key: string; tab: React.ReactNode }>; tabActiveKey?: string; tabDefaultActiveKey?: string; onTabChange?: (key: string) => void; tabBarExtraContent?: React.ReactNode; linkElement?: React.ReactNode; style?: React.CSSProperties; home?: React.ReactNode; wide?: boolean; hiddenBreadcrumb?:boolean; } export default class PageHeader extends React.Component {} ================================================ FILE: src/components/PageHeader/index.js ================================================ import React, { PureComponent } from 'react'; import { Tabs, Skeleton } from 'antd'; import classNames from 'classnames'; import styles from './index.less'; import BreadcrumbView from './breadcrumb'; const { TabPane } = Tabs; export default class PageHeader extends PureComponent { onChange = key => { const { onTabChange } = this.props; if (onTabChange) { onTabChange(key); } }; render() { const { title, logo, action, content, extraContent, tabList, className, tabActiveKey, tabDefaultActiveKey, tabBarExtraContent, loading = false, wide = false, hiddenBreadcrumb = false, } = this.props; const clsString = classNames(styles.pageHeader, className); const activeKeyProps = {}; if (tabDefaultActiveKey !== undefined) { activeKeyProps.defaultActiveKey = tabDefaultActiveKey; } if (tabActiveKey !== undefined) { activeKeyProps.activeKey = tabActiveKey; } return (
{hiddenBreadcrumb ? null : }
{logo &&
{logo}
}
{title &&

{title}

} {action &&
{action}
}
{content &&
{content}
} {extraContent &&
{extraContent}
}
{tabList && tabList.length ? ( {tabList.map(item => ( ))} ) : null}
); } } ================================================ FILE: src/components/PageHeader/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .pageHeader { background: @component-background; padding: 16px 32px 0 32px; border-bottom: @border-width-base @border-style-base @border-color-split; .wide { max-width: 1200px; margin: auto; } .detail { display: flex; } .row { display: flex; width: 100%; } .breadcrumb { margin-bottom: 16px; } .tabs { margin: 0 0 0 -8px; :global { .ant-tabs-bar { border-bottom: @border-width-base @border-style-base @border-color-split; } } } .logo { flex: 0 1 auto; margin-right: 16px; padding-top: 1px; > img { width: 28px; height: 28px; border-radius: @border-radius-base; display: block; } } .title { font-size: 20px; font-weight: 500; color: @heading-color; } .action { margin-left: 56px; min-width: 266px; :global { .ant-btn-group:not(:last-child), .ant-btn:not(:last-child) { margin-right: 8px; } .ant-btn-group > .ant-btn { margin-right: 0; } } } .title, .content { flex: auto; } .action, .extraContent, .main { flex: 0 1 auto; } .main { width: 100%; } .title, .action { margin-bottom: 16px; } .logo, .content, .extraContent { margin-bottom: 16px; } .action, .extraContent { text-align: right; } .extraContent { margin-left: 88px; min-width: 242px; } } @media screen and (max-width: @screen-xl) { .pageHeader { .extraContent { margin-left: 44px; } } } @media screen and (max-width: @screen-lg) { .pageHeader { .extraContent { margin-left: 20px; } } } @media screen and (max-width: @screen-md) { .pageHeader { .row { display: block; } .action, .extraContent { margin-left: 0; text-align: left; } } } @media screen and (max-width: @screen-sm) { .pageHeader { .detail { display: block; } } } @media screen and (max-width: @screen-xs) { .pageHeader { .action { :global { .ant-btn-group, .ant-btn { display: block; margin-bottom: 8px; } .ant-btn-group > .ant-btn { display: inline-block; margin-bottom: 0; } } } } } ================================================ FILE: src/components/PageHeader/index.md ================================================ --- title: en-US: PageHeader zh-CN: PageHeader subtitle: 页头 cols: 1 order: 11 --- 页头用来声明页面的主题,包含了用户所关注的最重要的信息,使用户可以快速理解当前页面是什么以及它的功能。 ## API | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | title | title 区域 | ReactNode | - | | logo | logo区域 | ReactNode | - | | action | 操作区,位于 title 行的行尾 | ReactNode | - | | home | 默认的主页说明文字 | ReactNode | - | | content | 内容区 | ReactNode | - | | extraContent | 额外内容区,位于content的右侧 | ReactNode | - | | breadcrumbList | 面包屑数据,配置了此属性时 `routes` `params` `location` `breadcrumbNameMap` 无效 | array<{title: ReactNode, href?: string}> | - | | hiddenBreadcrumb |隐藏面包屑 | boolean | false | | routes | 面包屑相关属性,router 的路由栈信息 | object[] | - | | params | 面包屑相关属性,路由的参数 | object | - | | location | 面包屑相关属性,当前的路由信息 | object | - | | breadcrumbNameMap | 面包屑相关属性,路由的地址-名称映射表 | object | - | | tabList | tab 标题列表 | array<{key: string, tab: ReactNode}> | - | | tabActiveKey | 当前高亮的 tab 项 | string | - | | tabDefaultActiveKey | 默认高亮的 tab 项 | string | 第一项 | | wide | 是否定宽 | boolean | false | | onTabChange | 切换面板的回调 | (key) => void | - | | itemRender | 自定义节点方法 | (menuItem) => ReactNode | - | | linkElement | 定义链接的元素,默认为 `a`,可传入 react-router 的 Link | string\|ReactElement | - | > 面包屑的配置方式有三种,一是直接配置 `breadcrumbList`,二是结合 `react-router@2` `react-router@3`,配置 `routes` 及 `params` 实现,类似 [面包屑 Demo](https://ant.design/components/breadcrumb-cn/#components-breadcrumb-demo-router),三是结合 `react-router@4`,配置 `location` `breadcrumbNameMap`,优先级依次递减,脚手架中使用最后一种。 对于后两种用法,你也可以将 `routes` `params` 及 `location` `breadcrumbNameMap` 放到 context 中,组件会自动获取。 ================================================ FILE: src/components/PageHeader/index.test.js ================================================ import { getBreadcrumb } from './breadcrumb'; import { urlToList } from '../_utils/pathTools'; const routerData = { '/dashboard/analysis': { name: '分析页', }, '/userinfo': { name: '用户列表', }, '/userinfo/:id': { name: '用户信息', }, '/userinfo/:id/addr': { name: '收货订单', }, }; describe('test getBreadcrumb', () => { it('Simple url', () => { expect(getBreadcrumb(routerData, '/dashboard/analysis').name).toEqual('分析页'); }); it('Parameters url', () => { expect(getBreadcrumb(routerData, '/userinfo/2144').name).toEqual('用户信息'); }); it('The middle parameter url', () => { expect(getBreadcrumb(routerData, '/userinfo/2144/addr').name).toEqual('收货订单'); }); it('Loop through the parameters', () => { const urlNameList = urlToList('/userinfo/2144/addr').map( url => getBreadcrumb(routerData, url).name ); expect(urlNameList).toEqual(['用户列表', '用户信息', '收货订单']); }); it('a path', () => { const urlNameList = urlToList('/userinfo').map(url => getBreadcrumb(routerData, url).name); expect(urlNameList).toEqual(['用户列表']); }); it('Secondary path', () => { const urlNameList = urlToList('/userinfo/2144').map(url => getBreadcrumb(routerData, url).name); expect(urlNameList).toEqual(['用户列表', '用户信息']); }); }); ================================================ FILE: src/components/PageHeaderWrapper/GridContent.js ================================================ import React, { PureComponent } from 'react'; import { connect } from 'dva'; import styles from './GridContent.less'; class GridContent extends PureComponent { render() { const { contentWidth, children } = this.props; let className = `${styles.main}`; if (contentWidth === 'Fixed') { className = `${styles.main} ${styles.wide}`; } return
{children}
; } } export default connect(({ setting }) => ({ contentWidth: setting.contentWidth, }))(GridContent); ================================================ FILE: src/components/PageHeaderWrapper/GridContent.less ================================================ .main { width: 100%; height: 100%; min-height: 100%; transition: 0.3s; &.wide { max-width: 1200px; margin: 0 auto; } } ================================================ FILE: src/components/PageHeaderWrapper/index.js ================================================ import React from 'react'; import { FormattedMessage } from 'umi/locale'; import Link from 'umi/link'; import PageHeader from '@/components/PageHeader'; import { connect } from 'dva'; import GridContent from './GridContent'; import styles from './index.less'; import MenuContext from '@/layouts/MenuContext'; const PageHeaderWrapper = ({ children, contentWidth, wrapperClassName, top, ...restProps }) => (
{top} {value => ( } {...value} key="pageheader" {...restProps} linkElement={Link} itemRender={item => { if (item.locale) { return ; } return item.name; }} /> )} {children ? (
{children}
) : null}
); export default connect(({ setting }) => ({ contentWidth: setting.contentWidth, }))(PageHeaderWrapper); ================================================ FILE: src/components/PageHeaderWrapper/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .content { margin: 24px 24px 0; } @media screen and (max-width: @screen-sm) { .content { margin: 24px 0 0; } } ================================================ FILE: src/components/PageLoading/index.js ================================================ import React from 'react'; import { Spin } from 'antd'; // loading components from code split // https://umijs.org/plugin/umi-plugin-react.html#dynamicimport export default () => (
); ================================================ FILE: src/components/Result/demo/classic.md ================================================ --- order: 1 title: Classic --- 典型结果页面。 ````jsx import Result from 'ant-design-pro/lib/Result'; import { Button, Row, Col, Icon, Steps } from 'antd'; const { Step } = Steps; const desc1 = (
曲丽丽
2016-12-12 12:32
); const desc2 = (
周毛毛
); const extra = (
项目名称
项目 ID: 23421 负责人: 曲丽丽 生效时间: 2016-12-12 ~ 2017-12-12
); const actions = (
); ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Result/demo/error.md ================================================ --- order: 2 title: Failed --- 提交失败。 ````jsx import Result from 'ant-design-pro/lib/Result'; import { Button, Icon } from 'antd'; const extra = (
您提交的内容有如下错误:
您的账户已被冻结 立即解冻
您的账户还不具备申请资格 立即升级
); const actions = ; ReactDOM.render( , mountNode); ```` ================================================ FILE: src/components/Result/demo/structure.md ================================================ --- order: 0 title: Structure --- 结构包含 `处理结果`,`补充信息` 以及 `操作建议` 三个部分,其中 `处理结果` 由 `提示图标`,`标题` 和 `结果描述` 组成。 ````jsx import Result from 'ant-design-pro/lib/Result'; ReactDOM.render( 标题
} description={
结果描述
} extra="其他补充信息,自带灰底效果" actions={
操作建议,一般放置按钮组
} /> , mountNode); ```` ================================================ FILE: src/components/Result/index.d.ts ================================================ import * as React from 'react'; export interface IResultProps { type: 'success' | 'error'; title: React.ReactNode; description?: React.ReactNode; extra?: React.ReactNode; actions?: React.ReactNode; style?: React.CSSProperties; } export default class Result extends React.Component {} ================================================ FILE: src/components/Result/index.js ================================================ import React from 'react'; import classNames from 'classnames'; import { Icon } from 'antd'; import styles from './index.less'; export default function Result({ className, type, title, description, extra, actions, ...restProps }) { const iconMap = { error: , success: , }; const clsString = classNames(styles.result, className); return (
{iconMap[type]}
{title}
{description &&
{description}
} {extra &&
{extra}
} {actions &&
{actions}
}
); } ================================================ FILE: src/components/Result/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .result { text-align: center; width: 72%; margin: 0 auto; @media screen and (max-width: @screen-xs) { width: 100%; } .icon { font-size: 72px; line-height: 72px; margin-bottom: 24px; & > .success { color: @success-color; } & > .error { color: @error-color; } } .title { font-size: 24px; color: @heading-color; font-weight: 500; line-height: 32px; margin-bottom: 16px; } .description { font-size: 14px; line-height: 22px; color: @text-color-secondary; margin-bottom: 24px; } .extra { background: #fafafa; padding: 24px 40px; border-radius: @border-radius-sm; text-align: left; @media screen and (max-width: @screen-xs) { padding: 18px 20px; } } .actions { margin-top: 32px; button:not(:last-child) { margin-right: 8px; } } } ================================================ FILE: src/components/Result/index.md ================================================ --- title: en-US: Result zh-CN: Result subtitle: 处理结果 cols: 1 order: 12 --- 结果页用于对用户进行的一系列任务处理结果进行反馈。 ## API | 参数 | 说明 | 类型 | 默认值 | |----------|------------------------------------------|-------------|-------| | type | 类型,不同类型自带对应的图标 | Enum {'success', 'error'} | - | | title | 标题 | ReactNode | - | | description | 结果描述 | ReactNode | - | | extra | 补充信息,有默认的灰色背景 | ReactNode | - | | actions | 操作建议,推荐放置跳转链接,按钮组等 | ReactNode | - | ================================================ FILE: src/components/SelectLang/index.js ================================================ import React, { PureComponent } from 'react'; import { FormattedMessage, setLocale, getLocale } from 'umi/locale'; import { Menu, Icon, Dropdown } from 'antd'; import classNames from 'classnames'; import styles from './index.less'; export default class SelectLang extends PureComponent { changLang = ({ key }) => { setLocale(key); }; render() { const { className } = this.props; const selectedLang = getLocale(); const langMenu = ( ); return ( ); } } ================================================ FILE: src/components/SelectLang/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .menu { :global(.anticon) { margin-right: 8px; } :global(.ant-dropdown-menu-item) { width: 160px; } } .dropDown { cursor: pointer; } ================================================ FILE: src/components/SettingDrawer/BlockChecbox.js ================================================ import React from 'react'; import { Tooltip, Icon } from 'antd'; import style from './index.less'; const BlockChecbox = ({ value, onChange, list }) => (
{list.map(item => (
onChange(item.key)}> {item.key}
))}
); export default BlockChecbox; ================================================ FILE: src/components/SettingDrawer/ThemeColor.js ================================================ import React from 'react'; import { Tooltip, Icon } from 'antd'; import { formatMessage } from 'umi/locale'; import styles from './ThemeColor.less'; const Tag = ({ color, check, ...rest }) => (
{check ? : ''}
); const ThemeColor = ({ colors, title, value, onChange }) => { let colorList = colors; if (!colors) { colorList = [ { key: 'dust', color: '#F5222D', }, { key: 'volcano', color: '#FA541C', }, { key: 'sunset', color: '#FAAD14', }, { key: 'cyan', color: '#13C2C2', }, { key: 'green', color: '#52C41A', }, { key: 'daybreak', color: '#1890FF', }, { key: 'geekblue', color: '#2F54EB', }, { key: 'purple', color: '#722ED1', }, ]; } return (

{title}

{colorList.map(({ key, color }) => ( onChange && onChange(color)} /> ))}
); }; export default ThemeColor; ================================================ FILE: src/components/SettingDrawer/ThemeColor.less ================================================ .themeColor { overflow: hidden; margin-top: 24px; .title { font-size: 14px; color: rgba(0, 0, 0, 0.65); line-height: 22px; margin-bottom: 12px; } .colorBlock { width: 20px; height: 20px; border-radius: 2px; float: left; cursor: pointer; margin-right: 8px; text-align: center; color: #fff; font-weight: bold; } } ================================================ FILE: src/components/SettingDrawer/index.js ================================================ import React, { PureComponent } from 'react'; import { Select, message, Drawer, List, Switch, Divider, Icon, Button, Alert, Tooltip } from 'antd'; import { formatMessage } from 'umi/locale'; import { CopyToClipboard } from 'react-copy-to-clipboard'; import { connect } from 'dva'; import omit from 'omit.js'; import styles from './index.less'; import ThemeColor from './ThemeColor'; import BlockChecbox from './BlockChecbox'; const { Option } = Select; const Body = ({ children, title, style }) => (

{title}

{children}
); @connect(({ setting }) => ({ setting })) class SettingDrawer extends PureComponent { state = { collapse: false, }; getLayoutSetting = () => { const { setting: { contentWidth, fixedHeader, layout, autoHideHeader, fixSiderbar }, } = this.props; return [ { title: formatMessage({ id: 'app.setting.content-width' }), action: ( ), }, { title: formatMessage({ id: 'app.setting.fixedheader' }), action: ( this.changeSetting('fixedHeader', checked)} /> ), }, { title: formatMessage({ id: 'app.setting.hideheader' }), disabled: !fixedHeader, disabledReason: formatMessage({ id: 'app.setting.hideheader.hint' }), action: ( this.changeSetting('autoHideHeader', checked)} /> ), }, { title: formatMessage({ id: 'app.setting.fixedsidebar' }), disabled: layout === 'topmenu', disabledReason: formatMessage({ id: 'app.setting.fixedsidebar.hint' }), action: ( this.changeSetting('fixSiderbar', checked)} /> ), }, ]; }; changeSetting = (key, value) => { const { setting } = this.props; const nextState = { ...setting }; nextState[key] = value; if (key === 'layout') { nextState.contentWidth = value === 'topmenu' ? 'Fixed' : 'Fluid'; } else if (key === 'fixedHeader' && !value) { nextState.autoHideHeader = false; } this.setState(nextState, () => { const { dispatch } = this.props; dispatch({ type: 'setting/changeSetting', payload: this.state, }); }); }; togglerContent = () => { const { collapse } = this.state; this.setState({ collapse: !collapse }); }; renderLayoutSettingItem = item => { const action = React.cloneElement(item.action, { disabled: item.disabled, }); return ( {item.title} ); }; render() { const { setting } = this.props; const { navTheme, primaryColor, layout, colorWeak } = setting; const { collapse } = this.state; return ( } onHandleClick={this.togglerContent} style={{ zIndex: 999, }} >
this.changeSetting('navTheme', value)} /> this.changeSetting('primaryColor', color)} /> this.changeSetting('layout', value)} /> this.changeSetting('colorWeak', checked)} />, ]} > {formatMessage({ id: 'app.setting.weakmode' })} message.success(formatMessage({ id: 'app.setting.copyinfo' }))} > {formatMessage({ id: 'app.setting.production.hint' })}{' '} src/defaultSettings.js
} />
); } } export default SettingDrawer; ================================================ FILE: src/components/SettingDrawer/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .content { min-height: 100%; background: #fff; position: relative; } .blockChecbox { display: flex; .item { margin-right: 16px; position: relative; // box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); border-radius: @border-radius-base; cursor: pointer; img { width: 48px; } } .selectIcon { position: absolute; top: 0; right: 0; width: 100%; padding-top: 15px; padding-left: 24px; height: 100%; color: @primary-color; font-size: 14px; font-weight: bold; } } .color_block { width: 38px; height: 22px; margin: 4px; border-radius: 4px; cursor: pointer; margin-right: 12px; display: inline-block; vertical-align: middle; } .title { font-size: 14px; color: @heading-color; line-height: 22px; margin-bottom: 12px; } .handle { position: absolute; top: 240px; background: @primary-color; width: 48px; height: 48px; right: 300px; display: flex; justify-content: center; align-items: center; cursor: pointer; pointer-events: auto; z-index: 0; text-align: center; font-size: 16px; border-radius: 4px 0 0 4px; } .productionHint { font-size: 12px; margin-top: 16px; } ================================================ FILE: src/components/SiderMenu/BaseMenu.js ================================================ import React, { PureComponent } from 'react'; import { Menu, Icon } from 'antd'; import Link from 'umi/link'; import isEqual from 'lodash/isEqual'; import memoizeOne from 'memoize-one'; import { formatMessage } from 'umi/locale'; import pathToRegexp from 'path-to-regexp'; import { urlToList } from '../_utils/pathTools'; import styles from './index.less'; const { SubMenu } = Menu; // Allow menu.js config icon as string or ReactNode // icon: 'setting', // icon: 'http://demo.com/icon.png', // icon: , const getIcon = icon => { if (typeof icon === 'string' && icon.indexOf('http') === 0) { return icon; } if (typeof icon === 'string') { return ; } return icon; }; export const getMenuMatches = memoizeOne( (flatMenuKeys, path) => flatMenuKeys.filter(item => item && pathToRegexp(item).test(path)), isEqual ); export default class BaseMenu extends PureComponent { constructor(props) { super(props); this.getSelectedMenuKeys = memoizeOne(this.getSelectedMenuKeys, isEqual); this.flatMenuKeys = this.getFlatMenuKeys(props.menuData); } /** * Recursively flatten the data * [{path:string},{path:string}] => {path,path2} * @param menus */ getFlatMenuKeys(menus) { let keys = []; menus.forEach(item => { if (item.children) { keys = keys.concat(this.getFlatMenuKeys(item.children)); } keys.push(item.path); }); return keys; } /** * 获得菜单子节点 * @memberof SiderMenu */ getNavMenuItems = (menusData, parent) => { if (!menusData) { return []; } return menusData .filter(item => item.name && !item.hideInMenu) .map(item => { // make dom const ItemDom = this.getSubMenuOrItem(item, parent); return this.checkPermissionItem(item.authority, ItemDom); }) .filter(item => item); }; // Get the currently selected menu getSelectedMenuKeys = pathname => urlToList(pathname).map(itemPath => getMenuMatches(this.flatMenuKeys, itemPath).pop()); /** * get SubMenu or Item */ getSubMenuOrItem = item => { // doc: add hideChildrenInMenu if (item.children && !item.hideChildrenInMenu && item.children.some(child => child.name)) { const name = item.locale ? formatMessage({ id: item.locale }) : item.name; return ( {getIcon(item.icon)} {name} ) : ( name ) } key={item.path} > {this.getNavMenuItems(item.children)} ); } return {this.getMenuItemPath(item)}; }; /** * 判断是否是http链接.返回 Link 或 a * Judge whether it is http link.return a or Link * @memberof SiderMenu */ getMenuItemPath = item => { const name = item.locale ? formatMessage({ id: item.locale }) : item.name; const itemPath = this.conversionPath(item.path); const icon = getIcon(item.icon); const { target } = item; // Is it a http link if (/^https?:\/\//.test(itemPath)) { return ( {icon} {name} ); } const { location, isMobile, onCollapse } = this.props; return ( { onCollapse(true); } : undefined } > {icon} {name} ); }; // permission to check checkPermissionItem = (authority, ItemDom) => { const { Authorized } = this.props; if (Authorized && Authorized.check) { const { check } = Authorized; return check(authority, ItemDom); } return ItemDom; }; conversionPath = path => { if (path && path.indexOf('http') === 0) { return path; } return `/${path || ''}`.replace(/\/+/g, '/'); }; render() { const { openKeys, theme, mode, location: { pathname }, } = this.props; // if pathname can't match, use the nearest parent's key let selectedKeys = this.getSelectedMenuKeys(pathname); if (!selectedKeys.length && openKeys) { selectedKeys = [openKeys[openKeys.length - 1]]; } let props = {}; if (openKeys) { props = { openKeys, }; } const { handleOpenChange, style, menuData } = this.props; return ( {this.getNavMenuItems(menuData)} ); } } ================================================ FILE: src/components/SiderMenu/SiderMenu.js ================================================ import React, { PureComponent } from 'react'; import { Layout } from 'antd'; import pathToRegexp from 'path-to-regexp'; import classNames from 'classnames'; import Link from 'umi/link'; import styles from './index.less'; import BaseMenu, { getMenuMatches } from './BaseMenu'; import { urlToList } from '../_utils/pathTools'; const { Sider } = Layout; /** * 获得菜单子节点 * @memberof SiderMenu */ const getDefaultCollapsedSubMenus = props => { const { location: { pathname }, flatMenuKeys, } = props; return urlToList(pathname) .map(item => getMenuMatches(flatMenuKeys, item)[0]) .filter(item => item); }; /** * Recursively flatten the data * [{path:string},{path:string}] => {path,path2} * @param menu */ export const getFlatMenuKeys = menu => menu.reduce((keys, item) => { keys.push(item.path); if (item.children) { return keys.concat(getFlatMenuKeys(item.children)); } return keys; }, []); /** * Find all matched menu keys based on paths * @param flatMenuKeys: [/abc, /abc/:id, /abc/:id/info] * @param paths: [/abc, /abc/11, /abc/11/info] */ export const getMenuMatchKeys = (flatMenuKeys, paths) => paths.reduce( (matchKeys, path) => matchKeys.concat(flatMenuKeys.filter(item => pathToRegexp(item).test(path))), [] ); export default class SiderMenu extends PureComponent { constructor(props) { super(props); this.flatMenuKeys = getFlatMenuKeys(props.menuData); this.state = { openKeys: getDefaultCollapsedSubMenus(props), }; } static getDerivedStateFromProps(props, state) { const { pathname } = state; if (props.location.pathname !== pathname) { return { pathname: props.location.pathname, openKeys: getDefaultCollapsedSubMenus(props), }; } return null; } isMainMenu = key => { const { menuData } = this.props; return menuData.some(item => { if (key) { return item.key === key || item.path === key; } return false; }); }; handleOpenChange = openKeys => { const moreThanOne = openKeys.filter(openKey => this.isMainMenu(openKey)).length > 1; this.setState({ openKeys: moreThanOne ? [openKeys.pop()] : [...openKeys], }); }; render() { const { logo, collapsed, onCollapse, fixSiderbar, theme } = this.props; const { openKeys } = this.state; const defaultProps = collapsed ? {} : { openKeys }; const siderClassName = classNames(styles.sider, { [styles.fixSiderbar]: fixSiderbar, [styles.light]: theme === 'light', }); return ( ); } } ================================================ FILE: src/components/SiderMenu/SiderMenu.test.js ================================================ import { urlToList } from '../_utils/pathTools'; import { getFlatMenuKeys, getMenuMatchKeys } from './SiderMenu'; const menu = [ { path: '/dashboard', children: [ { path: '/dashboard/name', }, ], }, { path: '/userinfo', children: [ { path: '/userinfo/:id', children: [ { path: '/userinfo/:id/info', }, ], }, ], }, ]; const flatMenuKeys = getFlatMenuKeys(menu); describe('test convert nested menu to flat menu', () => { it('simple menu', () => { expect(flatMenuKeys).toEqual([ '/dashboard', '/dashboard/name', '/userinfo', '/userinfo/:id', '/userinfo/:id/info', ]); }); }); describe('test menu match', () => { it('simple path', () => { expect(getMenuMatchKeys(flatMenuKeys, urlToList('/dashboard'))).toEqual(['/dashboard']); }); it('error path', () => { expect(getMenuMatchKeys(flatMenuKeys, urlToList('/dashboardname'))).toEqual([]); }); it('Secondary path', () => { expect(getMenuMatchKeys(flatMenuKeys, urlToList('/dashboard/name'))).toEqual([ '/dashboard', '/dashboard/name', ]); }); it('Parameter path', () => { expect(getMenuMatchKeys(flatMenuKeys, urlToList('/userinfo/2144'))).toEqual([ '/userinfo', '/userinfo/:id', ]); }); it('three parameter path', () => { expect(getMenuMatchKeys(flatMenuKeys, urlToList('/userinfo/2144/info'))).toEqual([ '/userinfo', '/userinfo/:id', '/userinfo/:id/info', ]); }); }); ================================================ FILE: src/components/SiderMenu/index.js ================================================ import React from 'react'; import { Drawer } from 'antd'; import SiderMenu from './SiderMenu'; /** * Recursively flatten the data * [{path:string},{path:string}] => {path,path2} * @param menus */ const getFlatMenuKeys = menuData => { let keys = []; menuData.forEach(item => { if (item.children) { keys = keys.concat(getFlatMenuKeys(item.children)); } keys.push(item.path); }); return keys; }; const SiderMenuWrapper = props => { const { isMobile, menuData, collapsed, onCollapse } = props; return isMobile ? ( onCollapse(true)} style={{ padding: 0, height: '100vh', }} > ) : ( ); }; export default SiderMenuWrapper; ================================================ FILE: src/components/SiderMenu/index.less ================================================ @import '~antd/lib/style/themes/default.less'; @nav-header-height: 64px; .logo { height: @nav-header-height; position: relative; line-height: @nav-header-height; padding-left: (@menu-collapsed-width - 32px) / 2; transition: all 0.3s; background: #002140; overflow: hidden; img { display: inline-block; vertical-align: middle; height: 32px; } h1 { color: white; display: inline-block; vertical-align: middle; font-size: 20px; margin: 0 0 0 12px; font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-weight: 600; } } .sider { min-height: 100vh; box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35); position: relative; z-index: 9; &.fixSiderbar { position: fixed; top: 0; left: 0; :global(.ant-menu-root) { overflow-y: auto; height: ~'calc(100vh - @{nav-header-height})'; } } &.light { box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05); background-color: white; .logo { background: white; box-shadow: 1px 1px 0 0 @border-color-split; h1 { color: @primary-color; } } :global(.ant-menu-light) { border-right-color: transparent; } } } .icon { width: 14px; margin-right: 10px; } :global { .top-nav-menu li.ant-menu-item { height: @nav-header-height; line-height: @nav-header-height; } .drawer .drawer-content { background: #001529; } .ant-menu-inline-collapsed { & > .ant-menu-item .sider-menu-item-img + span, & > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .sider-menu-item-img + span, & > .ant-menu-submenu > .ant-menu-submenu-title .sider-menu-item-img + span { max-width: 0; display: inline-block; opacity: 0; } } .ant-menu-item .sider-menu-item-img + span, .ant-menu-submenu-title .sider-menu-item-img + span { transition: opacity 0.3s @ease-in-out, width 0.3s @ease-in-out; opacity: 1; } } ================================================ FILE: src/components/StandardTable/index.js ================================================ import React, { PureComponent, Fragment } from 'react'; import { Table, Alert } from 'antd'; import styles from './index.less'; function initTotalList(columns) { const totalList = []; columns.forEach(column => { if (column.needTotal) { totalList.push({ ...column, total: 0 }); } }); return totalList; } class StandardTable extends PureComponent { constructor(props) { super(props); const { columns } = props; const needTotalList = initTotalList(columns); this.state = { selectedRowKeys: [], needTotalList, }; } static getDerivedStateFromProps(nextProps) { // clean state if (nextProps.selectedRows.length === 0) { const needTotalList = initTotalList(nextProps.columns); return { selectedRowKeys: [], needTotalList, }; } return null; } handleRowSelectChange = (selectedRowKeys, selectedRows) => { let { needTotalList } = this.state; needTotalList = needTotalList.map(item => ({ ...item, total: selectedRows.reduce((sum, val) => sum + parseFloat(val[item.dataIndex], 10), 0), })); const { onSelectRow } = this.props; if (onSelectRow) { onSelectRow(selectedRows); } this.setState({ selectedRowKeys, needTotalList }); }; handleTableChange = (pagination, filters, sorter) => { const { onChange } = this.props; if (onChange) { onChange(pagination, filters, sorter); } }; cleanSelectedKeys = () => { this.handleRowSelectChange([], []); }; render() { const { selectedRowKeys, needTotalList } = this.state; const { data: { list, pagination }, loading, columns, rowKey, } = this.props; const paginationProps = { showSizeChanger: true, showQuickJumper: true, ...pagination, }; const rowSelection = { selectedRowKeys, onChange: this.handleRowSelectChange, getCheckboxProps: record => ({ disabled: record.disabled, }), }; return (
已选择 {selectedRowKeys.length} 项   {needTotalList.map(item => ( {item.title} 总计  {item.render ? item.render(item.total) : item.total} ))} 清空 } type="info" showIcon />
); } } export default StandardTable; ================================================ FILE: src/components/StandardTable/index.less ================================================ @import '~antd/lib/style/themes/default.less'; .standardTable { :global { .ant-table-pagination { margin-top: 24px; } } .tableAlert { margin-bottom: 16px; } } ================================================ FILE: src/components/TopNavHeader/index.js ================================================ import React, { PureComponent } from 'react'; import Link from 'umi/link'; import RightContent from '../GlobalHeader/RightContent'; import BaseMenu from '../SiderMenu/BaseMenu'; import styles from './index.less'; export default class TopNavHeader extends PureComponent { constructor(props) { super(props); this.state = { maxWidth: (props.contentWidth === 'Fixed' ? 1200 : window.innerWidth) - 330 - 165 - 4 - 36, }; } static getDerivedStateFromProps(props) { return { maxWidth: (props.contentWidth === 'Fixed' ? 1200 : window.innerWidth) - 330 - 165 - 4 - 36, }; } render() { const { theme, contentWidth, logo } = this.props; const { maxWidth } = this.state; return (
{ this.maim = ref; }} className={`${styles.main} ${contentWidth === 'Fixed' ? styles.wide : ''}`} >
); } } ================================================ FILE: src/components/TopNavHeader/index.less ================================================ .head { width: 100%; transition: background 0.3s, width 0.2s; height: 64px; padding: 0 12px 0 0; box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08); position: relative; :global { .ant-menu-submenu.ant-menu-submenu-horizontal { height: 100%; padding-top: 9px; .ant-menu-submenu-title { height: 100%; } } } &.light { background-color: #fff; } .main { display: flex; height: 64px; padding-left: 24px; &.wide { max-width: 1200px; margin: auto; padding-left: 4px; } .left { flex: 1; display: flex; } .right { width: 324px; } } } .logo { width: 165px; height: 64px; position: relative; line-height: 64px; transition: all 0.3s; overflow: hidden; img { display: inline-block; vertical-align: middle; height: 32px; } h1 { color: #fff; display: inline-block; vertical-align: middle; font-size: 16px; margin: 0 0 0 12px; font-weight: 400; } } .light { h1 { color: #002140; } } ================================================ FILE: src/components/_utils/pathTools.js ================================================ // /userinfo/2144/id => ['/userinfo','/useinfo/2144,'/userindo/2144/id'] // eslint-disable-next-line import/prefer-default-export export function urlToList(url) { const urllist = url.split('/').filter(i => i); return urllist.map((urlItem, index) => `/${urllist.slice(0, index + 1).join('/')}`); } ================================================ FILE: src/components/_utils/pathTools.test.js ================================================ import { urlToList } from './pathTools'; describe('test urlToList', () => { it('A path', () => { expect(urlToList('/userinfo')).toEqual(['/userinfo']); }); it('Secondary path', () => { expect(urlToList('/userinfo/2144')).toEqual(['/userinfo', '/userinfo/2144']); }); it('Three paths', () => { expect(urlToList('/userinfo/2144/addr')).toEqual([ '/userinfo', '/userinfo/2144', '/userinfo/2144/addr', ]); }); }); ================================================ FILE: src/defaultSettings.js ================================================ module.exports = { navTheme: 'dark', // theme for nav menu primaryColor: '#1890FF', // primary color of ant design layout: 'sidemenu', // nav menu position: sidemenu or topmenu contentWidth: 'Fluid', // layout of content: Fluid or Fixed, only works when layout is topmenu fixedHeader: false, // sticky header autoHideHeader: false, // auto hide header fixSiderbar: false, // sticky siderbar }; ================================================ FILE: src/e2e/home.e2e.js ================================================ import puppeteer from 'puppeteer'; describe('Homepage', () => { it('it should have logo text', async () => { const browser = await puppeteer.launch({ args: ['--no-sandbox'] }); const page = await browser.newPage(); await page.goto('http://localhost:8000', { waitUntil: 'networkidle2' }); await page.waitForSelector('#logo h1'); const text = await page.evaluate(() => document.body.innerHTML); expect(text).toContain('

Ant Design Pro

'); await page.close(); browser.close(); }); }); ================================================ FILE: src/e2e/login.e2e.js ================================================ import puppeteer from 'puppeteer'; describe('Login', () => { let browser; let page; beforeAll(async () => { browser = await puppeteer.launch({ args: ['--no-sandbox'] }); }); beforeEach(async () => { page = await browser.newPage(); await page.goto('http://localhost:8000/user/login', { waitUntil: 'networkidle2' }); await page.evaluate(() => window.localStorage.setItem('antd-pro-authority', 'guest')); }); afterEach(() => page.close()); it('should login with failure', async () => { await page.waitForSelector('#userName', { timeout: 2000, }); await page.type('#userName', 'mockuser'); await page.type('#password', 'wrong_password'); await page.click('button[type="submit"]'); await page.waitForSelector('.ant-alert-error'); // should display error }); it('should login successfully', async () => { await page.waitForSelector('#userName', { timeout: 2000, }); await page.type('#userName', 'admin'); await page.type('#password', '888888'); await page.click('button[type="submit"]'); await page.waitForSelector('.ant-layout-sider h1'); // should display error const text = await page.evaluate(() => document.body.innerHTML); expect(text).toContain('

Ant Design Pro

'); }); afterAll(() => browser.close()); }); ================================================ FILE: src/global.less ================================================ html, body, #root { height: 100%; } .colorWeak { filter: invert(80%); } .ant-layout { min-height: 100vh; } canvas { display: block; } body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .globalSpin { width: 100%; margin: 40px 0 !important; } ul, ol { list-style: none; } .ant-modal-title { margin: 0; font-size: 16px; line-height: 22px; font-weight: 500; text-align: center; color: rgba(0, 0, 0, 0.85); } ================================================ FILE: src/layouts/BasicLayout.js ================================================ import React from 'react'; import { Layout } from 'antd'; import DocumentTitle from 'react-document-title'; import isEqual from 'lodash/isEqual'; import memoizeOne from 'memoize-one'; import { connect } from 'dva'; import { ContainerQuery } from 'react-container-query'; import classNames from 'classnames'; import pathToRegexp from 'path-to-regexp'; import { enquireScreen, unenquireScreen } from 'enquire-js'; import { formatMessage } from 'umi/locale'; import SiderMenu from '@/components/SiderMenu'; import Authorized from '@/utils/Authorized'; import SettingDrawer from '@/components/SettingDrawer'; import logo from '../assets/logo.svg'; // import logo from '../assets/all.png'; import Footer from './Footer'; import Header from './Header'; import Context from './MenuContext'; import Exception403 from '../pages/Exception/403'; const { Content } = Layout; // Conversion router to menu. function formatter(data, parentPath = '', parentAuthority, parentName) { return data .map(item => { let locale = 'menu'; if (parentName && item.name) { locale = `${parentName}.${item.name}`; } else if (item.name) { locale = `menu.${item.name}`; } else if (parentName) { locale = parentName; } if (item.path) { const result = { ...item, locale, authority: item.authority || parentAuthority, }; if (item.routes) { const children = formatter( item.routes, `${parentPath}${item.path}/`, item.authority, locale ); // Reduce memory usage result.children = children; } delete result.routes; return result; } return null; }) .filter(item => item); } const memoizeOneFormatter = memoizeOne(formatter, isEqual); const query = { 'screen-xs': { maxWidth: 575, }, 'screen-sm': { minWidth: 576, maxWidth: 767, }, 'screen-md': { minWidth: 768, maxWidth: 991, }, 'screen-lg': { minWidth: 992, maxWidth: 1199, }, 'screen-xl': { minWidth: 1200, maxWidth: 1599, }, 'screen-xxl': { minWidth: 1600, }, }; class BasicLayout extends React.PureComponent { constructor(props) { super(props); this.getPageTitle = memoizeOne(this.getPageTitle); this.getBreadcrumbNameMap = memoizeOne(this.getBreadcrumbNameMap, isEqual); this.breadcrumbNameMap = this.getBreadcrumbNameMap(); this.matchParamsPath = memoizeOne(this.matchParamsPath, isEqual); } state = { rendering: true, isMobile: false, menuData: this.getMenuData(), }; componentDidMount() { const { dispatch } = this.props; dispatch({ type: 'user/fetchCurrent', }); dispatch({ type: 'setting/getSetting', }); this.renderRef = requestAnimationFrame(() => { this.setState({ rendering: false, }); }); this.enquireHandler = enquireScreen(mobile => { const { isMobile } = this.state; if (isMobile !== mobile) { this.setState({ isMobile: mobile, }); } }); } componentDidUpdate(preProps) { // After changing to phone mode, // if collapsed is true, you need to click twice to display this.breadcrumbNameMap = this.getBreadcrumbNameMap(); const { isMobile } = this.state; const { collapsed } = this.props; if (isMobile && !preProps.isMobile && !collapsed) { this.handleMenuCollapse(false); } } componentWillUnmount() { cancelAnimationFrame(this.renderRef); unenquireScreen(this.enquireHandler); } getContext() { const { location } = this.props; return { location, breadcrumbNameMap: this.breadcrumbNameMap, }; } getMenuData() { const { route: { routes }, } = this.props; return memoizeOneFormatter(routes); } /** * 获取面包屑映射 * @param {Object} menuData 菜单配置 */ getBreadcrumbNameMap() { const routerMap = {}; const mergeMenuAndRouter = data => { data.forEach(menuItem => { if (menuItem.children) { mergeMenuAndRouter(menuItem.children); } // Reduce memory usage routerMap[menuItem.path] = menuItem; }); }; mergeMenuAndRouter(this.getMenuData()); return routerMap; } matchParamsPath = pathname => { const pathKey = Object.keys(this.breadcrumbNameMap).find(key => pathToRegexp(key).test(pathname) ); return this.breadcrumbNameMap[pathKey]; }; getPageTitle = pathname => { const currRouterData = this.matchParamsPath(pathname); if (!currRouterData) { return 'Ant Design Pro'; } const message = formatMessage({ id: currRouterData.locale || currRouterData.name, defaultMessage: currRouterData.name, }); return `${message} - Ant Design Pro`; }; getLayoutStyle = () => { const { isMobile } = this.state; const { fixSiderbar, collapsed, layout } = this.props; if (fixSiderbar && layout !== 'topmenu' && !isMobile) { return { paddingLeft: collapsed ? '80px' : '256px', }; } return null; }; getContentStyle = () => { const { fixedHeader } = this.props; return { margin: '24px 24px 0', paddingTop: fixedHeader ? 64 : 0, }; }; handleMenuCollapse = collapsed => { const { dispatch } = this.props; dispatch({ type: 'global/changeLayoutCollapsed', payload: collapsed, }); }; renderSettingDrawer() { // Do not render SettingDrawer in production // unless it is deployed in preview.pro.ant.design as demo const { rendering } = this.state; if ((rendering || process.env.NODE_ENV === 'production') && APP_TYPE !== 'site') { return null; } return ; } render() { const { navTheme, layout: PropsLayout, children, location: { pathname }, } = this.props; const { isMobile, menuData } = this.state; const isTop = PropsLayout === 'topmenu'; const routerConfig = this.matchParamsPath(pathname); const layout = ( {isTop && !isMobile ? null : ( )}
}> {children}
); return ( {params => (
{layout}
)}
{this.renderSettingDrawer()}
); } } export default connect(({ global, setting }) => ({ collapsed: global.collapsed, layout: setting.layout, ...setting, }))(BasicLayout); ================================================ FILE: src/layouts/BlankLayout.js ================================================ import React from 'react'; export default props =>
; ================================================ FILE: src/layouts/Footer.js ================================================ import React, { Fragment } from 'react'; import { Layout, Icon } from 'antd'; import GlobalFooter from '@/components/GlobalFooter'; const { Footer } = Layout; const FooterView = () => (
, href: 'https://github.com/biaochenxuying/blog-react-admin', blankTarget: true, }, { key: 'Ant Design', title: 'Ant Design', href: 'https://ant.design', blankTarget: true, }, ]} copyright={ Copyright BiaoChenXuYing } />
); export default FooterView; ================================================ FILE: src/layouts/Header.js ================================================ import React, { PureComponent } from 'react'; import { formatMessage } from 'umi/locale'; import { Layout, message } from 'antd'; import Animate from 'rc-animate'; import { connect } from 'dva'; import router from 'umi/router'; import GlobalHeader from '@/components/GlobalHeader'; import TopNavHeader from '@/components/TopNavHeader'; import styles from './Header.less'; import Authorized from '@/utils/Authorized'; const { Header } = Layout; class HeaderView extends PureComponent { state = { visible: true, }; static getDerivedStateFromProps(props, state) { if (!props.autoHideHeader && !state.visible) { return { visible: true, }; } return null; } componentDidMount() { document.addEventListener('scroll', this.handScroll, { passive: true }); } componentWillUnmount() { document.removeEventListener('scroll', this.handScroll); } getHeadWidth = () => { const { isMobile, collapsed, setting } = this.props; const { fixedHeader, layout } = setting; if (isMobile || !fixedHeader || layout === 'topmenu') { return '100%'; } return collapsed ? 'calc(100% - 80px)' : 'calc(100% - 256px)'; }; handleNoticeClear = type => { message.success(`${formatMessage({ id: 'component.noticeIcon.cleared' })} ${formatMessage({ id: `component.globalHeader.${type}` })}`); const { dispatch } = this.props; dispatch({ type: 'global/clearNotices', payload: type, }); }; handleMenuClick = ({ key }) => { const { dispatch } = this.props; if (key === 'userCenter') { router.push('/account/center'); return; } if (key === 'triggerError') { router.push('/exception/trigger'); return; } if (key === 'userinfo') { router.push('/account/settings/base'); return; } if (key === 'logout') { dispatch({ type: 'login/logout', }); } }; handleNoticeVisibleChange = visible => { if (visible) { const { dispatch } = this.props; dispatch({ type: 'global/fetchNotices', }); } }; handScroll = () => { const { autoHideHeader } = this.props; const { visible } = this.state; if (!autoHideHeader) { return; } const scrollTop = document.body.scrollTop + document.documentElement.scrollTop; if (!this.ticking) { requestAnimationFrame(() => { if (this.oldScrollTop > scrollTop) { this.setState({ visible: true, }); this.scrollTop = scrollTop; return; } if (scrollTop > 300 && visible) { this.setState({ visible: false, }); } if (scrollTop < 300 && !visible) { this.setState({ visible: true, }); } this.oldScrollTop = scrollTop; this.ticking = false; }); } this.ticking = false; }; render() { const { isMobile, handleMenuCollapse, setting } = this.props; const { navTheme, layout, fixedHeader } = setting; const { visible } = this.state; const isTop = layout === 'topmenu'; const width = this.getHeadWidth(); const HeaderDom = visible ? (
{isTop && !isMobile ? ( ) : ( )}
) : null; return ( {HeaderDom} ); } } export default connect(({ user, global, setting, loading }) => ({ currentUser: user.currentUser, collapsed: global.collapsed, fetchingNotices: loading.effects['global/fetchNotices'], notices: global.notices, setting, }))(HeaderView); ================================================ FILE: src/layouts/Header.less ================================================ .fixedHeader { position: fixed; top: 0; right: 0; width: 100%; z-index: 9; transition: width 0.2s; } ================================================ FILE: src/layouts/MenuContext.js ================================================ import { createContext } from 'react'; export default createContext(); ================================================ FILE: src/layouts/UserLayout.js ================================================ import React, { Fragment } from 'react'; import { formatMessage } from 'umi/locale'; import Link from 'umi/link'; import { Icon } from 'antd'; import GlobalFooter from '@/components/GlobalFooter'; import SelectLang from '@/components/SelectLang'; import styles from './UserLayout.less'; import logo from '../assets/logo.svg'; const links = [ { key: 'help', title: formatMessage({ id: 'layout.user.link.help' }), href: '', }, { key: 'privacy', title: formatMessage({ id: 'layout.user.link.privacy' }), href: '', }, { key: 'terms', title: formatMessage({ id: 'layout.user.link.terms' }), href: '', }, ]; const copyright = ( Copyright 2018 蚂蚁金服体验技术部出品 ); class UserLayout extends React.PureComponent { // @TODO title // getPageTitle() { // const { routerData, location } = this.props; // const { pathname } = location; // let title = 'Ant Design Pro'; // if (routerData[pathname] && routerData[pathname].name) { // title = `${routerData[pathname].name} - Ant Design Pro`; // } // return title; // } render() { const { children } = this.props; return ( // @TODO
logo Ant Design
Ant Design 是西湖区最具影响力的 Web 设计规范
{children}
); } } export default UserLayout; ================================================ FILE: src/layouts/UserLayout.less ================================================ @import '~antd/lib/style/themes/default.less'; .container { display: flex; flex-direction: column; height: 100vh; overflow: auto; background: @layout-body-background; } .lang { text-align: right; width: 100%; height: 40px; line-height: 44px; :global(.ant-dropdown-trigger) { margin-right: 24px; } } .content { padding: 32px 0; flex: 1; } @media (min-width: @screen-md-min) { .container { background-image: url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg'); background-repeat: no-repeat; background-position: center 110px; background-size: 100%; } .content { padding: 72px 0 24px 0; } } .top { text-align: center; } .header { height: 44px; line-height: 44px; a { text-decoration: none; } } .logo { height: 44px; vertical-align: top; margin-right: 16px; } .title { font-size: 33px; color: @heading-color; font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-weight: 600; position: relative; top: 2px; } .desc { font-size: @font-size-base; color: @text-color-secondary; margin-top: 12px; margin-bottom: 40px; } ================================================ FILE: src/locales/en-US.js ================================================ export default { 'navBar.lang': 'Languages', 'lang.simplified-chinese': '简体中文', 'lang.traditional-chinese': '繁体中文', 'lang.english': 'English', 'lang.portuguese': 'Portuguese', 'layout.user.link.help': 'Help', 'layout.user.link.privacy': 'Privacy', 'layout.user.link.terms': 'Terms', 'validation.email.required': 'Please enter your email!', 'validation.email.wrong-format': 'The email address is in the wrong format!', 'validation.password.required': 'Please enter your password!', 'validation.password.twice': 'The passwords entered twice do not match!', 'validation.password.strength.msg': "Please enter at least 6 characters and don't use passwords that are easy to guess.", 'validation.password.strength.strong': 'Strength: strong', 'validation.password.strength.medium': 'Strength: medium', 'validation.password.strength.short': 'Strength: too short', 'validation.confirm-password.required': 'Please confirm your password!', 'validation.phone-number.required': 'Please enter your phone number!', 'validation.phone-number.wrong-format': 'Malformed phone number!', 'validation.verification-code.required': 'Please enter the verification code!', 'validation.title.required': 'Please enter a title', 'validation.date.required': 'Please select the start and end date', 'validation.goal.required': 'Please enter a description of the goal', 'validation.standard.required': 'Please enter a metric', 'form.optional': ' (optional) ', 'form.submit': 'Submit', 'form.save': 'Save', 'form.email.placeholder': 'Email', 'form.password.placeholder': 'Password', 'form.confirm-password.placeholder': 'Confirm password', 'form.phone-number.placeholder': 'Phone number', 'form.verification-code.placeholder': 'Verification code', 'form.title.label': 'Title', 'form.title.placeholder': 'Give the target a name', 'form.date.label': 'Start and end date', 'form.date.placeholder.start': 'Start date', 'form.date.placeholder.end': 'End date', 'form.goal.label': 'Goal description', 'form.goal.placeholder': 'Please enter your work goals', 'form.standard.label': 'Metrics', 'form.standard.placeholder': 'Please enter a metric', 'form.client.label': 'Client', 'form.client.label.tooltip': 'Target service object', 'form.client.placeholder': 'Please describe your customer service, internal customers directly @ Name / job number', 'form.invites.label': 'Inviting critics', 'form.invites.placeholder': 'Please direct @ Name / job number, you can invite up to 5 people', 'form.weight.label': 'Weight', 'form.weight.placeholder': 'Please enter weight', 'form.public.label': 'Target disclosure', 'form.public.label.help': 'Customers and invitees are shared by default', 'form.public.radio.public': 'Public', 'form.public.radio.partially-public': 'Partially public', 'form.public.radio.private': 'Private', 'form.publicUsers.placeholder': 'Open to', 'form.publicUsers.option.A': 'Colleague A', 'form.publicUsers.option.B': 'Colleague B', 'form.publicUsers.option.C': 'Colleague C', 'component.globalHeader.search': 'Search', 'component.globalHeader.search.example1': 'Search example 1', 'component.globalHeader.search.example2': 'Search example 2', 'component.globalHeader.search.example3': 'Search example 3', 'component.globalHeader.help': 'Help', 'component.globalHeader.notification': 'Notification', 'component.globalHeader.notification.empty': 'You have viewed all notifications.', 'component.globalHeader.message': 'Messages', 'component.globalHeader.message.empty': 'You have viewed all messsages.', 'component.globalHeader.event': 'Event', 'component.globalHeader.event.empty': 'You have viewed all events.', 'component.noticeIcon.clear': 'Clear', 'component.noticeIcon.cleared': 'Cleared', 'component.noticeIcon.empty': 'No notifications', 'menu.article': 'article', 'menu.article.list': 'list', 'menu.article.create': 'create', 'menu.timeAxis': 'timeAxis', 'menu.timeAxis.list': 'list', 'menu.project': 'project', 'menu.project.list': 'list', 'menu.tag': 'tag', 'menu.tag.list': 'list', 'menu.otherUser': 'user', 'menu.otherUser.list': 'list', 'menu.message': 'message', 'menu.message.list': 'list', 'menu.link': 'link', 'menu.link.list': 'list', 'menu.category': 'category', 'menu.category.list': 'list', 'menu.home': 'Home', 'menu.dashboard': 'Dashboard', 'menu.dashboard.analysis': 'Analysis', 'menu.dashboard.monitor': 'Monitor', 'menu.dashboard.workplace': 'Workplace', 'menu.form': 'Form', 'menu.form.basicform': 'Basic Form', 'menu.form.stepform': 'Step Form', 'menu.form.stepform.info': 'Step Form(write transfer information)', 'menu.form.stepform.confirm': 'Step Form(confirm transfer information)', 'menu.form.stepform.result': 'Step Form(finished)', 'menu.form.advancedform': 'Advanced Form', 'menu.list': 'List', 'menu.list.searchtable': 'Search Table', 'menu.list.basiclist': 'Basic List', 'menu.list.cardlist': 'Card List', 'menu.list.searchlist': 'Search List', 'menu.list.searchlist.articles': 'Search List(articles)', 'menu.list.searchlist.projects': 'Search List(projects)', 'menu.list.searchlist.applications': 'Search List(applications)', 'menu.profile': 'Profile', 'menu.profile.basic': 'Basic Profile', 'menu.profile.advanced': 'Advanced Profile', 'menu.result': 'Result', 'menu.result.success': 'Success', 'menu.result.fail': 'Fail', 'menu.exception': 'Exception', 'menu.exception.not-permission': '403', 'menu.exception.not-find': '404', 'menu.exception.server-error': '500', 'menu.exception.trigger': 'Trigger', 'menu.account': 'Account', 'menu.account.center': 'Account Center', 'menu.account.settings': 'Account Settings', 'menu.account.trigger': 'Trigger Error', 'menu.account.logout': 'Logout', 'app.login.tab-login-credentials': 'Credentials', 'app.login.tab-login-mobile': 'Mobile number', 'app.login.remember-me': 'Remember me', 'app.login.forgot-password': 'Forgot your password?', 'app.login.sign-in-with': 'Sign in with', 'app.login.signup': 'Sign up', 'app.login.login': 'Login', 'app.register.register': 'Register', 'app.register.get-verification-code': 'Get code', 'app.register.sing-in': 'Already have an account?', 'app.register-result.msg': 'Account:registered at {email}', 'app.register-result.activation-email': 'The activation email has been sent to your email address and is valid for 24 hours. Please log in to the email in time and click on the link in the email to activate the account.', 'app.register-result.back-home': 'Back to home', 'app.register-result.view-mailbox': 'View mailbox', 'app.home.introduce': 'introduce', 'app.analysis.test': 'Gongzhuan No.{no} shop', 'app.analysis.introduce': 'Introduce', 'app.analysis.total-sales': 'Total Sales', 'app.analysis.day-sales': 'Day Sales', 'app.analysis.visits': 'Visits', 'app.analysis.visits-trend': 'Visits Trend', 'app.analysis.visits-ranking': 'Visits Ranking', 'app.analysis.day-visits': 'Day Visits', 'app.analysis.week': 'Week Ratio', 'app.analysis.day': 'Day Ratio', 'app.analysis.payments': 'Payments', 'app.analysis.conversion-rate': 'Conversion Rate', 'app.analysis.operational-effect': 'Operational Effect', 'app.analysis.sales-trend': 'Stores Sales Trend', 'app.analysis.sales-ranking': 'Sales Ranking', 'app.analysis.all-year': 'All Year', 'app.analysis.all-month': 'All Month', 'app.analysis.all-week': 'All Week', 'app.analysis.all-day': 'All day', 'app.analysis.search-users': 'Search Users', 'app.analysis.per-capita-search': 'Per Capita Search', 'app.analysis.online-top-search': 'Online Top Search', 'app.analysis.the-proportion-of-sales': 'The Proportion Of Sales', 'app.analysis.channel.all': 'ALL', 'app.analysis.channel.online': 'Online', 'app.analysis.channel.stores': 'Stores', 'app.analysis.sales': 'Sales', 'app.analysis.traffic': 'Traffic', 'app.analysis.table.rank': 'Rank', 'app.analysis.table.search-keyword': 'Keyword', 'app.analysis.table.users': 'Users', 'app.analysis.table.weekly-range': 'Weekly Range', 'app.forms.basic.title': 'Basic form', 'app.forms.basic.description': 'Form pages are used to collect or verify information to users, and basic forms are common in scenarios where there are fewer data items.', 'app.monitor.trading-activity': 'Real-Time Trading Activity', 'app.monitor.total-transactions': 'Total transactions today', 'app.monitor.sales-target': 'Sales target completion rate', 'app.monitor.remaining-time': 'Remaining time of activity', 'app.monitor.total-transactions-per-second': 'Total transactions per second', 'app.monitor.activity-forecast': 'Activity forecast', 'app.monitor.efficiency': 'Efficiency', 'app.monitor.ratio': 'Ratio', 'app.monitor.proportion-per-category': 'Proportion Per Category', 'app.monitor.fast-food': 'Fast food', 'app.monitor.western-food': 'Western food', 'app.monitor.hot-pot': 'Hot pot', 'app.monitor.waiting-for-implementation': 'Waiting for implementation', 'app.monitor.popular-searches': 'Popular Searches', 'app.monitor.resource-surplus': 'Resource Surplus', 'app.monitor.fund-surplus': 'Fund Surplus', 'app.settings.menuMap.basic': 'Basic Settings', 'app.settings.menuMap.security': 'Security Settings', 'app.settings.menuMap.binding': 'Account Binding', 'app.settings.menuMap.notification': 'New Message Notification', 'app.settings.menuMap.personalLink': 'personal link', 'app.settings.basic.avatar': 'Change avatar', 'app.settings.basic.email': 'Email', 'app.settings.basic.email-message': 'Please input your email!', 'app.settings.basic.nickname': 'Nickname', 'app.settings.basic.nickname-message': 'Please input your Nickname!', 'app.settings.basic.profile': 'Personal profile', 'app.settings.basic.profile-message': 'Please input your personal profile!', 'app.settings.basic.profile-placeholder': 'Brief introduction to yourself', 'app.settings.basic.country': 'Country/Region', 'app.settings.basic.country-message': 'Please input your country!', 'app.settings.basic.geographic': 'Province or city', 'app.settings.basic.geographic-message': 'Please input your geographic info!', 'app.settings.basic.address': 'Street Address', 'app.settings.basic.address-message': 'Please input your address!', 'app.settings.basic.phone': 'Phone Number', 'app.settings.basic.phone-message': 'Please input your phone!', 'app.settings.basic.update': 'Update Information', 'app.settings.security.strong': 'Strong', 'app.settings.security.medium': 'Medium', 'app.settings.security.weak': 'Weak', 'app.settings.security.password': 'Account Password', 'app.settings.security.password-description': 'Current password strength:', 'app.settings.security.phone': 'Security Phone', 'app.settings.security.phone-description': 'Bound phone:', 'app.settings.security.question': 'Security Question', 'app.settings.security.question-description': 'The security question is not set, and the security policy can effectively protect the account security', 'app.settings.security.email': 'Backup Email', 'app.settings.security.email-description': 'Bound Email:', 'app.settings.security.mfa': 'MFA Device', 'app.settings.security.mfa-description': 'Unbound MFA device, after binding, can be confirmed twice', 'app.settings.security.modify': 'Modify', 'app.settings.security.set': 'Set', 'app.settings.security.bind': 'Bind', 'app.settings.binding.taobao': 'Binding Taobao', 'app.settings.binding.taobao-description': 'Currently unbound Taobao account', 'app.settings.binding.alipay': 'Binding Alipay', 'app.settings.binding.alipay-description': 'Currently unbound Alipay account', 'app.settings.binding.dingding': 'Binding DingTalk', 'app.settings.binding.dingding-description': 'Currently unbound DingTalk account', 'app.settings.binding.bind': 'Bind', 'app.settings.notification.password': 'Account Password', 'app.settings.notification.password-description': 'Messages from other users will be notified in the form of a station letter', 'app.settings.notification.messages': 'System Messages', 'app.settings.notification.messages-description': 'System messages will be notified in the form of a station letter', 'app.settings.notification.todo': 'To-do Notification', 'app.settings.notification.todo-description': 'The to-do list will be notified in the form of a letter from the station', 'app.settings.open': 'Open', 'app.settings.close': 'Close', 'app.exception.back': 'Back to home', 'app.exception.description.403': "Sorry, you don't have access to this page", 'app.exception.description.404': 'Sorry, the page you visited does not exist', 'app.exception.description.500': 'Sorry, the server is reporting an error', 'app.result.error.title': 'Submission Failed', 'app.result.error.description': 'Please check and modify the following information before resubmitting.', 'app.result.error.hint-title': 'The content you submitted has the following error:', 'app.result.error.hint-text1': 'Your account has been frozen', 'app.result.error.hint-btn1': 'Thaw immediately', 'app.result.error.hint-text2': 'Your account is not yet eligible to apply', 'app.result.error.hint-btn2': 'Upgrade immediately', 'app.result.error.btn-text': 'Return to modify', 'app.result.success.title': 'Submission Success', 'app.result.success.description': 'The submission results page is used to feed back the results of a series of operational tasks. If it is a simple operation, use the Message global prompt feedback. This text area can show a simple supplementary explanation. If there is a similar requirement for displaying “documents”, the following gray area can present more complicated content.', 'app.result.success.operate-title': 'Project Name', 'app.result.success.operate-id': 'Project ID:', 'app.result.success.principal': 'Principal:', 'app.result.success.operate-time': 'Effective time:', 'app.result.success.step1-title': 'Create project', 'app.result.success.step1-operator': 'Qu Lili', 'app.result.success.step2-title': 'Departmental preliminary review', 'app.result.success.step2-operator': 'Zhou Maomao', 'app.result.success.step2-extra': 'Urge', 'app.result.success.step3-title': 'Financial review', 'app.result.success.step4-title': 'Finish', 'app.result.success.btn-return': 'Back to list', 'app.result.success.btn-project': 'View project', 'app.result.success.btn-print': 'Print', 'app.setting.pagestyle': 'Page style setting', 'app.setting.pagestyle.dark': 'Dark style', 'app.setting.pagestyle.light': 'Light style', 'app.setting.content-width': 'Content Width', 'app.setting.content-width.fixed': 'Fixed', 'app.setting.content-width.fluid': 'Fluid', 'app.setting.themecolor': 'Theme Color', 'app.setting.themecolor.dust': 'Dust Red', 'app.setting.themecolor.volcano': 'Volcano', 'app.setting.themecolor.sunset': 'Sunset Orange', 'app.setting.themecolor.cyan': 'Cyan', 'app.setting.themecolor.green': 'Polar Green', 'app.setting.themecolor.daybreak': 'Daybreak Blue (default)', 'app.setting.themecolor.geekblue': 'Geek Glue', 'app.setting.themecolor.purple': 'Golden Purple', 'app.setting.navigationmode': 'Navigation Mode', 'app.setting.sidemenu': 'Side Menu Layout', 'app.setting.topmenu': 'Top Menu Layout', 'app.setting.fixedheader': 'Fixed Header', 'app.setting.fixedsidebar': 'Fixed Sidebar', 'app.setting.fixedsidebar.hint': 'Works on Side Menu Layout', 'app.setting.hideheader': 'Hidden Header when scrolling', 'app.setting.hideheader.hint': 'Works when Hidden Header is enabled', 'app.setting.othersettings': 'Other Settings', 'app.setting.weakmode': 'Weak Mode', 'app.setting.copy': 'Copy Setting', 'app.setting.copyinfo': 'copy success,please replace defaultSettings in src/models/setting.js', 'app.setting.production.hint': 'Setting panel shows in development environment only, please manually modify', }; ================================================ FILE: src/locales/pt-BR.js ================================================ export default { 'navBar.lang': 'Idiomas', 'lang.simplified-chinese': '简体中文', 'lang.traditional-chinese': '繁体中文', 'lang.english': 'English', 'lang.portuguese': 'Portuguese', 'layout.user.link.help': 'ajuda', 'layout.user.link.privacy': 'política de privacidade', 'layout.user.link.terms': 'termos de serviços', 'validation.email.required': 'Por favor insira seu email!', 'validation.email.wrong-format': 'O email está errado!', 'validation.password.required': 'Por favor insira sua senha!', 'validation.password.twice': 'As senhas não estão iguais!', 'validation.password.strength.msg': 'Por favor insira pelo menos 6 caracteres e não use senhas fáceis de adivinhar.', 'validation.password.strength.strong': 'Força: forte', 'validation.password.strength.medium': 'Força: média', 'validation.password.strength.short': 'Força: curta', 'validation.confirm-password.required': 'Por favor confirme sua senha!', 'validation.phone-number.required': 'Por favor insira seu telefone!', 'validation.phone-number.wrong-format': 'Formato de telefone errado!', 'validation.verification-code.required': 'Por favor insira seu código de verificação!', 'form.email.placeholder': 'Email', 'form.password.placeholder': 'Senha', 'form.confirm-password.placeholder': 'Confirme a senha', 'form.phone-number.placeholder': 'Telefone', 'form.verification-code.placeholder': 'Código de verificação', 'component.globalHeader.search': 'Busca', 'component.globalHeader.search.example1': 'Exemplo de busca 1', 'component.globalHeader.search.example2': 'Exemplo de busca 2', 'component.globalHeader.search.example3': 'Exemplo de busca 3', 'component.globalHeader.help': 'Ajuda', 'component.globalHeader.notification': 'Notificação', 'component.globalHeader.notification.empty': 'Você visualizou todas as notificações.', 'component.globalHeader.message': 'Mensagem', 'component.globalHeader.message.empty': 'Você visualizou todas as mensagens.', 'component.globalHeader.event': 'Evento', 'component.globalHeader.event.empty': 'Você visualizou todos os eventos.', 'component.noticeIcon.clear': 'Limpar', 'component.noticeIcon.cleared': 'Limpo', 'component.noticeIcon.empty': 'Sem notificações', 'menu.home': 'Início', 'menu.dashboard': 'Dashboard', 'menu.dashboard.analysis': 'Análise', 'menu.dashboard.monitor': 'Monitor', 'menu.dashboard.workplace': 'Ambiente de Trabalho', 'menu.form': 'Formulário', 'menu.form.basicform': 'Formulário Básico', 'menu.form.stepform': 'Formulário Assistido', 'menu.form.stepform.info': 'Formulário Assistido(gravar informações de transferência)', 'menu.form.stepform.confirm': 'Formulário Assistido(confirmar informações de transferência)', 'menu.form.stepform.result': 'Formulário Assistido(finalizado)', 'menu.form.advancedform': 'Formulário Avançado', 'menu.list': 'Lista', 'menu.list.searchtable': 'Tabela de Busca', 'menu.list.basiclist': 'Lista Básica', 'menu.list.cardlist': 'Lista de Card', 'menu.list.searchlist': 'Lista de Busca', 'menu.list.searchlist.articles': 'Lista de Busca(artigos)', 'menu.list.searchlist.projects': 'Lista de Busca(projetos)', 'menu.list.searchlist.applications': 'Lista de Busca(aplicações)', 'menu.profile': 'Perfil', 'menu.profile.basic': 'Perfil Básico', 'menu.profile.advanced': 'Perfil Avançado', 'menu.result': 'Resultado', 'menu.result.success': 'Sucesso', 'menu.result.fail': 'Falha', 'menu.exception': 'Exceção', 'menu.exception.not-permission': '403', 'menu.exception.not-find': '404', 'menu.exception.server-error': '500', 'menu.exception.trigger': 'Disparar', 'menu.account': 'Conta', 'menu.account.center': 'Central da Conta', 'menu.account.settings': 'Configurar Conta', 'menu.account.trigger': 'Disparar Erro', 'menu.account.logout': 'Sair', 'app.login.tab-login-credentials': 'Credenciais', 'app.login.tab-login-mobile': 'Telefone', 'app.login.remember-me': 'Lembre-me', 'app.login.forgot-password': 'Esqueceu sua senha?', 'app.login.sign-in-with': 'Login com', 'app.login.signup': 'Cadastre-se', 'app.login.login': 'Login', 'app.register.register': 'Cadastro', 'app.register.get-verification-code': 'Recuperar código', 'app.register.sing-in': 'Já tem uma conta?', 'app.register-result.msg': 'Conta:registrada em {email}', 'app.register-result.activation-email': 'Um email de ativação foi enviado para o seu email e é válido por 24 horas. Por favor entre no seu email e clique no link de ativação da conta.', 'app.register-result.back-home': 'Voltar ao Início', 'app.register-result.view-mailbox': 'Visualizar a caixa de email', 'app.home.introduce': 'introduzir', 'app.analysis.test': 'Gongzhuan No.{no} shop', 'app.analysis.introduce': 'Introduzir', 'app.analysis.total-sales': 'Vendas Totais', 'app.analysis.day-sales': 'Vendas do Dia', 'app.analysis.visits': 'Visitas', 'app.analysis.visits-trend': 'Tendência de Visitas', 'app.analysis.visits-ranking': 'Ranking de Visitas', 'app.analysis.day-visits': 'Visitas do Dia', 'app.analysis.week': 'Taxa Semanal', 'app.analysis.day': 'Taxa Diária', 'app.analysis.payments': 'Pagamentos', 'app.analysis.conversion-rate': 'Taxa de Conversão', 'app.analysis.operational-effect': 'Efeito Operacional', 'app.analysis.sales-trend': 'Tendência de Vendas das Lojas', 'app.analysis.sales-ranking': 'Ranking de Vendas', 'app.analysis.all-year': 'Todo ano', 'app.analysis.all-month': 'Todo mês', 'app.analysis.all-week': 'Toda semana', 'app.analysis.all-day': 'Todo dia', 'app.analysis.search-users': 'Pesquisa de Usuários', 'app.analysis.per-capita-search': 'Busca Per Capta', 'app.analysis.online-top-search': 'Mais Buscadas Online', 'app.analysis.the-proportion-of-sales': 'The Proportion Of Sales', 'app.analysis.channel.all': 'Tudo', 'app.analysis.channel.online': 'Online', 'app.analysis.channel.stores': 'Lojas', 'app.analysis.sales': 'Vendas', 'app.analysis.traffic': 'Tráfego', 'app.analysis.table.rank': 'Rank', 'app.analysis.table.search-keyword': 'Palavra chave', 'app.analysis.table.users': 'Usuários', 'app.analysis.table.weekly-range': 'Faixa Semanal', 'app.settings.menuMap.basic': 'Configurações Básicas', 'app.settings.menuMap.security': 'Configurações de Segurança', 'app.settings.menuMap.binding': 'Vinculação de Conta', 'app.settings.menuMap.notification': 'Mensagens de Notificação', 'app.settings.basic.avatar': 'Alterar avatar', 'app.settings.basic.email': 'Email', 'app.settings.basic.email-message': 'Por favor insira seu email!', 'app.settings.basic.nickname': 'Nome de usuário', 'app.settings.basic.nickname-message': 'Por favor insira seu nome de usuário!', 'app.settings.basic.profile': 'Perfil pessoal', 'app.settings.basic.profile-message': 'Por favor insira seu perfil pessoal!', 'app.settings.basic.profile-placeholder': 'Breve introdução sua', 'app.settings.basic.country': 'País/Região', 'app.settings.basic.country-message': 'Por favor insira país!', 'app.settings.basic.geographic': 'Província, estado ou cidade', 'app.settings.basic.geographic-message': 'Por favor insira suas informações geográficas!', 'app.settings.basic.address': 'Endereço', 'app.settings.basic.address-message': 'Por favor insira seu endereço!', 'app.settings.basic.phone': 'Número de telefone', 'app.settings.basic.phone-message': 'Por favor insira seu número de telefone!', 'app.settings.basic.update': 'Atualizar Informações', 'app.settings.security.strong': 'Forte', 'app.settings.security.medium': 'Média', 'app.settings.security.weak': 'Fraca', 'app.settings.security.password': 'Senha da Conta', 'app.settings.security.password-description': 'Força da senha', 'app.settings.security.phone': 'Telefone de Seguraça', 'app.settings.security.phone-description': 'Telefone vinculado', 'app.settings.security.question': 'Pergunta de Segurança', 'app.settings.security.question-description': 'A pergunta de segurança não está definida e a política de segurança pode proteger efetivamente a segurança da conta', 'app.settings.security.email': 'Email de Backup', 'app.settings.security.email-description': 'Email vinculado', 'app.settings.security.mfa': 'Dispositivo MFA', 'app.settings.security.mfa-description': 'O dispositivo MFA não vinculado, após a vinculação, pode ser confirmado duas vezes', 'app.settings.security.modify': 'Modificar', 'app.settings.security.set': 'Atribuir', 'app.settings.security.bind': 'Vincular', 'app.settings.binding.taobao': 'Vincular Taobao', 'app.settings.binding.taobao-description': 'Atualmente não vinculado à conta Taobao', 'app.settings.binding.alipay': 'Vincular Alipay', 'app.settings.binding.alipay-description': 'Atualmente não vinculado à conta Alipay', 'app.settings.binding.dingding': 'Vincular DingTalk', 'app.settings.binding.dingding-description': 'Atualmente não vinculado à conta DingTalk', 'app.settings.binding.bind': 'Vincular', 'app.settings.notification.password': 'Senha da Conta', 'app.settings.notification.password-description': 'Mensagens de outros usuários serão notificadas na forma de uma estação de letra', 'app.settings.notification.messages': 'Mensagens de Sistema', 'app.settings.notification.messages-description': 'Mensagens de sistema serão notificadas na forma de uma estação de letra', 'app.settings.notification.todo': 'Notificação de To-do', 'app.settings.notification.todo-description': 'A lista de to-do será notificada na forma de uma estação de letra', 'app.settings.open': 'Aberto', 'app.settings.close': 'Fechado', 'app.exception.back': 'Voltar para Início', 'app.exception.description.403': 'Desculpe, você não tem acesso a esta página', 'app.exception.description.404': 'Desculpe, a página que você visitou não existe', 'app.exception.description.500': 'Desculpe, o servidor está reportando um erro', 'app.result.error.title': 'A Submissão Falhou', 'app.result.error.description': 'Por favor, verifique e modifique as seguintes informações antes de reenviar.', 'app.result.error.hint-title': 'O conteúdo que você enviou tem o seguinte erro:', 'app.result.error.hint-text1': 'Sua conta foi congelada', 'app.result.error.hint-btn1': 'Descongele imediatamente', 'app.result.error.hint-text2': 'Sua conta ainda não está qualificada para se candidatar', 'app.result.error.hint-btn2': 'Atualizar imediatamente', 'app.result.error.btn-text': 'Retornar para modificar', 'app.result.success.title': 'A Submissão foi um Sucesso', 'app.result.success.description': 'A página de resultados de envio é usada para fornecer os resultados de uma série de tarefas operacionais. Se for uma operação simples, use o prompt de feedback de Mensagem global. Esta área de texto pode mostrar uma explicação suplementar simples. Se houver um requisito semelhante para exibir "documentos", a área cinza a seguir pode apresentar um conteúdo mais complicado.', 'app.result.success.operate-title': 'Nome do Projeto', 'app.result.success.operate-id': 'ID do Projeto:', 'app.result.success.principal': 'Principal:', 'app.result.success.operate-time': 'Tempo efetivo:', 'app.result.success.step1-title': 'Criar projeto', 'app.result.success.step1-operator': 'Qu Lili', 'app.result.success.step2-title': 'Revisão preliminar do departamento', 'app.result.success.step2-operator': 'Zhou Maomao', 'app.result.success.step2-extra': 'Urge', 'app.result.success.step3-title': 'Revisão financeira', 'app.result.success.step4-title': 'Terminar', 'app.result.success.btn-return': 'Voltar a lista', 'app.result.success.btn-project': 'Ver projeto', 'app.result.success.btn-print': 'imprimir', 'app.setting.pagestyle': 'Configuração de estilo da página', 'app.setting.pagestyle.dark': 'Dark style', 'app.setting.pagestyle.light': 'Light style', 'app.setting.content-width': 'Largura do conteúdo', 'app.setting.content-width.fixed': 'Fixo', 'app.setting.content-width.fluid': 'Fluido', 'app.setting.themecolor': 'Cor do Tema', 'app.setting.themecolor.dust': 'Dust Red', 'app.setting.themecolor.volcano': 'Volcano', 'app.setting.themecolor.sunset': 'Sunset Orange', 'app.setting.themecolor.cyan': 'Cyan', 'app.setting.themecolor.green': 'Polar Green', 'app.setting.themecolor.daybreak': 'Daybreak Blue (default)', 'app.setting.themecolor.geekblue': 'Geek Glue', 'app.setting.themecolor.purple': 'Golden Purple', 'app.setting.navigationmode': 'Modo de Navegação', 'app.setting.sidemenu': 'Layout do Menu Lateral', 'app.setting.topmenu': 'Layout do Menu Superior', 'app.setting.fixedheader': 'Cabeçalho fixo', 'app.setting.fixedsidebar': 'Barra lateral fixa', 'app.setting.fixedsidebar.hint': 'Funciona no layout do menu lateral', 'app.setting.hideheader': 'Esconder o cabeçalho quando rolar', 'app.setting.hideheader.hint': 'Funciona quando o esconder cabeçalho está abilitado', 'app.setting.othersettings': 'Outras configurações', 'app.setting.weakmode': 'Weak Mode', 'app.setting.copy': 'Copiar Configuração', 'app.setting.copyinfo': 'copiado com sucesso,por favor trocar o defaultSettings em src/models/setting.js', 'app.setting.production.hint': 'O painel de configuração apenas é exibido no ambiente de desenvolvimento, por favor modifique manualmente o', }; ================================================ FILE: src/locales/zh-CN.js ================================================ export default { 'navBar.lang': '语言', 'lang.simplified-chinese': '简体中文', 'lang.traditional-chinese': '繁体中文', 'lang.english': 'English', 'lang.portuguese': 'Portuguese', 'layout.user.link.help': '帮助', 'layout.user.link.privacy': '隐私', 'layout.user.link.terms': '条款', 'validation.email.required': '请输入邮箱地址!', 'validation.email.wrong-format': '邮箱地址格式错误!', 'validation.password.required': '请输入密码!', 'validation.password.twice': '两次输入的密码不匹配!', 'validation.password.strength.msg': '请至少输入 6 个字符。请不要使用容易被猜到的密码。', 'validation.password.strength.strong': '强度:强', 'validation.password.strength.medium': '强度:中', 'validation.password.strength.short': '强度:太短', 'validation.confirm-password.required': '请确认密码!', 'validation.phone-number.required': '请输入手机号!', 'validation.phone-number.wrong-format': '手机号格式错误!', 'validation.verification-code.required': '请输入验证码!', 'validation.title.required': '请输入标题', 'validation.date.required': '请选择起止日期', 'validation.goal.required': '请输入目标描述', 'validation.standard.required': '请输入衡量标准', 'form.optional': '(选填)', 'form.submit': '提交', 'form.save': '保存', 'form.email.placeholder': '邮箱', 'form.password.placeholder': '至少6位密码,区分大小写', 'form.confirm-password.placeholder': '确认密码', 'form.phone-number.placeholder': '位手机号', 'form.verification-code.placeholder': '验证码', 'form.title.label': '标题', 'form.title.placeholder': '给目标起个名字', 'form.date.label': '起止日期', 'form.date.placeholder.start': '开始日期', 'form.date.placeholder.end': '结束日期', 'component.globalHeader.search': '站内搜索', 'component.globalHeader.search.example1': '搜索提示一', 'component.globalHeader.search.example2': '搜索提示二', 'component.globalHeader.search.example3': '搜索提示三', 'component.globalHeader.help': '使用文档', 'component.globalHeader.notification': '通知', 'component.globalHeader.notification.empty': '你已查看所有通知', 'component.globalHeader.message': '消息', 'component.globalHeader.message.empty': '您已读完所有消息', 'component.noticeIcon.clear': '清空', 'component.noticeIcon.cleared': '清空了', 'component.noticeIcon.empty': '暂无数据', 'menu.home': '首页', 'menu.article': '文章', 'menu.article.list': '文章列表', 'menu.article.create': '文章创作', 'menu.timeAxis': '时间轴', 'menu.timeAxis.list': '时间轴列表', 'menu.project': '项目', 'menu.project.list': '项目列表', 'menu.tag': '标签', 'menu.tag.list': '标签列表', 'menu.otherUser': '用户管理', 'menu.otherUser.list': '用户列表', 'menu.message': '留言', 'menu.message.list': '留言列表', 'menu.link': '友情链接', 'menu.link.list': '链接列表', 'menu.category': '分类', 'menu.category.list': '分类列表', 'menu.dashboard': 'Dashboard', 'menu.dashboard.analysis': '分析页', 'menu.dashboard.monitor': '监控页', 'menu.dashboard.workplace': '工作台', 'menu.result': '结果页', 'menu.result.success': '成功页', 'menu.result.fail': '失败页', 'menu.exception': '异常页', 'menu.exception.not-permission': '403', 'menu.exception.not-find': '404', 'menu.exception.server-error': '500', 'menu.exception.trigger': '触发错误', 'menu.account': '个人中心', 'menu.account.center': '个人中心', 'menu.account.settings': '个人设置', 'menu.account.trigger': '触发报错', 'menu.account.logout': '退出登录', 'app.login.tab-login-credentials': '账户密码登录', 'app.login.tab-login-mobile': '手机号登录', 'app.login.remember-me': '自动登录', 'app.login.forgot-password': '忘记密码', 'app.login.sign-in-with': '其他登录方式', 'app.login.signup': '注册账户', 'app.login.login': '登录', 'app.register.register': '注册', 'app.register.get-verification-code': '获取验证码', 'app.register.sing-in': '使用已有账户登录', 'app.register-result.msg': '你的账户:{email} 注册成功', 'app.register-result.activation-email': '激活邮件已发送到你的邮箱中,邮件有效期为24小时。请及时登录邮箱,点击邮件中的链接激活帐户。', 'app.register-result.back-home': '返回首页', 'app.register-result.view-mailbox': '查看邮箱', 'app.home.introduce': '介绍', 'app.settings.menuMap.basic': '基本设置', 'app.settings.menuMap.security': '安全设置', 'app.settings.menuMap.notification': '新消息通知', 'app.settings.menuMap.personalLink': '个人链接', 'app.settings.basic.avatar': '更换头像', 'app.settings.basic.email': '邮箱', 'app.settings.basic.email-message': '请输入您的邮箱!', 'app.settings.basic.nickname': '昵称', 'app.settings.basic.nickname-message': '请输入您的昵称!', 'app.settings.basic.profile': '个人简介', 'app.settings.basic.profile-message': '请输入个人简介!', 'app.settings.basic.profile-placeholder': '个人简介', 'app.settings.basic.phone': '联系电话', 'app.settings.basic.phone-message': '请输入您的联系电话!', 'app.settings.basic.update': '更新基本信息', 'app.settings.notification.password': '账户密码', 'app.settings.notification.password-description': '其他用户的消息将以站内信的形式通知', 'app.settings.notification.messages': '系统消息', 'app.settings.notification.messages-description': '系统消息将以站内信的形式通知', 'app.settings.notification.todo': '账户密码', 'app.settings.notification.todo-description': '账户密码', 'app.settings.open': '开', 'app.settings.close': '关', 'app.exception.back': '返回首页', 'app.exception.description.403': '抱歉,你无权访问该页面', 'app.exception.description.404': '抱歉,你访问的页面不存在', 'app.exception.description.500': '抱歉,服务器出错了', 'app.setting.pagestyle': '整体风格设置', 'app.setting.pagestyle.dark': '暗色菜单风格', 'app.setting.pagestyle.light': '亮色菜单风格', 'app.setting.content-width': '内容区域宽度', 'app.setting.content-width.fixed': '定宽', 'app.setting.content-width.fluid': '流式', 'app.setting.themecolor': '主题色', 'app.setting.themecolor.dust': '薄暮', 'app.setting.themecolor.volcano': '火山', 'app.setting.themecolor.sunset': '日暮', 'app.setting.themecolor.cyan': '明青', 'app.setting.themecolor.green': '极光绿', 'app.setting.themecolor.daybreak': '拂晓蓝(默认)', 'app.setting.themecolor.geekblue': '极客蓝', 'app.setting.themecolor.purple': '酱紫', 'app.setting.navigationmode': '导航模式', 'app.setting.sidemenu': '侧边菜单布局', 'app.setting.topmenu': '顶部菜单布局', 'app.setting.fixedheader': '固定 Header', 'app.setting.fixedsidebar': '固定侧边菜单', 'app.setting.fixedsidebar.hint': '侧边菜单布局时可配置', 'app.setting.hideheader': '下滑时隐藏 Header', 'app.setting.hideheader.hint': '固定 Header 时可配置', 'app.setting.othersettings': '其他设置', 'app.setting.weakmode': '色弱模式', 'app.setting.copy': '拷贝设置', 'app.setting.copyinfo': '拷贝成功,请到 src/defaultSettings.js 中替换默认配置', 'app.setting.production.hint': '配置栏只在开发环境用于预览,生产环境不会展现,请拷贝后手动修改配置文件', }; ================================================ FILE: src/locales/zh-TW.js ================================================ export default { 'navBar.lang': '語言', 'lang.simplified-chinese': '简体中文', 'lang.traditional-chinese': '繁体中文', 'lang.english': 'English', 'lang.portuguese': 'Portuguese', 'layout.user.link.help': '幫助', 'layout.user.link.privacy': '隱私', 'layout.user.link.terms': '條款', 'validation.email.required': '請輸入郵箱地址!', 'validation.email.wrong-format': '郵箱地址格式錯誤!', 'validation.password.required': '請輸入密碼!', 'validation.password.twice': '兩次輸入的密碼不匹配!', 'validation.password.strength.msg': '請至少輸入 6 個字符。請不要使用容易被猜到的密碼。', 'validation.password.strength.strong': '強度:強', 'validation.password.strength.medium': '強度:中', 'validation.password.strength.short': '強度:太短', 'validation.confirm-password.required': '請確認密碼!', 'validation.phone-number.required': '請輸入手機號!', 'validation.phone-number.wrong-format': '手機號格式錯誤!', 'validation.verification-code.required': '請輸入驗證碼!', 'validation.title.required': '請輸入標題', 'validation.date.required': '請選擇起止日期', 'validation.goal.required': '請輸入目標描述', 'validation.standard.required': '請輸入衡量標淮', 'form.optional': '(選填)', 'form.submit': '提交', 'form.save': '保存', 'form.email.placeholder': '郵箱', 'form.password.placeholder': '至少6位密碼,區分大小寫', 'form.confirm-password.placeholder': '確認密碼', 'form.phone-number.placeholder': '位手機號', 'form.verification-code.placeholder': '驗證碼', 'form.title.label': '標題', 'form.title.placeholder': '給目標起個名字', 'form.date.label': '起止日期', 'form.date.placeholder.start': '開始日期', 'form.date.placeholder.end': '結束日期', 'form.goal.label': '目標描述', 'form.goal.placeholder': '請輸入妳的階段性工作目標', 'form.standard.label': '衡量標淮', 'form.standard.placeholder': '請輸入衡量標淮', 'form.client.label': '客戶', 'form.client.label.tooltip': '目標的服務對象', 'form.client.placeholder': '請描述妳服務的客戶,內部客戶直接 @姓名/工號', 'form.invites.label': '邀評人', 'form.invites.placeholder': '請直接 @姓名/工號,最多可邀請 5 人', 'form.weight.label': '權重', 'form.weight.placeholder': '請輸入', 'form.public.label': '目標公開', 'form.public.label.help': '客戶、邀評人默認被分享', 'form.public.radio.public': '公開', 'form.public.radio.partially-public': '部分公開', 'form.public.radio.private': '不公開', 'form.publicUsers.placeholder': '公開給', 'form.publicUsers.option.A': '同事甲', 'form.publicUsers.option.B': '同事乙', 'form.publicUsers.option.C': '同事丙', 'component.globalHeader.search': '站內搜索', 'component.globalHeader.search.example1': '搜索提示壹', 'component.globalHeader.search.example2': '搜索提示二', 'component.globalHeader.search.example3': '搜索提示三', 'component.globalHeader.help': '使用文檔', 'component.globalHeader.notification': '通知', 'component.globalHeader.notification.empty': '妳已查看所有通知', 'component.globalHeader.message': '消息', 'component.globalHeader.message.empty': '您已讀完所有消息', 'component.globalHeader.event': '待辦', 'component.globalHeader.event.empty': '妳已完成所有待辦', 'component.noticeIcon.clear': '清空', 'component.noticeIcon.cleared': '清空了', 'component.noticeIcon.empty': '暫無數據', 'menu.home': '首頁', 'menu.dashboard': 'Dashboard', 'menu.dashboard.analysis': '分析頁', 'menu.dashboard.monitor': '監控頁', 'menu.dashboard.workplace': '工作臺', 'menu.form': '表單頁', 'menu.form.basicform': '基礎表單', 'menu.form.stepform': '分步表單', 'menu.form.stepform.info': '分步表單(填寫轉賬信息)', 'menu.form.stepform.confirm': '分步表單(確認轉賬信息)', 'menu.form.stepform.result': '分步表單(完成)', 'menu.form.advancedform': '高級表單', 'menu.list': '列表頁', 'menu.list.searchtable': '查詢表格', 'menu.list.basiclist': '標淮列表', 'menu.list.cardlist': '卡片列表', 'menu.list.searchlist': '搜索列表', 'menu.list.searchlist.articles': '搜索列表(文章)', 'menu.list.searchlist.projects': '搜索列表(項目)', 'menu.list.searchlist.applications': '搜索列表(應用)', 'menu.profile': '詳情頁', 'menu.profile.basic': '基礎詳情頁', 'menu.profile.advanced': '高級詳情頁', 'menu.result': '結果頁', 'menu.result.success': '成功頁', 'menu.result.fail': '失敗頁', 'menu.exception': '異常頁', 'menu.exception.not-permission': '403', 'menu.exception.not-find': '404', 'menu.exception.server-error': '500', 'menu.exception.trigger': '觸發錯誤', 'menu.account': '個人頁', 'menu.account.center': '個人中心', 'menu.account.settings': '個人設置', 'menu.account.trigger': '觸發報錯', 'menu.account.logout': '退出登錄', 'app.login.tab-login-credentials': '賬戶密碼登錄', 'app.login.tab-login-mobile': '手機號登錄', 'app.login.remember-me': '自動登錄', 'app.login.forgot-password': '忘記密碼', 'app.login.sign-in-with': '其他登錄方式', 'app.login.signup': '註冊賬戶', 'app.login.login': '登錄', 'app.register.register': '註冊', 'app.register.get-verification-code': '獲取驗證碼', 'app.register.sing-in': '使用已有賬戶登錄', 'app.register-result.msg': '妳的賬戶:{email} 註冊成功', 'app.register-result.activation-email': '激活郵件已發送到妳的郵箱中,郵件有效期為24小時。請及時登錄郵箱,點擊郵件中的鏈接激活帳戶。', 'app.register-result.back-home': '返回首頁', 'app.register-result.view-mailbox': '查看郵箱', 'app.home.introduce': '介紹', 'app.analysis.test': '工專路 {no} 號店', 'app.analysis.introduce': '指標說明', 'app.analysis.total-sales': '總銷售額', 'app.analysis.day-sales': '日銷售額', 'app.analysis.visits': '訪問量', 'app.analysis.visits-trend': '訪問量趨勢', 'app.analysis.visits-ranking': '門店訪問量排名', 'app.analysis.day-visits': '日訪問量', 'app.analysis.week': '周同比', 'app.analysis.day': '日同比', 'app.analysis.payments': '支付筆數', 'app.analysis.conversion-rate': '轉化率', 'app.analysis.operational-effect': '運營活動效果', 'app.analysis.sales-trend': '銷售趨勢', 'app.analysis.sales-ranking': '門店銷售額排名', 'app.analysis.all-year': '全年', 'app.analysis.all-month': '本月', 'app.analysis.all-week': '本周', 'app.analysis.all-day': '今日', 'app.analysis.search-users': '搜索用戶數', 'app.analysis.per-capita-search': '人均搜索次數', 'app.analysis.online-top-search': '線上熱門搜索', 'app.analysis.the-proportion-of-sales': '銷售額類別占比', 'app.analysis.channel.all': '全部渠道', 'app.analysis.channel.online': '線上', 'app.analysis.channel.stores': '門店', 'app.analysis.sales': '銷售額', 'app.analysis.traffic': '客流量', 'app.analysis.table.rank': '排名', 'app.analysis.table.search-keyword': '搜索關鍵詞', 'app.analysis.table.users': '用戶數', 'app.analysis.table.weekly-range': '周漲幅', 'app.forms.basic.title': '基礎表單', 'app.forms.basic.description': '表單頁用於向用戶收集或驗證信息,基礎表單常見於數據項較少的表單場景。', 'app.monitor.trading-activity': '活動實時交易情況', 'app.monitor.total-transactions': '今日交易總額', 'app.monitor.sales-target': '銷售目標完成率', 'app.monitor.remaining-time': '活動剩余時間', 'app.monitor.total-transactions-per-second': '每秒交易總額', 'app.monitor.activity-forecast': '活動情況預測', 'app.monitor.efficiency': '券核效率', 'app.monitor.ratio': '跳出率', 'app.monitor.proportion-per-category': '各品類占比', 'app.monitor.fast-food': '中式快餐', 'app.monitor.western-food': '西餐', 'app.monitor.hot-pot': '火鍋', 'app.monitor.waiting-for-implementation': 'Waiting for implementation', 'app.monitor.popular-searches': '熱門搜索', 'app.monitor.resource-surplus': '資源剩余', 'app.monitor.fund-surplus': '補貼資金剩余', 'app.settings.menuMap.basic': '基本設置', 'app.settings.menuMap.security': '安全設置', 'app.settings.menuMap.binding': '賬號綁定', 'app.settings.menuMap.notification': '新消息通知', 'app.settings.basic.avatar': '更換頭像', 'app.settings.basic.email': '郵箱', 'app.settings.basic.email-message': '請輸入您的郵箱!', 'app.settings.basic.nickname': '昵稱', 'app.settings.basic.nickname-message': '請輸入您的昵稱!', 'app.settings.basic.profile': '個人簡介', 'app.settings.basic.profile-message': '請輸入個人簡介!', 'app.settings.basic.profile-placeholder': '個人簡介', 'app.settings.basic.country': '國家/地區', 'app.settings.basic.country-message': '請輸入您的國家或地區!', 'app.settings.basic.geographic': '所在省市', 'app.settings.basic.geographic-message': '請輸入您的所在省市!', 'app.settings.basic.address': '街道地址', 'app.settings.basic.address-message': '請輸入您的街道地址!', 'app.settings.basic.phone': '聯系電話', 'app.settings.basic.phone-message': '請輸入您的聯系電話!', 'app.settings.basic.update': '更新基本信息', 'app.settings.security.strong': '強', 'app.settings.security.medium': '中', 'app.settings.security.weak': '弱', 'app.settings.security.password': '賬戶密碼', 'app.settings.security.password-description': '當前密碼強度:', 'app.settings.security.phone': '密保手機', 'app.settings.security.phone-description': '已綁定手機:', 'app.settings.security.question': '密保問題', 'app.settings.security.question-description': '未設置密保問題,密保問題可有效保護賬戶安全', 'app.settings.security.email': '備用郵箱', 'app.settings.security.email-description': '已綁定郵箱:', 'app.settings.security.mfa': 'MFA 設備', 'app.settings.security.mfa-description': '未綁定 MFA 設備,綁定後,可以進行二次確認', 'app.settings.security.modify': '修改', 'app.settings.security.set': '設置', 'app.settings.security.bind': '綁定', 'app.settings.binding.taobao': '綁定淘寶', 'app.settings.binding.taobao-description': '當前未綁定淘寶賬號', 'app.settings.binding.alipay': '綁定支付寶', 'app.settings.binding.alipay-description': '當前未綁定支付寶賬號', 'app.settings.binding.dingding': '綁定釘釘', 'app.settings.binding.dingding-description': '當前未綁定釘釘賬號', 'app.settings.binding.bind': '綁定', 'app.settings.notification.password': '賬戶密碼', 'app.settings.notification.password-description': '其他用戶的消息將以站內信的形式通知', 'app.settings.notification.messages': '系統消息', 'app.settings.notification.messages-description': '系統消息將以站內信的形式通知', 'app.settings.notification.todo': '賬戶密碼', 'app.settings.notification.todo-description': '賬戶密碼', 'app.settings.open': '開', 'app.settings.close': '關', 'app.exception.back': '返回首頁', 'app.exception.description.403': '抱歉,妳無權訪問該頁面', 'app.exception.description.404': '抱歉,妳訪問的頁面不存在', 'app.exception.description.500': '抱歉,服務器出錯了', 'app.result.error.title': '提交失敗', 'app.result.error.description': '請核對並修改以下信息後,再重新提交。', 'app.result.error.hint-title': '您提交的內容有如下錯誤:', 'app.result.error.hint-text1': '您的賬戶已被凍結', 'app.result.error.hint-btn1': '立即解凍', 'app.result.error.hint-text2': '您的賬戶還不具備申請資格', 'app.result.error.hint-btn2': '立即升級', 'app.result.error.btn-text': '返回修改', 'app.result.success.title': '提交成功', 'app.result.success.description': '提交結果頁用於反饋壹系列操作任務的處理結果, 如果僅是簡單操作,使用 Message 全局提示反饋即可。 本文字區域可以展示簡單的補充說明,如果有類似展示 “單據”的需求,下面這個灰色區域可以呈現比較復雜的內容。', 'app.result.success.operate-title': '項目名稱', 'app.result.success.operate-id': '項目 ID:', 'app.result.success.principal': '負責人:', 'app.result.success.operate-time': '生效時間:', 'app.result.success.step1-title': '創建項目', 'app.result.success.step1-operator': '曲麗麗', 'app.result.success.step2-title': '部門初審', 'app.result.success.step2-operator': '周毛毛', 'app.result.success.step2-extra': '催壹下', 'app.result.success.step3-title': '財務復核', 'app.result.success.step4-title': '完成', 'app.result.success.btn-return': '返回列表', 'app.result.success.btn-project': '查看項目', 'app.result.success.btn-print': '打印', 'app.setting.pagestyle': '整體風格設置', 'app.setting.pagestyle.dark': '暗色菜單風格', 'app.setting.pagestyle.light': '亮色菜單風格', 'app.setting.content-width': '內容區域寬度', 'app.setting.content-width.fixed': '定寬', 'app.setting.content-width.fluid': '流式', 'app.setting.themecolor': '主題色', 'app.setting.themecolor.dust': '薄暮', 'app.setting.themecolor.volcano': '火山', 'app.setting.themecolor.sunset': '日暮', 'app.setting.themecolor.cyan': '明青', 'app.setting.themecolor.green': '極光綠', 'app.setting.themecolor.daybreak': '拂曉藍(默認)', 'app.setting.themecolor.geekblue': '極客藍', 'app.setting.themecolor.purple': '醬紫', 'app.setting.navigationmode': '導航模式', 'app.setting.sidemenu': '側邊菜單布局', 'app.setting.topmenu': '頂部菜單布局', 'app.setting.fixedheader': '固定 Header', 'app.setting.fixedsidebar': '固定側邊菜單', 'app.setting.fixedsidebar.hint': '側邊菜單布局時可配置', 'app.setting.hideheader': '下滑時隱藏 Header', 'app.setting.hideheader.hint': '固定 Header 時可配置', 'app.setting.othersettings': '其他設置', 'app.setting.weakmode': '色弱模式', 'app.setting.copy': '拷貝設置', 'app.setting.copyinfo': '拷貝成功,請到 src/defaultSettings.js 中替換默認配置', 'app.setting.production.hint': '配置欄只在開發環境用於預覽,生產環境不會展現,請拷貝後手動修改配置文件', }; ================================================ FILE: src/models/article.js ================================================ import { queryArticle, delArticle, updateArticle, addArticle, getArticleDetail, changeComment, changeThirdComment, } from '@/services/api'; export default { namespace: 'article', state: { articleList: [], total: 0, articleDetail: { _id: '', author: 'biaochenxuying', category: [], comments: [], create_time: '', desc: '', id: 16, img_url: '', keyword: [], like_users: [], meta: { views: 0, likes: 0, comments: 0 }, origin: 0, state: 1, tags: [], title: '', update_time: '', }, }, effects: { *queryArticle({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(queryArticle, params); !!resolve && resolve(response); // 返回数据 // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveArticleList', payload: response.data.list, }); yield put({ type: 'saveArticleListTotal', payload: response.data.count, }); } }, *delArticle({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(delArticle, params); !!resolve && resolve(response); }, *addArticle({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(addArticle, params); !!resolve && resolve(response); }, *updateArticle({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(updateArticle, params); !!resolve && resolve(response); }, *getArticleDetail({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(getArticleDetail, params); !!resolve && resolve(response); // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveArticleDetail', payload: response.data, }); } }, *changeComment({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(changeComment, params); !!resolve && resolve(response); }, *changeThirdComment({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(changeThirdComment, params); !!resolve && resolve(response); }, }, reducers: { saveArticleList(state, { payload }) { return { ...state, articleList: payload, }; }, saveArticleListTotal(state, { payload }) { return { ...state, total: payload, }; }, saveArticleDetail(state, { payload }) { return { ...state, articleDetail: payload, }; }, }, }; ================================================ FILE: src/models/category.js ================================================ import { queryCategory, addCategory, delCategory } from '@/services/api'; export default { namespace: 'category', state: { categoryList: [], total: 0, }, effects: { *queryCategory({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(queryCategory, params); !!resolve && resolve(response); // 返回数据 // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveCategoryList', payload: response.data.list, }); yield put({ type: 'saveCategoryListTotal', payload: response.data.count, }); } else { // } }, *addCategory({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(addCategory, params); !!resolve && resolve(response); }, *delCategory({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(delCategory, params); !!resolve && resolve(response); }, }, reducers: { saveCategoryList(state, { payload }) { return { ...state, categoryList: payload, }; }, saveCategoryListTotal(state, { payload }) { return { ...state, total: payload, }; }, }, }; ================================================ FILE: src/models/global.js ================================================ import { queryNotices } from '@/services/api'; export default { namespace: 'global', state: { collapsed: false, notices: [], }, effects: { *fetchNotices(_, { call, put }) { const data = yield call(queryNotices); yield put({ type: 'saveNotices', payload: data, }); yield put({ type: 'user/changeNotifyCount', payload: data.length, }); }, *clearNotices({ payload }, { put, select }) { yield put({ type: 'saveClearedNotices', payload, }); const count = yield select(state => state.global.notices.length); yield put({ type: 'user/changeNotifyCount', payload: count, }); }, }, reducers: { changeLayoutCollapsed(state, { payload }) { return { ...state, collapsed: payload, }; }, saveNotices(state, { payload }) { return { ...state, notices: payload, }; }, saveClearedNotices(state, { payload }) { return { ...state, notices: state.notices.filter(item => item.type !== payload), }; }, }, subscriptions: { setup({ history }) { // Subscribe history(url) change, trigger `load` action if pathname is `/` return history.listen(({ pathname, search }) => { if (typeof window.ga !== 'undefined') { window.ga('send', 'pageview', pathname + search); } }); }, }, }; ================================================ FILE: src/models/link.js ================================================ import { queryLink, addLink, updateLink,delLink } from '@/services/api'; export default { namespace: 'link', state: { linkList: [], total: 0, }, effects: { *queryLink({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(queryLink, params); !!resolve && resolve(response); // 返回数据 // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveLinkList', payload: response.data.list, }); yield put({ type: 'saveLinkListTotal', payload: response.data.count, }); } else { // } }, *addLink({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(addLink, params); !!resolve && resolve(response); }, *updateLink({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(updateLink, params); !!resolve && resolve(response); }, *delLink({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(delLink, params); !!resolve && resolve(response); }, }, reducers: { saveLinkList(state, { payload }) { return { ...state, linkList: payload, }; }, saveLinkListTotal(state, { payload }) { return { ...state, total: payload, }; }, }, }; ================================================ FILE: src/models/list.js ================================================ import { queryFakeList, removeFakeList, addFakeList, updateFakeList } from '@/services/api'; export default { namespace: 'list', state: { list: [], }, effects: { *fetch({ payload }, { call, put }) { const response = yield call(queryFakeList, payload); yield put({ type: 'queryList', payload: Array.isArray(response) ? response : [], }); }, *appendFetch({ payload }, { call, put }) { const response = yield call(queryFakeList, payload); yield put({ type: 'appendList', payload: Array.isArray(response) ? response : [], }); }, *submit({ payload }, { call, put }) { let callback; if (payload.id) { callback = Object.keys(payload).length === 1 ? removeFakeList : updateFakeList; } else { callback = addFakeList; } const response = yield call(callback, payload); // post yield put({ type: 'queryList', payload: response, }); }, }, reducers: { queryList(state, action) { return { ...state, list: action.payload, }; }, appendList(state, action) { return { ...state, list: state.list.concat(action.payload), }; }, }, }; ================================================ FILE: src/models/login.js ================================================ import { routerRedux } from 'dva/router'; import { stringify } from 'qs'; import { fakeAccountLogin, getFakeCaptcha, loginAdmin } from '@/services/api'; import { setAuthority } from '@/utils/authority'; import { getPageQuery } from '@/utils/utils'; import { reloadAuthorized } from '@/utils/Authorized'; export default { namespace: 'login', state: { status: undefined, }, effects: { *loginAdmin({ payload }, { call, put }) { const response = yield call(loginAdmin, payload); if(!response){ return } if (response.code === 0) { response.currentAuthority = response.data.name || 'admin'; response.status = 'ok'; response.type = 'account'; yield put({ type: 'changeLoginStatus', payload: response, }); } // Login successfully if (response.code === 0) { reloadAuthorized(); const urlParams = new URL(window.location.href); const params = getPageQuery(); console.log('params :', params); let { redirect } = params; if (redirect) { const redirectUrlParams = new URL(redirect); if (redirectUrlParams.origin === urlParams.origin) { redirect = redirect.substr(urlParams.origin.length); if (redirect.startsWith('/#')) { redirect = redirect.substr(2); } } else { window.location.href = redirect; return; } } console.log('redirect :', redirect); yield put(routerRedux.replace(redirect || '/dashboard/workplace')); } }, *login({ payload }, { call, put }) { const response = yield call(fakeAccountLogin, payload); console.log('response :', response); yield put({ type: 'changeLoginStatus', payload: response, }); // Login successfully if (response.status === 'ok') { reloadAuthorized(); const urlParams = new URL(window.location.href); const params = getPageQuery(); let { redirect } = params; console.log('redirect :', redirect); if (redirect) { const redirectUrlParams = new URL(redirect); if (redirectUrlParams.origin === urlParams.origin) { redirect = redirect.substr(urlParams.origin.length); if (redirect.startsWith('/#')) { redirect = redirect.substr(2); } } else { window.location.href = redirect; return; } } console.log('redirect :', redirect); yield put(routerRedux.replace(redirect || '/')); } }, *getCaptcha({ payload }, { call }) { yield call(getFakeCaptcha, payload); }, *logout(_, { put }) { yield put({ type: 'changeLoginStatus', payload: { status: false, currentAuthority: 'guest', }, }); reloadAuthorized(); yield put( routerRedux.push({ pathname: '/user/login', search: stringify({ redirect: window.location.href, }), }) ); }, }, reducers: { changeLoginStatus(state, { payload }) { setAuthority(payload.currentAuthority); return { ...state, status: payload.status, type: payload.type, }; }, }, }; ================================================ FILE: src/models/message.js ================================================ import { queryMessage, delMessage, getMessageDetail, addReplyMessage } from '@/services/api'; export default { namespace: 'message', state: { messageList: [], total: 0, messageDetail: { avatar: 'user', content: '.....留言', reply_list: [], create_time: '2018-11-04T12:05:10.761Z', email: '13800138000', id: 15, introduce: 'introduce', name: '虚影', phone: '1380013800', state: 0, update_time: '2018-11-04T12:05:10.761Z', user_id: '5bd9a84c2758be723f5ef2cb', __v: 0, _id: '5bdee076bc454f49bba03ab0', }, }, effects: { *queryMessage({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(queryMessage, params); !!resolve && resolve(response); // 返回数据 // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveMessageList', payload: response.data.list, }); yield put({ type: 'saveMessageListTotal', payload: response.data.count, }); } }, *delMessage({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(delMessage, params); !!resolve && resolve(response); }, *addReplyMessage({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(addReplyMessage, params); !!resolve && resolve(response); }, *getMessageDetail({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(getMessageDetail, params); !!resolve && resolve(response); // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveMessageDetail', payload: response.data, }); } }, }, reducers: { saveMessageList(state, { payload }) { return { ...state, messageList: payload, }; }, saveMessageListTotal(state, { payload }) { return { ...state, total: payload, }; }, saveMessageDetail(state, { payload }) { return { ...state, messageDetail: payload, }; }, }, }; ================================================ FILE: src/models/otherUser.js ================================================ import { queryUser, addUser, updateUser,delUser } from '@/services/api'; export default { namespace: 'otherUser', state: { userList: [], total: 0, }, effects: { *queryUser({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(queryUser, params); !!resolve && resolve(response); // 返回数据 // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveUserList', payload: response.data.list, }); yield put({ type: 'saveUserListTotal', payload: response.data.count, }); } else { // } }, *addUser({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(addUser, params); !!resolve && resolve(response); }, *updateUser({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(updateUser, params); !!resolve && resolve(response); }, *delUser({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(delUser, params); !!resolve && resolve(response); }, }, reducers: { saveUserList(state, { payload }) { return { ...state, userList: payload, }; }, saveUserListTotal(state, { payload }) { return { ...state, total: payload, }; }, }, }; ================================================ FILE: src/models/project.js ================================================ import { queryProjectNotice,queryProject, delProject, updateProject, addProject,getProjectDetail } from '@/services/api'; export default { namespace: 'project', state: { notice: [], projectList: [], total: 0, projectDetail: { title: '', state: '', content: '', _id: '', }, }, effects: { *fetchNotice(_, { call, put }) { const response = yield call(queryProjectNotice); yield put({ type: 'saveNotice', payload: Array.isArray(response) ? response : [], }); }, *queryProject({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(queryProject, params); !!resolve && resolve(response); // 返回数据 // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveProjectList', payload: response.data.list, }); yield put({ type: 'saveProjectListTotal', payload: response.data.count, }); } }, *delProject({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(delProject, params); !!resolve && resolve(response); }, *addProject({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(addProject, params); !!resolve && resolve(response); }, *updateProject({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(updateProject, params); !!resolve && resolve(response); }, *getProjectDetail({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(getProjectDetail, params); !!resolve && resolve(response); if (response.code === 0) { yield put({ type: 'saveProjectDetail', payload: response.data, }); } }, }, reducers: { saveNotice(state, action) { return { ...state, notice: action.payload, }; }, saveProjectList(state, { payload }) { return { ...state, projectList: payload, }; }, saveProjectListTotal(state, { payload }) { return { ...state, total: payload, }; }, saveProjectDetail(state, { payload }) { return { ...state, projectDetail: payload, }; }, }, }; ================================================ FILE: src/models/setting.js ================================================ import { message } from 'antd'; import defaultSettings from '../defaultSettings'; let lessNodesAppended; const updateTheme = primaryColor => { // Don't compile less in production! if (APP_TYPE !== 'site') { return; } // Determine if the component is remounted if (!primaryColor) { return; } const hideMessage = message.loading('正在编译主题!', 0); function buildIt() { if (!window.less) { return; } setTimeout(() => { window.less .modifyVars({ '@primary-color': primaryColor, }) .then(() => { hideMessage(); }) .catch(() => { message.error('Failed to update theme'); hideMessage(); }); }, 200); } if (!lessNodesAppended) { // insert less.js and color.less const lessStyleNode = document.createElement('link'); const lessConfigNode = document.createElement('script'); const lessScriptNode = document.createElement('script'); lessStyleNode.setAttribute('rel', 'stylesheet/less'); lessStyleNode.setAttribute('href', '/color.less'); lessConfigNode.innerHTML = ` window.less = { async: true, env: 'production', javascriptEnabled: true }; `; lessScriptNode.src = 'https://gw.alipayobjects.com/os/lib/less.js/3.8.1/less.min.js'; lessScriptNode.async = true; lessScriptNode.onload = () => { buildIt(); lessScriptNode.onload = null; }; document.body.appendChild(lessStyleNode); document.body.appendChild(lessConfigNode); document.body.appendChild(lessScriptNode); lessNodesAppended = true; } else { buildIt(); } }; const updateColorWeak = colorWeak => { document.body.className = colorWeak ? 'colorWeak' : ''; }; export default { namespace: 'setting', state: defaultSettings, reducers: { getSetting(state) { const setting = {}; const urlParams = new URL(window.location.href); Object.keys(state).forEach(key => { if (urlParams.searchParams.has(key)) { const value = urlParams.searchParams.get(key); setting[key] = value === '1' ? true : value; } }); const { primaryColor, colorWeak } = setting; if (state.primaryColor !== primaryColor) { updateTheme(primaryColor); } updateColorWeak(colorWeak); return { ...state, ...setting, }; }, changeSetting(state, { payload }) { const urlParams = new URL(window.location.href); Object.keys(defaultSettings).forEach(key => { if (urlParams.searchParams.has(key)) { urlParams.searchParams.delete(key); } }); Object.keys(payload).forEach(key => { if (key === 'collapse') { return; } let value = payload[key]; if (value === true) { value = 1; } if (defaultSettings[key] !== value) { urlParams.searchParams.set(key, value); } }); const { primaryColor, colorWeak, contentWidth } = payload; if (state.primaryColor !== primaryColor) { updateTheme(primaryColor); } if (state.contentWidth !== contentWidth && window.dispatchEvent) { window.dispatchEvent(new Event('resize')); } updateColorWeak(colorWeak); window.history.replaceState(null, 'setting', urlParams.href); return { ...state, ...payload, }; }, }, }; ================================================ FILE: src/models/tag.js ================================================ import { queryTag, addTag, delTag } from '@/services/api'; export default { namespace: 'tag', state: { tagList: [], total: 0, }, effects: { *queryTag({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(queryTag, params); !!resolve && resolve(response); // 返回数据 // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveTagList', payload: response.data.list, }); yield put({ type: 'saveTagListTotal', payload: response.data.count, }); } else { // } }, *addTag({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(addTag, params); !!resolve && resolve(response); }, *delTag({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(delTag, params); !!resolve && resolve(response); }, }, reducers: { saveTagList(state, { payload }) { return { ...state, tagList: payload, }; }, saveTagListTotal(state, { payload }) { return { ...state, total: payload, }; }, }, }; ================================================ FILE: src/models/timeAxis.js ================================================ import { queryTimeAxis, delTimeAxis, updateTimeAxis, addTimeAxis,getTimeAxisDetail } from '@/services/api'; export default { namespace: 'timeAxis', state: { timeAxisList: [], total: 0, timeAxisDetail: { title: '', state: '', content: '', _id: '', }, }, effects: { *queryTimeAxis({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(queryTimeAxis, params); !!resolve && resolve(response); // 返回数据 // console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveTimeAxisList', payload: response.data.list, }); yield put({ type: 'saveTimeAxisListTotal', payload: response.data.count, }); } }, *delTimeAxis({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(delTimeAxis, params); !!resolve && resolve(response); }, *addTimeAxis({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(addTimeAxis, params); !!resolve && resolve(response); }, *updateTimeAxis({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(updateTimeAxis, params); !!resolve && resolve(response); }, *getTimeAxisDetail({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(getTimeAxisDetail, params); !!resolve && resolve(response); console.log('response :', response) if (response.code === 0) { yield put({ type: 'saveTimeAxisDetail', payload: response.data, }); } }, }, reducers: { saveTimeAxisList(state, { payload }) { return { ...state, timeAxisList: payload, }; }, saveTimeAxisListTotal(state, { payload }) { return { ...state, total: payload, }; }, saveTimeAxisDetail(state, { payload }) { return { ...state, timeAxisDetail: payload, }; }, }, }; ================================================ FILE: src/models/user.js ================================================ import { query as queryAdmin, queryCurrent } from '@/services/user'; export default { namespace: 'user', state: { list: [], currentUser: {}, }, effects: { *fetch(_, { call, put }) { const response = yield call(queryAdmin); yield put({ type: 'save', payload: response, }); }, *fetchCurrent(_, { call, put }) { const response = yield call(queryCurrent); yield put({ type: 'saveCurrentUser', payload: response.data, }); }, *delUser({ payload }, { call, put }) { const { resolve, params } = payload; const response = yield call(delUser, params); !!resolve && resolve(response); }, }, reducers: { save(state, action) { return { ...state, list: action.payload, }; }, saveCurrentUser(state, action) { return { ...state, currentUser: action.payload || {}, }; }, changeNotifyCount(state, action) { return { ...state, currentUser: { ...state.currentUser, notifyCount: action.payload, }, }; }, saveUserList(state, { payload }) { return { ...state, userList: payload, }; }, saveUserListTotal(state, { payload }) { return { ...state, total: payload, }; }, }, }; ================================================ FILE: src/pages/404.js ================================================ import React from 'react'; import Link from 'umi/link'; import Exception from '@/components/Exception'; export default () => ( ); ================================================ FILE: src/pages/Account/Settings/BaseView.js ================================================ import React, { Component, Fragment } from 'react'; import { formatMessage, FormattedMessage } from 'umi/locale'; import { Form, Input, Upload, Select, Button } from 'antd'; import { connect } from 'dva'; import styles from './BaseView.less'; // import { getTimeDistance } from '@/utils/utils'; const FormItem = Form.Item; const { Option } = Select; // 头像组件 方便以后独立,增加裁剪之类的功能 const AvatarView = ({ avatar }) => (
Avatar
avatar
); @connect(({ user }) => ({ currentUser: user.currentUser, })) @Form.create() class BaseView extends Component { componentDidMount() { this.setBaseInfo(); } setBaseInfo = () => { const { currentUser, form } = this.props; Object.keys(form.getFieldsValue()).forEach(key => { const obj = {}; obj[key] = currentUser[key] || null; form.setFieldsValue(obj); }); }; getAvatarURL() { const { currentUser } = this.props; if (currentUser.avatar) { return currentUser.avatar; } const url = 'https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png'; return url; } getViewDom = ref => { this.view = ref; }; render() { const { form: { getFieldDecorator }, } = this.props; return (
{getFieldDecorator('email', { rules: [ { required: true, message: formatMessage({ id: 'app.settings.basic.email-message' }, {}), }, ], })()} {getFieldDecorator('name', { rules: [ { required: true, message: formatMessage({ id: 'app.settings.basic.nickname-message' }, {}), }, ], })()} {getFieldDecorator('profile', { rules: [ { required: true, message: formatMessage({ id: 'app.settings.basic.profile-message' }, {}), }, ], })( )}
); } } export default BaseView; ================================================ FILE: src/pages/Account/Settings/BaseView.less ================================================ @import '~antd/lib/style/themes/default.less'; .baseView { display: flex; padding-top: 12px; .left { max-width: 448px; min-width: 224px; } .right { flex: 1; padding-left: 104px; .avatar_title { height: 22px; font-size: @font-size-base; color: @heading-color; line-height: 22px; margin-bottom: 8px; } .avatar { width: 144px; height: 144px; margin-bottom: 12px; overflow: hidden; img { width: 100%; } } .button_view { width: 144px; text-align: center; } } } @media screen and (max-width: @screen-xl) { .baseView { flex-direction: column-reverse; .right { padding: 20px; display: flex; flex-direction: column; align-items: center; max-width: 448px; .avatar_title { display: none; } } } } ================================================ FILE: src/pages/Account/Settings/Info.js ================================================ import React, { Component } from 'react'; import { connect } from 'dva'; import router from 'umi/router'; import { FormattedMessage } from 'umi/locale'; import { Menu } from 'antd'; import GridContent from '@/components/PageHeaderWrapper/GridContent'; import styles from './Info.less'; const { Item } = Menu; @connect(({ user }) => ({ currentUser: user.currentUser, })) class Info extends Component { constructor(props) { super(props); const { match, location } = props; const menuMap = { base: , personalLink: ( ), }; const key = location.pathname.replace(`${match.path}/`, ''); this.state = { mode: 'inline', menuMap, selectKey: menuMap[key] ? key : 'base', }; } static getDerivedStateFromProps(props, state) { const { match, location } = props; let selectKey = location.pathname.replace(`${match.path}/`, ''); selectKey = state.menuMap[selectKey] ? selectKey : 'base'; if (selectKey !== state.selectKey) { return { selectKey }; } return null; } componentDidMount() { window.addEventListener('resize', this.resize); this.resize(); } componentWillUnmount() { window.removeEventListener('resize', this.resize); } getmenu = () => { const { menuMap } = this.state; return Object.keys(menuMap).map(item => {menuMap[item]}); }; getRightTitle = () => { const { selectKey, menuMap } = this.state; return menuMap[selectKey]; }; selectKey = ({ key }) => { router.push(`/account/settings/${key}`); this.setState({ selectKey: key, }); }; resize = () => { if (!this.main) { return; } requestAnimationFrame(() => { let mode = 'inline'; const { offsetWidth } = this.main; if (this.main.offsetWidth < 641 && offsetWidth > 400) { mode = 'horizontal'; } if (window.innerWidth < 768 && offsetWidth > 400) { mode = 'horizontal'; } this.setState({ mode, }); }); }; render() { const { children, currentUser } = this.props; if (!currentUser.userid) { return ''; } const { mode, selectKey } = this.state; return (
{ this.main = ref; }} >
{this.getmenu()}
{this.getRightTitle()}
{children}
); } } export default Info; ================================================ FILE: src/pages/Account/Settings/Info.less ================================================ @import '~antd/lib/style/themes/default.less'; .main { width: 100%; height: 100%; background-color: @body-background; display: flex; padding-top: 16px; padding-bottom: 16px; overflow: auto; .leftmenu { width: 224px; border-right: @border-width-base @border-style-base @border-color-split; :global { .ant-menu-inline { border: none; } .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected { font-weight: bold; } } } .right { flex: 1; padding-left: 40px; padding-right: 40px; padding-top: 8px; padding-bottom: 8px; .title { font-size: 20px; color: @heading-color; line-height: 28px; font-weight: 500; margin-bottom: 12px; } } :global { .ant-list-split .ant-list-item:last-child { border-bottom: 1px solid #e8e8e8; } .ant-list-item { padding-top: 14px; padding-bottom: 14px; } } } :global { .ant-list-item-meta { // 账号绑定图标 .taobao { color: #ff4000; display: block; font-size: 48px; line-height: 48px; border-radius: @border-radius-base; } .dingding { background-color: #2eabff; color: #fff; font-size: 32px; line-height: 32px; padding: 6px; margin: 2px; border-radius: @border-radius-base; } .alipay { color: #2eabff; font-size: 48px; line-height: 48px; border-radius: @border-radius-base; } } // 密码强度 font.strong { color: @success-color; } font.medium { color: @warning-color; } font.weak { color: @error-color; } } @media screen and (max-width: @screen-md) { .main { flex-direction: column; .leftmenu { width: 100%; border: none; } .right { padding: 40px; } } } ================================================ FILE: src/pages/Account/Settings/PersonalLinkView.js ================================================ import React, { Component, Fragment } from 'react'; import { formatMessage } from 'umi/locale'; import { Switch, List, Button, Icon, Modal, Input } from 'antd'; const confirm = Modal.confirm; class ModelLink extends Component { constructor(props) { super(props); } render() { const param = this.props.stateParam; return (
); } } class NotificationView extends Component { constructor(props) { super(props); this.state = { name: '', icon: '', url: '', desc: '', visible: false, confirmLoading: false, }; this.handleChange = this.handleChange.bind(this); this.showModal = this.showModal.bind(this); this.handleOk = this.handleOk.bind(this); this.handleCancel = this.handleCancel.bind(this); this.showDeleteConfirm = this.showDeleteConfirm.bind(this); } handleChange(event) { console.log('event.target.name:', event.target.name); console.log('event.target.value:', event.target.value); this.setState({ [event.target.name]: event.target.value, }); } showModal = () => { this.setState({ visible: true, }); }; handleOk = () => { this.setState({ ModalText: 'The modal will be closed after two seconds', confirmLoading: true, }); setTimeout(() => { this.setState({ visible: false, confirmLoading: false, }); }, 2000); }; handleCancel = () => { console.log('Clicked cancel button'); this.setState({ visible: false, }); }; showDeleteConfirm = () => { confirm({ title: 'Are you sure delete this task?', content: 'Some descriptions', okText: 'Yes', okType: 'danger', cancelText: 'No', onOk() { console.log('OK'); }, onCancel() { console.log('Cancel'); }, }); }; getData = () => { const Action = (
); return [ { title: 'github', icon: 'github', description: 'github 链接', url: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png', actions: [Action], }, { title: '微信', icon: 'wechat', description: '微信 链接', url: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png', actions: [Action], }, { title: 'segmentFault', icon: 'github', description: 'segmentFault 链接', url: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png', actions: [Action], }, ]; }; render() { return (
( {item.url} )} />
); } } export default NotificationView; ================================================ FILE: src/pages/Article/ArticleComponent.js ================================================ import React from 'react'; import { Input, Modal, Select, notification } from 'antd'; import { connect } from 'dva'; @connect(({ article, tag, category }) => ({ article, tag, category, })) class ArticleComponent extends React.Component { constructor(props) { super(props); this.state = { loading: false, keywordCom: '', pageNum: 1, pageSize: 50, }; this.handleSearchTag = this.handleSearchTag.bind(this); this.handleSearchCategory = this.handleSearchCategory.bind(this); } componentDidMount() { this.handleSearchTag(); this.handleSearchCategory(); } handleSearchTag = () => { this.setState({ loading: true, }); const { dispatch } = this.props; const params = { keyword: this.state.keywordCom, pageNum: this.state.pageNum, pageSize: this.state.pageSize, }; new Promise(resolve => { dispatch({ type: 'tag/queryTag', payload: { resolve, params, }, }); }).then(res => { // console.log('res :', res); if (res.code === 0) { this.setState({ loading: false, }); } else { notification.error({ message: res.message, }); } }); }; handleSearchCategory = () => { this.setState({ loading: true, }); const { dispatch } = this.props; const params = { keyword: this.state.keyword, pageNum: this.state.pageNum, pageSize: this.state.pageSize, }; new Promise(resolve => { dispatch({ type: 'category/queryCategory', payload: { resolve, params, }, }); }).then(res => { // console.log('res :', res); if (res.code === 0) { this.setState({ loading: false, }); } else { notification.error({ message: res.message, }); } }); }; render() { const { tagList } = this.props.tag; const { categoryList } = this.props.category; const children = []; const categoryChildren = []; for (let i = 0; i < tagList.length; i++) { const e = tagList[i]; children.push( {e.name} ); } for (let i = 0; i < categoryList.length; i++) { const e = categoryList[i]; categoryChildren.push( {e.name} ); } const { articleDetail } = this.props.article; const { changeType } = this.props; let originDefault = '原创'; let stateDefault = '发布'; // 文章发布状态 => 0 草稿,1 发布 let typeDefault = '普通文章'; // 文章类型 => 1: 普通文章,2: 简历,3: 管理员介绍 let categoryDefault = []; let tagsDefault = []; if (changeType) { originDefault = articleDetail.origin === 0 ? '原创' : ''; stateDefault = articleDetail.state ? '已发布' : '草稿'; typeDefault = articleDetail.type === 1 ? '普通文章' : articleDetail.type === 2 ? '简历' : '管理员介绍'; categoryDefault = this.props.categoryDefault; tagsDefault = this.props.tagsDefault; } else { originDefault = '原创'; stateDefault = '发布'; // 文章发布状态 => 0 草稿,1 发布 categoryDefault = []; tagsDefault = []; } // console.log('originDefault :', originDefault) // console.log('stateDefault :', stateDefault) // console.log('categoryDefault :', categoryDefault) // console.log('tagsDefault :', tagsDefault) const { TextArea } = Input; const normalCenter = { textAlign: 'center', marginBottom: 20, }; return (