admin-fe/src/utils/index.js

268 lines
7.1 KiB
JavaScript
Raw Normal View History

2017-04-18 07:09:13 +00:00
/**
* Created by jiachenpan on 16/11/18.
*/
export function parseTime(time, cFormat) {
if (arguments.length === 0) {
2017-08-22 07:43:34 +00:00
return null
2017-04-18 07:09:13 +00:00
}
2017-08-22 07:43:34 +00:00
const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}'
let date
if (typeof time === 'object') {
date = time
2017-04-18 07:09:13 +00:00
} else {
2017-08-22 07:43:34 +00:00
if (('' + time).length === 10) time = parseInt(time) * 1000
date = new Date(time)
2017-04-18 07:09:13 +00:00
}
const formatObj = {
y: date.getFullYear(),
m: date.getMonth() + 1,
d: date.getDate(),
h: date.getHours(),
i: date.getMinutes(),
s: date.getSeconds(),
a: date.getDay()
2017-08-22 07:43:34 +00:00
}
2017-04-18 07:09:13 +00:00
const time_str = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
2017-08-22 07:43:34 +00:00
let value = formatObj[key]
if (key === 'a') return ['一', '二', '三', '四', '五', '六', '日'][value - 1]
2017-04-18 07:09:13 +00:00
if (result.length > 0 && value < 10) {
2017-08-22 07:43:34 +00:00
value = '0' + value
2017-04-18 07:09:13 +00:00
}
2017-08-22 07:43:34 +00:00
return value || 0
})
return time_str
2017-04-18 07:09:13 +00:00
}
export function formatTime(time, option) {
2017-08-22 07:43:34 +00:00
time = +time * 1000
const d = new Date(time)
const now = Date.now()
2017-04-18 07:09:13 +00:00
2017-08-22 07:43:34 +00:00
const diff = (now - d) / 1000
2017-04-18 07:09:13 +00:00
if (diff < 30) {
return '刚刚'
} else if (diff < 3600) { // less 1 hour
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 {
return d.getMonth() + 1 + '月' + d.getDate() + '日' + d.getHours() + '时' + d.getMinutes() + '分'
}
}
// 格式化时间
export function getQueryObject(url) {
2017-08-22 07:43:34 +00:00
url = url == null ? window.location.href : url
const search = url.substring(url.lastIndexOf('?') + 1)
const obj = {}
const reg = /([^?&=]+)=([^?&=]*)/g
2017-04-18 07:09:13 +00:00
search.replace(reg, (rs, $1, $2) => {
2017-08-22 07:43:34 +00:00
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
}
/**
*get getByteLen
* @param {Sting} val input value
* @returns {number} output value
*/
export function getByteLen(val) {
2017-08-22 07:43:34 +00:00
let len = 0
2017-04-18 07:09:13 +00:00
for (let i = 0; i < val.length; i++) {
if (val[i].match(/[^\x00-\xff]/ig) != null) {
2017-08-22 07:43:34 +00:00
len += 1
} else { len += 0.5 }
2017-04-18 07:09:13 +00:00
}
2017-08-22 07:43:34 +00:00
return Math.floor(len)
2017-04-18 07:09:13 +00:00
}
export function cleanArray(actual) {
2017-08-22 07:43:34 +00:00
const newArray = []
2017-04-18 07:09:13 +00:00
for (let i = 0; i < actual.length; i++) {
if (actual[i]) {
2017-08-22 07:43:34 +00:00
newArray.push(actual[i])
2017-04-18 07:09:13 +00:00
}
}
2017-08-22 07:43:34 +00:00
return newArray
2017-04-18 07:09:13 +00:00
}
export function param(json) {
2017-08-22 07:43:34 +00:00
if (!json) return ''
2017-04-18 07:09:13 +00:00
return cleanArray(Object.keys(json).map(key => {
2017-08-22 07:43:34 +00:00
if (json[key] === undefined) return ''
2017-04-18 07:09:13 +00:00
return encodeURIComponent(key) + '=' +
2017-08-22 07:43:34 +00:00
encodeURIComponent(json[key])
})).join('&')
2017-04-18 07:09:13 +00:00
}
2017-05-15 09:56:45 +00:00
export function param2Obj(url) {
2017-08-22 07:43:34 +00:00
const search = url.split('?')[1]
2017-07-03 03:21:31 +00:00
if (!search) {
return {}
}
2017-08-22 07:43:34 +00:00
return JSON.parse('{"' + decodeURIComponent(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"') + '"}')
2017-05-15 09:56:45 +00:00
}
2017-04-18 07:09:13 +00:00
export function html2Text(val) {
2017-08-22 07:43:34 +00:00
const div = document.createElement('div')
div.innerHTML = val
return div.textContent || div.innerText
2017-04-18 07:09:13 +00:00
}
export function objectMerge(target, source) {
/* Merges two objects,
giving the last one precedence */
if (typeof target !== 'object') {
2017-08-22 07:43:34 +00:00
target = {}
2017-04-18 07:09:13 +00:00
}
if (Array.isArray(source)) {
2017-08-22 07:43:34 +00:00
return source.slice()
2017-04-18 07:09:13 +00:00
}
for (const property in source) {
if (source.hasOwnProperty(property)) {
2017-08-22 07:43:34 +00:00
const sourceProperty = source[property]
2017-04-18 07:09:13 +00:00
if (typeof sourceProperty === 'object') {
2017-08-22 07:43:34 +00:00
target[property] = objectMerge(target[property], sourceProperty)
continue
2017-04-18 07:09:13 +00:00
}
2017-08-22 07:43:34 +00:00
target[property] = sourceProperty
2017-04-18 07:09:13 +00:00
}
}
2017-08-22 07:43:34 +00:00
return target
2017-04-18 07:09:13 +00:00
}
export function scrollTo(element, to, duration) {
2017-08-22 07:43:34 +00:00
if (duration <= 0) return
const difference = to - element.scrollTop
const perTick = difference / duration * 10
2017-04-18 07:09:13 +00:00
setTimeout(() => {
console.log(new Date())
2017-08-22 07:43:34 +00:00
element.scrollTop = element.scrollTop + perTick
if (element.scrollTop === to) return
scrollTo(element, to, duration - 10)
}, 10)
2017-04-18 07:09:13 +00:00
}
export function toggleClass(element, className) {
if (!element || !className) {
2017-08-22 07:43:34 +00:00
return
2017-04-18 07:09:13 +00:00
}
2017-08-22 07:43:34 +00:00
let classString = element.className
const nameIndex = classString.indexOf(className)
2017-04-18 07:09:13 +00:00
if (nameIndex === -1) {
2017-08-22 07:43:34 +00:00
classString += '' + className
2017-04-18 07:09:13 +00:00
} else {
2017-08-22 07:43:34 +00:00
classString = classString.substr(0, nameIndex) + classString.substr(nameIndex + className.length)
2017-04-18 07:09:13 +00:00
}
2017-08-22 07:43:34 +00:00
element.className = classString
2017-04-18 07:09:13 +00:00
}
export const pickerOptions = [
{
text: '今天',
onClick(picker) {
2017-08-22 07:43:34 +00:00
const end = new Date()
const start = new Date(new Date().toDateString())
end.setTime(start.getTime())
picker.$emit('pick', [start, end])
2017-04-18 07:09:13 +00:00
}
}, {
text: '最近一周',
onClick(picker) {
2017-08-22 07:43:34 +00:00
const end = new Date(new Date().toDateString())
const start = new Date()
start.setTime(end.getTime() - 3600 * 1000 * 24 * 7)
picker.$emit('pick', [start, end])
2017-04-18 07:09:13 +00:00
}
}, {
text: '最近一个月',
onClick(picker) {
2017-08-22 07:43:34 +00:00
const end = new Date(new Date().toDateString())
const start = new Date()
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30)
picker.$emit('pick', [start, end])
2017-04-18 07:09:13 +00:00
}
}, {
text: '最近三个月',
onClick(picker) {
2017-08-22 07:43:34 +00:00
const end = new Date(new Date().toDateString())
const start = new Date()
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90)
picker.$emit('pick', [start, end])
2017-04-18 07:09:13 +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-07-03 04:44:21 +00:00
export function debounce(func, wait, immediate) {
2017-08-22 07:43:34 +00:00
let timeout, args, context, timestamp, result
2017-07-03 04:44:21 +00:00
const later = function() {
// 据上一次触发时间间隔
2017-08-22 07:43:34 +00:00
const last = +new Date() - timestamp
2017-07-03 04:44:21 +00:00
// 上次被包装函数被调用时间间隔last小于设定时间间隔wait
if (last < wait && last > 0) {
2017-08-22 07:43:34 +00:00
timeout = setTimeout(later, wait - last)
2017-07-03 04:44:21 +00:00
} else {
2017-08-22 07:43:34 +00:00
timeout = null
2017-07-03 04:44:21 +00:00
// 如果设定为immediate===true因为开始边界已经调用过了此处无需调用
if (!immediate) {
2017-08-22 07:43:34 +00:00
result = func.apply(context, args)
if (!timeout) context = args = null
2017-07-03 04:44:21 +00:00
}
}
2017-08-22 07:43:34 +00:00
}
2017-07-03 04:44:21 +00:00
return function(...args) {
2017-08-22 07:43:34 +00:00
context = this
timestamp = +new Date()
const callNow = immediate && !timeout
2017-07-03 04:44:21 +00:00
// 如果延时不存在,重新设定延时
2017-08-22 07:43:34 +00:00
if (!timeout) timeout = setTimeout(later, wait)
2017-07-03 04:44:21 +00:00
if (callNow) {
2017-08-22 07:43:34 +00:00
result = func.apply(context, args)
context = args = null
2017-07-03 04:44:21 +00:00
}
2017-08-22 07:43:34 +00:00
return result
}
2017-07-03 04:44:21 +00:00
}
2017-07-13 08:54:54 +00:00
export function deepClone(source) {
if (!source && typeof source !== 'object') {
2017-08-22 07:43:34 +00:00
throw new Error('error arguments', 'shallowClone')
2017-07-13 08:54:54 +00:00
}
2017-08-22 07:43:34 +00:00
const targetObj = source.constructor === Array ? [] : {}
2017-07-13 08:54:54 +00:00
for (const keys in source) {
if (source.hasOwnProperty(keys)) {
if (source[keys] && typeof source[keys] === 'object') {
2017-08-22 07:43:34 +00:00
targetObj[keys] = source[keys].constructor === Array ? [] : {}
targetObj[keys] = deepClone(source[keys])
2017-07-13 08:54:54 +00:00
} else {
2017-08-22 07:43:34 +00:00
targetObj[keys] = source[keys]
2017-07-13 08:54:54 +00:00
}
}
}
2017-08-22 07:43:34 +00:00
return targetObj
2017-07-13 08:54:54 +00:00
}