wip-request

This commit is contained in:
h_mo 2022-06-08 22:33:40 +08:00
parent 9975bd9a22
commit 55eb2d252a
3 changed files with 30 additions and 23 deletions

View File

@ -1,4 +1,4 @@
import { HttpRequestConfig } from '@/utils/types/http'; import { HttpRequestConfig } from '@/types/http';
/** /**
* *

View File

@ -1,5 +1,6 @@
import adapter from '../adapters'; import adapter from '../adapters';
import { HttpRequestConfig } from '@/types/http';
export default (config) => { export default (config: HttpRequestConfig) => {
return adapter(config); return adapter(config);
}; };

View File

@ -1,19 +1,23 @@
'use strict'; 'use strict';
import { cloneDeep } from 'lodash-es'; import { cloneDeep, values } from 'lodash-es';
// utils is a library of generic helper functions non-specific to axios // utils is a library of generic helper functions non-specific to axios
const toString = Object.prototype.toString; const toString = Object.prototype.toString;
export function is(val: unknown, type: string) {
return toString.call(val) === `[object ${type}]`;
}
/** /**
* Determine if a value is an Array * Determine if a value is an Array
* *
* @param {Object} val The value to test * @param {Object} val The value to test
* @returns {boolean} True if value is an Array, otherwise false * @returns {boolean} True if value is an Array, otherwise false
*/ */
export function isArray(val) { export function isArray(val: any): val is Array<any> {
return toString.call(val) === '[object Array]'; return val && Array.isArray(val);
} }
/** /**
@ -22,8 +26,8 @@ export function isArray(val) {
* @param {Object} val The value to test * @param {Object} val The value to test
* @returns {boolean} True if value is an Object, otherwise false * @returns {boolean} True if value is an Object, otherwise false
*/ */
export function isObject(val) { export function isObject(val: any): val is Record<any, any> {
return val !== null && typeof val === 'object'; return val !== null && is(val, 'Object');
} }
/** /**
@ -32,8 +36,8 @@ export function isObject(val) {
* @param {Object} val The value to test * @param {Object} val The value to test
* @returns {boolean} True if value is a Date, otherwise false * @returns {boolean} True if value is a Date, otherwise false
*/ */
export function isDate(val) { export function isDate(val: unknown): val is Date {
return toString.call(val) === '[object Date]'; return is(val, 'Date');
} }
/** /**
@ -42,8 +46,8 @@ export function isDate(val) {
* @param {Object} val The value to test * @param {Object} val The value to test
* @returns {boolean} True if value is a URLSearchParams object, otherwise false * @returns {boolean} True if value is a URLSearchParams object, otherwise false
*/ */
export function isURLSearchParams(val: object) { export function isURLSearchParams(val: unknown): val is URLSearchParams {
return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams; return is(val, 'URLSearchParams');
} }
/** /**
@ -58,7 +62,7 @@ export function isURLSearchParams(val: object) {
* @param {Object|Array} obj The object to iterate * @param {Object|Array} obj The object to iterate
* @param {Function} fn The callback to invoke for each item * @param {Function} fn The callback to invoke for each item
*/ */
export function forEach(obj, fn) { export function forEach(obj: any, fn: any) {
// Don't bother if no value provided // Don't bother if no value provided
if (obj === null || typeof obj === 'undefined') { if (obj === null || typeof obj === 'undefined') {
return; return;
@ -66,18 +70,17 @@ export function forEach(obj, fn) {
// Force an array if not already something iterable // Force an array if not already something iterable
if (typeof obj !== 'object') { if (typeof obj !== 'object') {
/*eslint no-param-reassign:0*/
obj = [obj]; obj = [obj];
} }
if (isArray(obj)) { if (isArray(obj)) {
// Iterate over array values // Iterate over array values
for (var i = 0, l = obj.length; i < l; i++) { obj.forEach((val, index, curObj) => {
fn.call(null, obj[i], i, obj); fn.call(null, val, index, curObj);
} });
} else { } else {
// Iterate over object keys // Iterate over object keys
for (var key in obj) { for (let key in obj) {
if (Object.prototype.hasOwnProperty.call(obj, key)) { if (Object.prototype.hasOwnProperty.call(obj, key)) {
fn.call(null, obj[key], key, obj); fn.call(null, obj[key], key, obj);
} }
@ -90,8 +93,8 @@ export function forEach(obj, fn) {
* @param val * @param val
* @returns {boolean} * @returns {boolean}
*/ */
export function isBoolean(val) { export function isBoolean(val: unknown): val is boolean {
return typeof val === 'boolean'; return is(val, 'Boolean');
} }
/** /**
@ -99,7 +102,7 @@ export function isBoolean(val) {
* @param {any} obj - * @param {any} obj -
* @returns {boolean} * @returns {boolean}
*/ */
export function isPlainObject(obj) { export function isPlainObject(obj: object): boolean {
return Object.prototype.toString.call(obj) === '[object Object]'; return Object.prototype.toString.call(obj) === '[object Object]';
} }
@ -111,12 +114,15 @@ export function isPlainObject(obj) {
* @param {Object} obj1 Object to merge * @param {Object} obj1 Object to merge
* @returns {Object} Result of all merge properties * @returns {Object} Result of all merge properties
*/ */
export function deepMerge(/* obj1, obj2, obj3, ... */) { export function deepMerge(/* obj1, obj2, obj3, ... */) {
let result = {}; let result: any = {};
function assignValue(val, key) { function assignValue(val: any, key: any) {
if (typeof result[key] === 'object' && typeof val === 'object') { if (typeof result[key] === 'object' && typeof val === 'object') {
// @ts-ignore
result[key] = deepMerge(result[key], val); result[key] = deepMerge(result[key], val);
} else if (typeof val === 'object') { } else if (typeof val === 'object') {
// @ts-ignore
result[key] = deepMerge({}, val); result[key] = deepMerge({}, val);
} else { } else {
result[key] = val; result[key] = val;
@ -128,6 +134,6 @@ export function deepMerge(/* obj1, obj2, obj3, ... */) {
return result; return result;
} }
export function isUndefined(val) { export function isUndefined<T = unknown>(val?: T): val is T {
return typeof val === 'undefined'; return typeof val === 'undefined';
} }