2018-08-09 09:52:52 +08:00
|
|
|
const log = {}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description 返回这个样式的颜色值
|
|
|
|
|
* @param {String} type 样式名称 [ primary | success | warning | danger | text ]
|
|
|
|
|
*/
|
|
|
|
|
function typeColor (type = 'default') {
|
|
|
|
|
let color = ''
|
|
|
|
|
switch (type) {
|
|
|
|
|
case 'default': color = '#35495E'; break
|
|
|
|
|
case 'primary': color = '#3488ff'; break
|
|
|
|
|
case 'success': color = '#43B883'; break
|
|
|
|
|
case 'warning': color = '#e6a23c'; break
|
|
|
|
|
case 'danger': color = '#f56c6c'; break
|
|
|
|
|
default:; break
|
|
|
|
|
}
|
|
|
|
|
return color
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description 打印一个 [ title | text ] 样式的信息
|
|
|
|
|
* @param {String} title title text
|
|
|
|
|
* @param {String} info info text
|
|
|
|
|
* @param {String} type style
|
|
|
|
|
*/
|
|
|
|
|
log.capsule = function (title, info, type = 'primary') {
|
|
|
|
|
console.log(
|
|
|
|
|
`%c ${title} %c ${info} %c`,
|
|
|
|
|
'background:#35495E; padding: 1px; border-radius: 3px 0 0 3px; color: #fff;',
|
|
|
|
|
`background:${typeColor(type)}; padding: 1px; border-radius: 0 3px 3px 0; color: #fff;`,
|
|
|
|
|
'background:transparent'
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description 打印彩色文字
|
|
|
|
|
*/
|
|
|
|
|
log.colorful = function (textArr) {
|
|
|
|
|
console.log(
|
2018-08-09 11:50:45 +08:00
|
|
|
`%c ${textArr.map(t => t.text || '').join(' %c ')}`,
|
2018-08-09 09:52:52 +08:00
|
|
|
...textArr.map(t => `color: ${typeColor(t.type)};`)
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 11:50:45 +08:00
|
|
|
/**
|
|
|
|
|
* @description 打印 default 样式的文字
|
|
|
|
|
*/
|
|
|
|
|
log.default = function (text) {
|
|
|
|
|
log.colorful([{ text }])
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-09 09:52:52 +08:00
|
|
|
/**
|
|
|
|
|
* @description 打印 primary 样式的文字
|
|
|
|
|
*/
|
|
|
|
|
log.primary = function (text) {
|
|
|
|
|
log.colorful([{ text, type: 'primary' }])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description 打印 success 样式的文字
|
|
|
|
|
*/
|
|
|
|
|
log.success = function (text) {
|
|
|
|
|
log.colorful([{ text, type: 'success' }])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description 打印 warning 样式的文字
|
|
|
|
|
*/
|
|
|
|
|
log.warning = function (text) {
|
|
|
|
|
log.colorful([{ text, type: 'warning' }])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description 打印 danger 样式的文字
|
|
|
|
|
*/
|
|
|
|
|
log.danger = function (text) {
|
|
|
|
|
log.colorful([{ text, type: 'danger' }])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default log
|