2017-04-18 07:09:13 +00:00
|
|
|
|
/**
|
2019-05-05 08:49:40 +00:00
|
|
|
|
* Created by PanJiaChen on 16/11/18.
|
2017-04-18 07:09:13 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* Parse the time to string
|
|
|
|
|
* @param {(Object|string|number)} time
|
|
|
|
|
* @param {string} cFormat
|
|
|
|
|
* @returns {string}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function parseTime(time, cFormat) {
|
|
|
|
|
if (arguments.length === 0) {
|
|
|
|
|
return null
|
|
|
|
|
}
|
|
|
|
|
const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}'
|
|
|
|
|
let date
|
|
|
|
|
if (typeof time === 'object') {
|
|
|
|
|
date = time
|
|
|
|
|
} else {
|
2019-01-24 07:32:35 +00:00
|
|
|
|
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
|
|
|
|
|
time = parseInt(time)
|
|
|
|
|
}
|
|
|
|
|
if ((typeof time === 'number') && (time.toString().length === 10)) {
|
|
|
|
|
time = time * 1000
|
|
|
|
|
}
|
2017-10-31 08:04:30 +00:00
|
|
|
|
date = new Date(time)
|
|
|
|
|
}
|
|
|
|
|
const formatObj = {
|
|
|
|
|
y: date.getFullYear(),
|
|
|
|
|
m: date.getMonth() + 1,
|
|
|
|
|
d: date.getDate(),
|
|
|
|
|
h: date.getHours(),
|
|
|
|
|
i: date.getMinutes(),
|
|
|
|
|
s: date.getSeconds(),
|
|
|
|
|
a: date.getDay()
|
|
|
|
|
}
|
|
|
|
|
const time_str = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
|
|
|
|
|
let value = formatObj[key]
|
2018-08-23 09:52:57 +00:00
|
|
|
|
// Note: getDay() returns 0 on Sunday
|
|
|
|
|
if (key === 'a') { return ['日', '一', '二', '三', '四', '五', '六'][value ] }
|
2017-10-31 08:04:30 +00:00
|
|
|
|
if (result.length > 0 && value < 10) {
|
|
|
|
|
value = '0' + value
|
|
|
|
|
}
|
|
|
|
|
return value || 0
|
|
|
|
|
})
|
|
|
|
|
return time_str
|
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {number} time
|
|
|
|
|
* @param {string} option
|
|
|
|
|
* @returns {string}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function formatTime(time, option) {
|
2019-04-01 09:07:16 +00:00
|
|
|
|
if (('' + time).length === 10) {
|
|
|
|
|
time = parseInt(time) * 1000
|
|
|
|
|
} else {
|
|
|
|
|
time = +time
|
|
|
|
|
}
|
2017-10-31 08:04:30 +00:00
|
|
|
|
const d = new Date(time)
|
|
|
|
|
const now = Date.now()
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2017-10-31 08:04:30 +00:00
|
|
|
|
const diff = (now - d) / 1000
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2017-10-31 08:04:30 +00:00
|
|
|
|
if (diff < 30) {
|
|
|
|
|
return '刚刚'
|
2018-08-15 09:29:15 +00:00
|
|
|
|
} else if (diff < 3600) {
|
|
|
|
|
// less 1 hour
|
2017-10-31 08:04:30 +00:00
|
|
|
|
return Math.ceil(diff / 60) + '分钟前'
|
|
|
|
|
} else if (diff < 3600 * 24) {
|
|
|
|
|
return Math.ceil(diff / 3600) + '小时前'
|
|
|
|
|
} else if (diff < 3600 * 24 * 2) {
|
|
|
|
|
return '1天前'
|
|
|
|
|
}
|
|
|
|
|
if (option) {
|
|
|
|
|
return parseTime(time, option)
|
|
|
|
|
} else {
|
2018-08-15 09:29:15 +00:00
|
|
|
|
return (
|
|
|
|
|
d.getMonth() +
|
|
|
|
|
1 +
|
|
|
|
|
'月' +
|
|
|
|
|
d.getDate() +
|
|
|
|
|
'日' +
|
|
|
|
|
d.getHours() +
|
|
|
|
|
'时' +
|
|
|
|
|
d.getMinutes() +
|
|
|
|
|
'分'
|
|
|
|
|
)
|
2017-10-31 08:04:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {string} url
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function getQueryObject(url) {
|
|
|
|
|
url = url == null ? window.location.href : url
|
|
|
|
|
const search = url.substring(url.lastIndexOf('?') + 1)
|
|
|
|
|
const obj = {}
|
|
|
|
|
const reg = /([^?&=]+)=([^?&=]*)/g
|
|
|
|
|
search.replace(reg, (rs, $1, $2) => {
|
|
|
|
|
const name = decodeURIComponent($1)
|
|
|
|
|
let val = decodeURIComponent($2)
|
|
|
|
|
val = String(val)
|
|
|
|
|
obj[name] = val
|
|
|
|
|
return rs
|
|
|
|
|
})
|
|
|
|
|
return obj
|
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2019-04-11 02:41:36 +00:00
|
|
|
|
* @param {string} input value
|
2017-04-18 07:09:13 +00:00
|
|
|
|
* @returns {number} output value
|
|
|
|
|
*/
|
2019-03-04 02:54:58 +00:00
|
|
|
|
export function byteLength(str) {
|
|
|
|
|
// returns the byte length of an utf8 string
|
|
|
|
|
let s = str.length
|
|
|
|
|
for (var i = str.length - 1; i >= 0; i--) {
|
|
|
|
|
const code = str.charCodeAt(i)
|
|
|
|
|
if (code > 0x7f && code <= 0x7ff) s++
|
|
|
|
|
else if (code > 0x7ff && code <= 0xffff) s += 2
|
|
|
|
|
if (code >= 0xDC00 && code <= 0xDFFF) i--
|
2017-10-31 08:04:30 +00:00
|
|
|
|
}
|
2019-03-04 02:54:58 +00:00
|
|
|
|
return s
|
2017-10-31 08:04:30 +00:00
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {Array} actual
|
|
|
|
|
* @returns {Array}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function cleanArray(actual) {
|
|
|
|
|
const newArray = []
|
|
|
|
|
for (let i = 0; i < actual.length; i++) {
|
|
|
|
|
if (actual[i]) {
|
|
|
|
|
newArray.push(actual[i])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return newArray
|
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {Object} json
|
|
|
|
|
* @returns {Array}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function param(json) {
|
|
|
|
|
if (!json) return ''
|
2018-08-15 09:29:15 +00:00
|
|
|
|
return cleanArray(
|
|
|
|
|
Object.keys(json).map(key => {
|
|
|
|
|
if (json[key] === undefined) return ''
|
|
|
|
|
return encodeURIComponent(key) + '=' + encodeURIComponent(json[key])
|
|
|
|
|
})
|
|
|
|
|
).join('&')
|
2017-10-31 08:04:30 +00:00
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {string} url
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function param2Obj(url) {
|
|
|
|
|
const search = url.split('?')[1]
|
|
|
|
|
if (!search) {
|
|
|
|
|
return {}
|
|
|
|
|
}
|
2018-08-15 09:29:15 +00:00
|
|
|
|
return JSON.parse(
|
|
|
|
|
'{"' +
|
|
|
|
|
decodeURIComponent(search)
|
|
|
|
|
.replace(/"/g, '\\"')
|
|
|
|
|
.replace(/&/g, '","')
|
2019-03-14 08:12:47 +00:00
|
|
|
|
.replace(/=/g, '":"')
|
|
|
|
|
.replace(/\+/g, ' ') +
|
2018-08-15 09:29:15 +00:00
|
|
|
|
'"}'
|
|
|
|
|
)
|
2017-10-31 08:04:30 +00:00
|
|
|
|
}
|
2017-05-15 09:56:45 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {string} val
|
|
|
|
|
* @returns {string}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function html2Text(val) {
|
|
|
|
|
const div = document.createElement('div')
|
|
|
|
|
div.innerHTML = val
|
|
|
|
|
return div.textContent || div.innerText
|
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* Merges two objects, giving the last one precedence
|
|
|
|
|
* @param {Object} target
|
|
|
|
|
* @param {(Object|Array)} source
|
|
|
|
|
* @returns {Object}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function objectMerge(target, source) {
|
|
|
|
|
if (typeof target !== 'object') {
|
|
|
|
|
target = {}
|
|
|
|
|
}
|
|
|
|
|
if (Array.isArray(source)) {
|
|
|
|
|
return source.slice()
|
|
|
|
|
}
|
2018-08-15 09:29:15 +00:00
|
|
|
|
Object.keys(source).forEach(property => {
|
2018-03-20 09:27:42 +00:00
|
|
|
|
const sourceProperty = source[property]
|
|
|
|
|
if (typeof sourceProperty === 'object') {
|
|
|
|
|
target[property] = objectMerge(target[property], sourceProperty)
|
|
|
|
|
} else {
|
2017-10-31 08:04:30 +00:00
|
|
|
|
target[property] = sourceProperty
|
|
|
|
|
}
|
2018-03-20 09:27:42 +00:00
|
|
|
|
})
|
2017-10-31 08:04:30 +00:00
|
|
|
|
return target
|
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {HTMLElement} element
|
|
|
|
|
* @param {string} className
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function toggleClass(element, className) {
|
|
|
|
|
if (!element || !className) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
let classString = element.className
|
|
|
|
|
const nameIndex = classString.indexOf(className)
|
|
|
|
|
if (nameIndex === -1) {
|
|
|
|
|
classString += '' + className
|
|
|
|
|
} else {
|
2018-08-15 09:29:15 +00:00
|
|
|
|
classString =
|
|
|
|
|
classString.substr(0, nameIndex) +
|
|
|
|
|
classString.substr(nameIndex + className.length)
|
2017-10-31 08:04:30 +00:00
|
|
|
|
}
|
|
|
|
|
element.className = classString
|
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {string} type
|
|
|
|
|
* @returns {Date}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function getTime(type) {
|
|
|
|
|
if (type === 'start') {
|
|
|
|
|
return new Date().getTime() - 3600 * 1000 * 24 * 90
|
|
|
|
|
} else {
|
|
|
|
|
return new Date(new Date().toDateString())
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-18 07:09:13 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {Function} func
|
|
|
|
|
* @param {number} wait
|
|
|
|
|
* @param {boolean} immediate
|
|
|
|
|
* @return {*}
|
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function debounce(func, wait, immediate) {
|
|
|
|
|
let timeout, args, context, timestamp, result
|
2017-07-03 04:44:21 +00:00
|
|
|
|
|
2017-10-31 08:04:30 +00:00
|
|
|
|
const later = function() {
|
2017-07-03 04:44:21 +00:00
|
|
|
|
// 据上一次触发时间间隔
|
2017-10-31 08:04:30 +00:00
|
|
|
|
const last = +new Date() - timestamp
|
2017-07-03 04:44:21 +00:00
|
|
|
|
|
2019-02-19 02:24:22 +00:00
|
|
|
|
// 上次被包装函数被调用时间间隔 last 小于设定时间间隔 wait
|
2017-10-31 08:04:30 +00:00
|
|
|
|
if (last < wait && last > 0) {
|
|
|
|
|
timeout = setTimeout(later, wait - last)
|
|
|
|
|
} else {
|
|
|
|
|
timeout = null
|
2017-07-03 04:44:21 +00:00
|
|
|
|
// 如果设定为immediate===true,因为开始边界已经调用过了此处无需调用
|
2017-10-31 08:04:30 +00:00
|
|
|
|
if (!immediate) {
|
|
|
|
|
result = func.apply(context, args)
|
|
|
|
|
if (!timeout) context = args = null
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-03 04:44:21 +00:00
|
|
|
|
|
2017-10-31 08:04:30 +00:00
|
|
|
|
return function(...args) {
|
|
|
|
|
context = this
|
|
|
|
|
timestamp = +new Date()
|
|
|
|
|
const callNow = immediate && !timeout
|
2017-07-03 04:44:21 +00:00
|
|
|
|
// 如果延时不存在,重新设定延时
|
2017-10-31 08:04:30 +00:00
|
|
|
|
if (!timeout) timeout = setTimeout(later, wait)
|
|
|
|
|
if (callNow) {
|
|
|
|
|
result = func.apply(context, args)
|
|
|
|
|
context = args = null
|
|
|
|
|
}
|
2017-07-03 04:44:21 +00:00
|
|
|
|
|
2017-10-31 08:04:30 +00:00
|
|
|
|
return result
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-03 04:44:21 +00:00
|
|
|
|
|
2018-06-19 03:26:46 +00:00
|
|
|
|
/**
|
|
|
|
|
* This is just a simple version of deep copy
|
|
|
|
|
* Has a lot of edge cases bug
|
|
|
|
|
* If you want to use a perfect deep copy, use lodash's _.cloneDeep
|
2019-04-11 02:41:36 +00:00
|
|
|
|
* @param {Object} source
|
|
|
|
|
* @returns {Object}
|
2018-06-19 03:26:46 +00:00
|
|
|
|
*/
|
2017-10-31 08:04:30 +00:00
|
|
|
|
export function deepClone(source) {
|
|
|
|
|
if (!source && typeof source !== 'object') {
|
2019-03-21 07:14:15 +00:00
|
|
|
|
throw new Error('error arguments', 'deepClone')
|
2017-10-31 08:04:30 +00:00
|
|
|
|
}
|
|
|
|
|
const targetObj = source.constructor === Array ? [] : {}
|
2018-08-15 09:29:15 +00:00
|
|
|
|
Object.keys(source).forEach(keys => {
|
2018-03-20 09:27:42 +00:00
|
|
|
|
if (source[keys] && typeof source[keys] === 'object') {
|
|
|
|
|
targetObj[keys] = deepClone(source[keys])
|
|
|
|
|
} else {
|
|
|
|
|
targetObj[keys] = source[keys]
|
2017-10-31 08:04:30 +00:00
|
|
|
|
}
|
2018-03-20 09:27:42 +00:00
|
|
|
|
})
|
2017-10-31 08:04:30 +00:00
|
|
|
|
return targetObj
|
|
|
|
|
}
|
2018-05-30 07:25:08 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @param {Array} arr
|
|
|
|
|
* @returns {Array}
|
|
|
|
|
*/
|
2018-05-30 07:25:08 +00:00
|
|
|
|
export function uniqueArr(arr) {
|
|
|
|
|
return Array.from(new Set(arr))
|
|
|
|
|
}
|
2019-02-19 02:24:22 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* @returns {string}
|
|
|
|
|
*/
|
2019-02-19 02:24:22 +00:00
|
|
|
|
export function createUniqueString() {
|
|
|
|
|
const timestamp = +new Date() + ''
|
|
|
|
|
const randomNum = parseInt((1 + Math.random()) * 65536) + ''
|
|
|
|
|
return (+(randomNum + timestamp)).toString(32)
|
|
|
|
|
}
|
2019-04-01 09:07:16 +00:00
|
|
|
|
|
2019-04-11 02:41:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* Check if an element has a class
|
|
|
|
|
* @param {HTMLElement} elm
|
|
|
|
|
* @param {string} cls
|
|
|
|
|
* @returns {boolean}
|
|
|
|
|
*/
|
2019-04-01 09:07:16 +00:00
|
|
|
|
export function hasClass(ele, cls) {
|
|
|
|
|
return !!ele.className.match(new RegExp('(\\s|^)' + cls + '(\\s|$)'))
|
|
|
|
|
}
|
2019-04-11 02:41:36 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add class to element
|
|
|
|
|
* @param {HTMLElement} elm
|
|
|
|
|
* @param {string} cls
|
|
|
|
|
*/
|
2019-04-01 09:07:16 +00:00
|
|
|
|
export function addClass(ele, cls) {
|
|
|
|
|
if (!hasClass(ele, cls)) ele.className += ' ' + cls
|
|
|
|
|
}
|
2019-04-11 02:41:36 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove class from element
|
|
|
|
|
* @param {HTMLElement} elm
|
|
|
|
|
* @param {string} cls
|
|
|
|
|
*/
|
2019-04-01 09:07:16 +00:00
|
|
|
|
export function removeClass(ele, cls) {
|
|
|
|
|
if (hasClass(ele, cls)) {
|
|
|
|
|
const reg = new RegExp('(\\s|^)' + cls + '(\\s|$)')
|
|
|
|
|
ele.className = ele.className.replace(reg, ' ')
|
|
|
|
|
}
|
|
|
|
|
}
|