Unverified Commit 569f1cd9 authored by 陈帅's avatar 陈帅 Committed by GitHub

use umi-request (#3883)

* use umi-request

* use data repalce to body
parent 5af79375
{ {
"name": "ant-design-pro", "name": "ant-design-pro",
"version": "2.3.0", "version": "2.3.0",
"description": "An out-of-box UI solution for enterprise applications",
"private": true, "private": true,
"description": "An out-of-box UI solution for enterprise applications",
"scripts": { "scripts": {
"presite": "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 && npm run docker:push",
"analyze": "cross-env ANALYZE=1 umi build", "analyze": "cross-env ANALYZE=1 umi build",
"lint:style": "stylelint 'src/**/*.less' --syntax less", "build": "umi build",
"lint:prettier": "check-prettier lint", "docker-hub:build": "docker build -f Dockerfile.hub -t ant-design-pro ./",
"docker-prod:build": "docker-compose -f ./docker/docker-compose.yml build",
"docker-prod:dev": "docker-compose -f ./docker/docker-compose.yml up",
"docker:build": "docker-compose -f ./docker/docker-compose.dev.yml build",
"docker:dev": "docker-compose -f ./docker/docker-compose.dev.yml up",
"docker:push": "npm run docker-hub:build && npm run docker:tag && docker push antdesign/ant-design-pro",
"docker:tag": "docker tag ant-design-pro antdesign/ant-design-pro",
"lint": "eslint --ext .js src mock tests && npm run lint:style && npm run lint:prettier", "lint": "eslint --ext .js src mock tests && npm run lint:style && npm run lint:prettier",
"lint:fix": "eslint --fix --ext .js src mock tests && stylelint --fix 'src/**/*.less' --syntax less",
"lint-staged": "lint-staged", "lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js", "lint-staged:js": "eslint --ext .js",
"tslint": "npm run tslint:fix", "lint:fix": "eslint --fix --ext .js src mock tests && stylelint --fix 'src/**/*.less' --syntax less",
"tslint:fix": "tslint --fix 'src/**/*.ts*'", "lint:prettier": "check-prettier lint",
"lint:style": "stylelint 'src/**/*.less' --syntax less",
"prettier": "node ./scripts/prettier.js",
"presite": "cd functions && npm install",
"site": "npm run presite && cross-env APP_TYPE=site npm run build && firebase deploy && npm run docker:push",
"start": "cross-env APP_TYPE=site umi dev",
"start:no-mock": "cross-env MOCK=none umi dev",
"test": "umi test", "test": "umi test",
"test:component": "umi test ./src/components",
"test:all": "node ./tests/run-tests.js", "test:all": "node ./tests/run-tests.js",
"prettier": "node ./scripts/prettier.js", "test:component": "umi test ./src/components",
"docker:dev": "docker-compose -f ./docker/docker-compose.dev.yml up", "tslint": "npm run tslint:fix",
"docker:build": "docker-compose -f ./docker/docker-compose.dev.yml build", "tslint:fix": "tslint --fix 'src/**/*.ts*'"
"docker-prod:dev": "docker-compose -f ./docker/docker-compose.yml up",
"docker-prod:build": "docker-compose -f ./docker/docker-compose.yml build",
"docker-hub:build": "docker build -f Dockerfile.hub -t ant-design-pro ./",
"docker:tag": "docker tag ant-design-pro antdesign/ant-design-pro",
"docker:push": "npm run docker-hub:build && npm run docker:tag && docker push antdesign/ant-design-pro"
}, },
"dependencies": { "dependencies": {
"@antv/data-set": "^0.10.1", "@antv/data-set": "^0.10.1",
...@@ -40,7 +40,6 @@ ...@@ -40,7 +40,6 @@
"dva": "^2.4.1", "dva": "^2.4.1",
"enquire-js": "^0.2.1", "enquire-js": "^0.2.1",
"gg-editor": "^2.0.2", "gg-editor": "^2.0.2",
"hash.js": "^1.1.7",
"lodash": "^4.17.11", "lodash": "^4.17.11",
"lodash-decorators": "^6.0.1", "lodash-decorators": "^6.0.1",
"memoize-one": "^5.0.0", "memoize-one": "^5.0.0",
...@@ -60,7 +59,8 @@ ...@@ -60,7 +59,8 @@
"react-fittext": "^1.0.0", "react-fittext": "^1.0.0",
"react-media": "^1.9.2", "react-media": "^1.9.2",
"umi": "^2.4.4", "umi": "^2.4.4",
"umi-plugin-react": "^1.7.2" "umi-plugin-react": "^1.7.2",
"umi-request": "^1.0.5"
}, },
"devDependencies": { "devDependencies": {
"@types/history": "^4.7.2", "@types/history": "^4.7.2",
...@@ -107,16 +107,21 @@ ...@@ -107,16 +107,21 @@
"optionalDependencies": { "optionalDependencies": {
"puppeteer": "^1.12.1" "puppeteer": "^1.12.1"
}, },
"engines": {
"node": ">=8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": { "lint-staged": {
"**/*.less": "stylelint --syntax less",
"**/*.{js,jsx}": "npm run lint-staged:js",
"**/*.{js,ts,tsx,json,jsx,less}": [ "**/*.{js,ts,tsx,json,jsx,less}": [
"node ./scripts/lint-prettier.js", "node ./scripts/lint-prettier.js",
"git add" "git add"
], ]
"**/*.{js,jsx}": "npm run lint-staged:js",
"**/*.less": "stylelint --syntax less"
},
"engines": {
"node": ">=8.0.0"
}, },
"browserslist": [ "browserslist": [
"> 1%", "> 1%",
...@@ -129,10 +134,5 @@ ...@@ -129,10 +134,5 @@
"src/**/*.less", "src/**/*.less",
"config/**/*.js*", "config/**/*.js*",
"scripts/**/*.js" "scripts/**/*.js"
], ]
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
} }
...@@ -16,7 +16,7 @@ export async function queryRule(params) { ...@@ -16,7 +16,7 @@ export async function queryRule(params) {
export async function removeRule(params) { export async function removeRule(params) {
return request('/api/rule', { return request('/api/rule', {
method: 'POST', method: 'POST',
body: { data: {
...params, ...params,
method: 'delete', method: 'delete',
}, },
...@@ -26,7 +26,7 @@ export async function removeRule(params) { ...@@ -26,7 +26,7 @@ export async function removeRule(params) {
export async function addRule(params) { export async function addRule(params) {
return request('/api/rule', { return request('/api/rule', {
method: 'POST', method: 'POST',
body: { data: {
...params, ...params,
method: 'post', method: 'post',
}, },
...@@ -36,7 +36,7 @@ export async function addRule(params) { ...@@ -36,7 +36,7 @@ export async function addRule(params) {
export async function updateRule(params = {}) { export async function updateRule(params = {}) {
return request(`/api/rule?${stringify(params.query)}`, { return request(`/api/rule?${stringify(params.query)}`, {
method: 'POST', method: 'POST',
body: { data: {
...params.body, ...params.body,
method: 'update', method: 'update',
}, },
...@@ -46,7 +46,7 @@ export async function updateRule(params = {}) { ...@@ -46,7 +46,7 @@ export async function updateRule(params = {}) {
export async function fakeSubmitForm(params) { export async function fakeSubmitForm(params) {
return request('/api/forms', { return request('/api/forms', {
method: 'POST', method: 'POST',
body: params, data: params,
}); });
} }
...@@ -74,7 +74,7 @@ export async function removeFakeList(params) { ...@@ -74,7 +74,7 @@ export async function removeFakeList(params) {
const { count = 5, ...restParams } = params; const { count = 5, ...restParams } = params;
return request(`/api/fake_list?count=${count}`, { return request(`/api/fake_list?count=${count}`, {
method: 'POST', method: 'POST',
body: { data: {
...restParams, ...restParams,
method: 'delete', method: 'delete',
}, },
...@@ -85,7 +85,7 @@ export async function addFakeList(params) { ...@@ -85,7 +85,7 @@ export async function addFakeList(params) {
const { count = 5, ...restParams } = params; const { count = 5, ...restParams } = params;
return request(`/api/fake_list?count=${count}`, { return request(`/api/fake_list?count=${count}`, {
method: 'POST', method: 'POST',
body: { data: {
...restParams, ...restParams,
method: 'post', method: 'post',
}, },
...@@ -96,7 +96,7 @@ export async function updateFakeList(params) { ...@@ -96,7 +96,7 @@ export async function updateFakeList(params) {
const { count = 5, ...restParams } = params; const { count = 5, ...restParams } = params;
return request(`/api/fake_list?count=${count}`, { return request(`/api/fake_list?count=${count}`, {
method: 'POST', method: 'POST',
body: { data: {
...restParams, ...restParams,
method: 'update', method: 'update',
}, },
...@@ -106,14 +106,14 @@ export async function updateFakeList(params) { ...@@ -106,14 +106,14 @@ export async function updateFakeList(params) {
export async function fakeAccountLogin(params) { export async function fakeAccountLogin(params) {
return request('/api/login/account', { return request('/api/login/account', {
method: 'POST', method: 'POST',
body: params, data: params,
}); });
} }
export async function fakeRegister(params) { export async function fakeRegister(params) {
return request('/api/register', { return request('/api/register', {
method: 'POST', method: 'POST',
body: params, data: params,
}); });
} }
......
import fetch from 'dva/fetch'; /**
* request 网络请求工具
* 更详细的api文档: https://bigfish.alipay.com/doc/api#request
*/
import { extend } from 'umi-request';
import { notification } from 'antd'; import { notification } from 'antd';
import router from 'umi/router'; import router from 'umi/router';
import hash from 'hash.js';
import { isAntdPro } from './utils';
const codeMessage = { const codeMessage = {
200: '服务器成功返回请求的数据。', 200: '服务器成功返回请求的数据。',
...@@ -22,134 +24,50 @@ const codeMessage = { ...@@ -22,134 +24,50 @@ const codeMessage = {
504: '网关超时。', 504: '网关超时。',
}; };
const checkStatus = response => { /**
if (response.status >= 200 && response.status < 300) { * 异常处理程序
return response; */
} const errorHandler = error => {
const { response = {} } = error;
const errortext = codeMessage[response.status] || response.statusText; const errortext = codeMessage[response.status] || response.statusText;
const { status, url } = response;
notification.error({ notification.error({
message: `请求错误 ${response.status}: ${response.url}`, message: `请求错误 ${status}: ${url}`,
description: errortext, description: errortext,
}); });
const error = new Error(errortext);
error.name = response.status;
error.response = response;
throw error;
};
const cachedSave = (response, hashcode) => { if (status === 401) {
/** notification.error({
* Clone a response data and store it in sessionStorage message: '未登录或登录已过期,请重新登录。',
* Does not support data other than json, Cache only json });
*/ // @HACK
const contentType = response.headers.get('Content-Type'); /* eslint-disable no-underscore-dangle */
if (contentType && contentType.match(/application\/json/i)) { window.g_app._store.dispatch({
// All data is saved as text type: 'login/logout',
response });
.clone() return;
.text() }
.then(content => { // environment should not be used
sessionStorage.setItem(hashcode, content); if (status === 403) {
sessionStorage.setItem(`${hashcode}:timestamp`, Date.now()); router.push('/exception/403');
}); return;
}
if (status <= 504 && status >= 500) {
router.push('/exception/500');
return;
}
if (status >= 404 && status < 422) {
router.push('/exception/404');
} }
return response;
}; };
/** /**
* Requests a URL, returning a promise. * 配置request请求时的默认参数
*
* @param {string} url The URL we want to request
* @param {object} [option] The options we want to pass to "fetch"
* @return {object} An object containing either "data" or "err"
*/ */
export default function request(url, option) { const request = extend({
const options = { errorHandler, // 默认错误处理
expirys: isAntdPro(), credentials: 'include', // 默认请求是否带上cookie
...option, });
};
/**
* Produce fingerprints based on url and parameters
* Maybe url has the same parameters
*/
const fingerprint = url + (options.body ? JSON.stringify(options.body) : '');
const hashcode = hash
.sha256()
.update(fingerprint)
.digest('hex');
const defaultOptions = { export default request;
credentials: 'include',
};
const newOptions = { ...defaultOptions, ...options };
if (
newOptions.method === 'POST' ||
newOptions.method === 'PUT' ||
newOptions.method === 'DELETE'
) {
if (!(newOptions.body instanceof FormData)) {
newOptions.headers = {
Accept: 'application/json',
'Content-Type': 'application/json; charset=utf-8',
...newOptions.headers,
};
newOptions.body = JSON.stringify(newOptions.body);
} else {
// newOptions.body is FormData
newOptions.headers = {
Accept: 'application/json',
...newOptions.headers,
};
}
}
const expirys = options.expirys && 60;
// options.expirys !== false, return the cache,
if (options.expirys !== false) {
const cached = sessionStorage.getItem(hashcode);
const whenCached = sessionStorage.getItem(`${hashcode}:timestamp`);
if (cached !== null && whenCached !== null) {
const age = (Date.now() - whenCached) / 1000;
if (age < expirys) {
const response = new Response(new Blob([cached]));
return response.json();
}
sessionStorage.removeItem(hashcode);
sessionStorage.removeItem(`${hashcode}:timestamp`);
}
}
return fetch(url, newOptions)
.then(checkStatus)
.then(response => cachedSave(response, hashcode))
.then(response => {
// DELETE and 204 do not return data by default
// using .json will report an error.
if (newOptions.method === 'DELETE' || response.status === 204) {
return response.text();
}
return response.json();
})
.catch(e => {
const status = e.name;
if (status === 401) {
// @HACK
/* eslint-disable no-underscore-dangle */
window.g_app._store.dispatch({
type: 'login/logout',
});
return;
}
// environment should not be used
if (status === 403) {
router.push('/exception/403');
return;
}
if (status <= 504 && status >= 500) {
router.push('/exception/500');
return;
}
if (status >= 404 && status < 422) {
router.push('/exception/404');
}
});
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment