/*
* @Date: 2022-11-18 13:38:41
* @LastEditors: WhiteSev [email protected]
* @LastEditTime: 2023-03-21 13:03:09
* @原地址: https://www.jq22.com/jquery-info23550
* @说明: 修改config配置{"position":"topleft|top|topright|centerleft|center|centerright|bottomleft|bottomright|bottom"} 九宫格,
* 九个位置弹出,修改原center为显示中间,top代替原center
* @说明: 新增config配置{"contentWrap":true},长文本全部显示(支持换行),默认为false
* @说明: 新增config配置{"showIcon":true},可关闭左边的图标
*/
(function (root, Msg) {
if (typeof exports === "object" && typeof module !== "undefined") {
module.exports = Msg;
} else if (typeof define === "function" && define.amd) {
define([], function () {
return Msg(root);
});
} else {
root.Qmsg = Msg(root);
}
})(this, function (global) {
"use strict";
/* assign 兼容处理 */
if (typeof Object.assign != "function") {
Object.assign = function (target) {
if (target == null) {
throw new TypeError("Cannot convert undefined or null to object");
}
target = Object(target);
for (var index = 1; index < arguments.length; index++) {
var source = arguments[index];
if (source != null) {
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
}
return target;
};
}
/* 'classList' 兼容处理,add,remove不支持传入多个cls参数 */
if (!("classList" in document.documentElement)) {
Object.defineProperty(HTMLElement.prototype, "classList", {
get: function () {
var self = this;
function update(fn) {
return function (value) {
var classes = self.className.split(/\s+/g),
index = classes.indexOf(value);
fn(classes, index, value);
self.className = classes.join(" ");
};
}
return {
add: update(function (classes, index, value) {
if (!~index) classes.push(value);
}),
remove: update(function (classes, index) {
if (~index) classes.splice(index, 1);
}),
toggle: update(function (classes, index, value) {
if (~index) classes.splice(index, 1);
else classes.push(value);
}),
contains: function (value) {
return !!~self.className.split(/\s+/g).indexOf(value);
},
item: function (i) {
return self.className.split(/\s+/g)[i] || null;
},
};
},
});
}
/**
* 声明插件名称
*/
var PLUGIN_NAME = "qmsg";
/**
* 命名空间 用于css和事件
*/
var NAMESPACE =
(global && global.QMSG_GLOBALS && global.QMSG_GLOBALS.NAMESPACE) ||
PLUGIN_NAME;
/**
* 状态 & 动画
* 显示中,显示完成,关闭中
*/
var STATES = {
opening: "MessageMoveIn",
done: "",
closing: "MessageMoveOut",
};
/**
* 全局默认配置
* 可在引入js之前通过QMSG_GLOBALS.DEFAULTS进行配置
* position {String} 位置,仅支持'center','right','left',默认'center'
* showReverse {Boolean} 弹出顺序是否逆反,true|false,默认false
* showMoreContent {Boolean} 是否使内容进行换行显示,true|false,默认false
* showIcon {Boolean} 是否显示左边的icon图标, true|false,默认true
* type {String} 类型,支持'info','warning','success','error','loading'
* showClose {Boolean} 是否显示关闭图标,默认为false不显示
* timeout {Number} 多久后自动关闭,单位ms,默认2500
* autoClose {Boolean} 是否自动关闭,默认true,注意在type为loading的时候自动关闭为false
* content {String} 提示的内容
* onClose {Function} 关闭的回调函数
*/
var DEFAULTS = Object.assign(
{
animation: true,
autoClose: true,
content: "",
html: false,
position: "top",
showClose: false,
maxNums: 5,
onClose: null,
showIcon: true,
showMoreContent: false,
showReverse: false,
timeout: 2500,
type: "info",
},
global && global.QMSG_GLOBALS && global.QMSG_GLOBALS.DEFAULTS
);
/**
* 设置icon html代码
*/
var ICONS = {
info: '<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M512 64q190.016 4.992 316.512 131.488T960 512q-4.992 190.016-131.488 316.512T512 960q-190.016-4.992-316.512-131.488T64 512q4.992-190.016 131.488-316.512T512 64zm67.008 275.008q26.016 0 43.008-15.488t16.992-41.504-16.992-41.504-42.496-15.488-42.496 15.488-16.992 41.504 16.992 41.504 42.016 15.488zm12 360q0-6.016.992-16T592 664l-52.992 60.992q-8 8.992-16.512 14.016T508 742.016q-8.992-4-8-14.016l88-276.992q4.992-28-8.992-48t-44.992-24q-35.008.992-76.512 29.504t-72.512 72.512v15.008q-.992 10.016 0 19.008l52.992-60.992q8-8.992 16.512-14.016T468 437.024q10.016 4.992 7.008 16l-87.008 276q-7.008 24.992 7.008 44.512T444 800.032q50.016-.992 84-28.992t63.008-72z" fill="#909399"/></svg>',
warning:
'<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M512 64C264.64 64 64 264.64 64 512c0 247.424 200.64 448 448 448 247.488 0 448-200.576 448-448 0-247.36-200.512-448-448-448zm0 704c-26.432 0-48-21.504-48-48s21.568-48 48-48c26.624 0 48 21.504 48 48s-21.376 48-48 48zm48-240c0 26.56-21.376 48-48 48-26.432 0-48-21.44-48-48V304c0-26.56 21.568-48 48-48 26.624 0 48 21.44 48 48v224z" fill="#E6A23C"/></svg>',
error:
'<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M512 64C264.58 64 64 264.58 64 512s200.58 448 448 448 448-200.57 448-448S759.42 64 512 64zm158.39 561.14a32 32 0 1 1-45.25 45.26L512 557.26 398.86 670.4a32 32 0 0 1-45.25-45.26L466.75 512 353.61 398.86a32 32 0 0 1 45.25-45.25L512 466.74l113.14-113.13a32 32 0 0 1 45.25 45.25L557.25 512z" fill="#F56C6C"/></svg>',
success:
'<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M512 64q190.016 4.992 316.512 131.488T960 512q-4.992 190.016-131.488 316.512T512 960q-190.016-4.992-316.512-131.488T64 512q4.992-190.016 131.488-316.512T512 64zm-56 536l-99.008-99.008q-12-11.008-27.488-11.008t-27.008 11.488-11.488 26.496 11.008 27.008l127.008 127.008q11.008 11.008 27.008 11.008t27.008-11.008l263.008-263.008q15.008-15.008 9.504-36.512t-27.008-27.008-36.512 9.504z" fill="#67C23A"/></svg>',
loading:
'<svg class="animate-turn" width="16" height="16" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#fff" fill-opacity=".01" d="M0 0h48v48H0z"/><path d="M4 24c0 11.046 8.954 20 20 20s20-8.954 20-20S35.046 4 24 4" stroke="#409eff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M36 24c0-6.627-5.373-12-12-12s-12 5.373-12 12 5.373 12 12 12" stroke="#409eff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>',
close:
'<svg width="16" height="16" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="48" height="48" fill="white" fill-opacity="0.01"/><path d="M14 14L34 34" stroke="#909399" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M14 34L34 14" stroke="#909399" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>',
};
/**
* 是否支持动画属性
* @type {Boolean}
*/
var CAN_ANIMATION = (function () {
var style = document.createElement("div").style;
return (
style.animationName !== undefined ||
style.WebkitAnimationName !== undefined ||
style.MozAnimationName !== undefined ||
style.msAnimationName !== undefined ||
style.OAnimationName !== undefined
);
})();
/**
* 生成带插件名的名称
* @param {...String}
* @returns {String}
*/
function namespacify() {
var res = NAMESPACE;
for (var i = 0; i < arguments.length; ++i) {
res += "-" + arguments[i];
}
return res;
}
/**
* 获取唯一性的UUID
* @returns String
*/
function getUUID() {
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
/[xy]/g,
function (value) {
let randValue = (Math.random() * 16) | 0,
newValue = value == "x" ? randValue : (randValue & 0x3) | 0x8;
return newValue.toString(16);
}
);
}
/**
* 每条消息的构造函数
* @param {Objetc} opts 配置参数,参考DEFAULTS
*/
function Msg(opts, uuid) {
var oMsg = this;
oMsg.settings = Object.assign({}, DEFAULTS, opts || {});
oMsg.uuid = uuid;
var timeout = oMsg.settings.timeout;
timeout =
timeout &&
parseInt(timeout >= 0) &&
parseInt(timeout) <= Math.NEGATIVE_INFINITY
? parseInt(timeout)
: DEFAULTS.timeout;
oMsg.timeout = timeout;
oMsg.settings.timeout = timeout;
oMsg.timer = null;
var $elem = document.createElement("div");
var $svg = ICONS[oMsg.settings.type || "info"];
var contentClassName = namespacify(
"content-" + oMsg.settings.type || "info"
);
contentClassName += oMsg.settings.showClose
? " " + namespacify("content-with-close")
: "";
var content = oMsg.settings.content || "";
var contentStyle = "";
var $closeIconStyle = "";
var $closeSvg = ICONS["close"];
if (oMsg.settings.showMoreContent) {
contentStyle = `
display: flex;
align-items: center;
white-space: unset;
overflow: unset;
text-overflow: unset;
padding-right: unset;
`;
$closeIconStyle = `
position:unset;
overflow:unset;
padding-left: 6px;
margin-right: 0px;
`;
}
var $closeIcon = oMsg.settings.showClose
? `<i class="qmsg-icon qmsg-icon-close" style="${$closeIconStyle}">${$closeSvg}</i>`
: "";
var $span = document.createElement("span");
var $positionClassName = namespacify(
"data-position",
oMsg.settings.position.toLowerCase()
);
if (oMsg.settings.html) {
$span.innerHTML = content;
} else {
$span.innerText = content;
}
$elem.innerHTML = `
<div class="qmsg-content">
<div class="${contentClassName}" style="${contentStyle}">
${oMsg.settings.showIcon ? `<i class="qmsg-icon">${$svg}</i>` : ""}
${$span.outerHTML}
${$closeIcon}
</div>
</div>
`;
$elem.classList.add(namespacify("item"));
var $wrapper = document.querySelector(
`.${NAMESPACE}.${$positionClassName}`
);
if (!$wrapper) {
/* 不存在就添加 */
$wrapper = document.createElement("div");
$wrapper.classList.add(
NAMESPACE,
namespacify("wrapper"),
namespacify("is-initialized")
);
$wrapper.classList.add($positionClassName);
document.body.appendChild($wrapper);
}
if (oMsg.settings.showReverse) {
$wrapper.style.flexDirection = "column-reverse";
} else {
$wrapper.style.flexDirection = "column";
}
$wrapper.appendChild($elem);
oMsg.$wrapper = $wrapper;
oMsg.$elem = $elem;
setState(oMsg, "opening");
if (oMsg.settings.showClose) {
// 关闭按钮绑定点击事件
$elem.querySelector(".qmsg-icon-close").addEventListener(
"click",
function () {
oMsg.close();
}.bind($elem)
);
}
$elem.addEventListener(
"animationend",
function (event) {
// 监听动画完成
var target = event.target,
animationName = event.animationName;
if (animationName === STATES["closing"]) {
clearInterval(this.timer);
this.destroy();
}
target.style.animationName = "";
}.bind(oMsg)
);
if (oMsg.settings.autoClose) {
// 自动关闭
var intvMs = 10; // 定时器频率
oMsg.timer = setInterval(
function () {
this.timeout -= intvMs;
if (this.timeout <= 0) {
clearInterval(this.timer);
this.close();
}
}.bind(oMsg),
intvMs
);
oMsg.$elem.addEventListener(
"mouseover",
function () {
clearInterval(this.timer);
}.bind(oMsg)
);
oMsg.$elem.addEventListener(
"mouseout",
function () {
if (this.state !== "closing") {
/* 状态为关闭则不重启定时器 */
this.timer = setInterval(
function () {
this.timeout -= intvMs;
if (this.timeout <= 0) {
clearInterval(this.timer);
this.close();
}
}.bind(oMsg),
intvMs
);
}
}.bind(oMsg)
);
}
}
/* 设置元素动画状态 开启/关闭 */
function setState(inst, state) {
if (!state || !STATES[state]) return;
inst.state = state;
inst.$elem.style.animationName = STATES[state];
}
/**
* 直接销毁元素,不会触发关闭回调函数
*/
Msg.prototype.destroy = function () {
this.$elem.parentNode && this.$elem.parentNode.removeChild(this.$elem);
clearInterval(this.timer);
Qmsg.remove(this.uuid);
};
/**
* 关闭,支持动画则会触发动画事件
*/
Msg.prototype.close = function () {
setState(this, "closing");
if (!CAN_ANIMATION) {
/* 不支持动画 */
this.destroy();
} else {
Qmsg.remove(this.uuid);
}
var callback = this.settings.onClose;
if (callback && callback instanceof Function) {
callback.call(this);
}
};
/**
* 设置消息数量统计
* @private
*/
function setMsgCount(oMsg) {
var countClassName = namespacify("count");
var wrapperClassName = `div.${namespacify(
"data-position",
oMsg.settings.position.toLowerCase()
)} [class^="qmsg-content-"]`;
var $content = oMsg.$elem.querySelector(wrapperClassName),
$count = $content.querySelector("." + countClassName);
if (!$count) {
$count = document.createElement("span");
$count.classList.add(countClassName);
$content.appendChild($count);
}
$count.innerHTML = oMsg.count;
$count.style.animationName = "";
$count.style.animationName = "MessageShake";
oMsg.timeout = oMsg.settings.timeout || DEFAULTS.timeout;
}
/**
* 合并参数为配置信息,用于创建Msg实例
* @param {String} txt 文本内容
* @param {Object} config 配置
* @private
*/
function mergeArgs(txt, config) {
var opts = Object.assign({}, DEFAULTS);
if (arguments.length === 0) {
return opts;
}
if (txt instanceof Object) {
return Object.assign(opts, txt);
} else {
opts.content = txt.toString();
}
if (config instanceof Object) {
return Object.assign(opts, config);
}
return opts;
}
/**
* 通过配置信息 来判断是否为同一条消息,并返回消息实例
* @param {Object} params 配置项
* @private
*/
function judgeReMsg(params) {
params = params || {};
var opt = JSON.stringify(params);
var oMsg = null;
/* 寻找已生成的实例是否存在配置相同的 */
var oMsgsIndex;
for (oMsgsIndex in this.oMsgs) {
if (this.oMsgs[oMsgsIndex].config === opt) {
oMsg = this.oMsgs[oMsgsIndex].inst;
break;
}
}
if (oMsg == null) {
/* 不存在,创建个新的 */
var oMsgUUID = getUUID();
var oItem = {};
oItem.uuid = oMsgUUID;
oItem.config = opt;
oMsg = new Msg(params, oMsgUUID);
oMsg.uuid = oMsgUUID;
oMsg.count = "";
oItem.inst = oMsg;
this.oMsgs = [...this.oMsgs, oItem];
var len = this.oMsgs.length;
var maxNums = this.maxNums;
/**
* 关闭多余的消息
*/
if (len > maxNums) {
var oIndex = 0;
var oMsgs = this.oMsgs;
for (oIndex; oIndex < len - maxNums; oIndex++) {
oMsgs[oIndex] &&
oMsgs[oIndex].inst.settings.autoClose &&
oMsgs[oIndex].inst.close();
}
}
} else {
oMsg.count = !oMsg.count
? 2
: oMsg.count >= 99
? oMsg.count
: oMsg.count + 1;
setMsgCount(oMsg);
}
oMsg.$elem.setAttribute("data-count", oMsg.count);
return oMsg;
}
var Qmsg = {
version: "0.0.2" /* 版本 */,
oMsgs: [] /* 实例数组 */,
maxNums: DEFAULTS.maxNums || 5 /* 最大数量 */,
config: function (cfg) {
DEFAULTS =
cfg && cfg instanceof Object ? Object.assign(DEFAULTS, cfg) : DEFAULTS;
this.maxNums =
DEFAULTS.maxNums && DEFAULTS.maxNums > 0
? parseInt(DEFAULTS.maxNums)
: 3;
} /* 配置 */,
info: function (txt, config) {
var params = mergeArgs(txt, config);
params.type = "info";
return judgeReMsg.call(this, params);
},
warning: function (txt, config) {
var params = mergeArgs(txt, config);
params.type = "warning";
return judgeReMsg.call(this, params);
},
success: function (txt, config) {
var params = mergeArgs(txt, config);
params.type = "success";
return judgeReMsg.call(this, params);
},
error: function (txt, config) {
var params = mergeArgs(txt, config);
params.type = "error";
return judgeReMsg.call(this, params);
},
loading: function (txt, config) {
var params = mergeArgs(txt, config);
params.type = "loading";
params.autoClose = false;
return judgeReMsg.call(this, params);
},
remove: function (uuid) {
this.oMsgs.forEach((item, index) => {
if (item.uuid === uuid) {
this.oMsgs.splice(index, 1);
return;
}
});
},
closeAll: function () {
/* 使用splice会改变数组长度,先获取长度 */
let oMsgsLength = this.oMsgs.length;
for (let i = 0; i < oMsgsLength; i++) {
this.oMsgs[0] && this.oMsgs[0].inst.close();
}
},
};
var PLUGIN_CSS = {
css: `
.qmsg.qmsg-wrapper {
box-sizing: border-box;
margin: 0;
padding: 0;
color: rgba(0, 0, 0, 0.55);
font-size: 13px;
font-variant: tabular-nums;
line-height: 1;
list-style: none;
font-feature-settings: "tnum";
position: fixed;
top: 16px;
left: 0;
z-index: 50000;
width: 100%;
pointer-events: none;
display: flex;
flex-direction: column;
}
.qmsg.${namespacify("data-position", "left")},
.qmsg.${namespacify("data-position", "center")},
.qmsg.${namespacify("data-position", "right")}{
position: fixed !important;
top: 50% !important;
left: 50% !important;
transform: translate(-50%,-50%) !important;
}
.qmsg.${namespacify("data-position", "bottomleft")},
.qmsg.${namespacify("data-position", "bottom")},
.qmsg.${namespacify("data-position", "bottomright")}{
position: fixed !important;
left: 50% !important;
bottom: 0 !important;
transform: translate(-50%, 0%) !important;
top: unset !important;
bottom: 8px !important;
}
.qmsg.${namespacify("data-position", "topleft")} .qmsg-item,
.qmsg.${namespacify("data-position", "left")} .qmsg-item,
.qmsg.${namespacify("data-position", "bottomleft")} .qmsg-item{
text-align: left;
}
.qmsg.${namespacify("data-position", "top")} .qmsg-item,
.qmsg.${namespacify("data-position", "center")} .qmsg-item,
.qmsg.${namespacify("data-position", "bottom")} .qmsg-item{
text-align: center;
}
.qmsg.${namespacify("data-position", "topright")} .qmsg-item,
.qmsg.${namespacify("data-position", "right")} .qmsg-item,
.qmsg.${namespacify("data-position", "bottomright")} .qmsg-item{
text-align: right;
}
.qmsg .qmsg-item {
padding: 8px;
text-align: center;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
position: relative;
}
.qmsg .qmsg-item .qmsg-count {
text-align: center;
position: absolute;
left: -4px;
top: -4px;
background-color: red;
color: #fff;
font-size: 12px;
line-height: 16px;
border-radius: 2px;
display: inline-block;
min-width: 16px;
height: 16px;
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
}
.qmsg .qmsg-item:first-child {
margin-top: -8px;
}
.qmsg .qmsg-content {
text-align: center;
position: relative;
display: inline-block;
padding: 10px 12px;
background: #fff;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
pointer-events: all;
/* min-width: 175px; */
max-width: 80%;
/* min-width: 80px; */
min-width: 40px;
}
.qmsg .qmsg-content [class^="qmsg-content-"] {
display: flex;
align-items: center;
}
.qmsg .qmsg-content .qmsg-content-with-close {
/* padding-right: 20px; */
}
.qmsg .qmsg-icon {
display: inline-block;
color: inherit;
font-style: normal;
line-height: 0;
text-align: center;
text-transform: none;
vertical-align: -0.125em;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: relative;
top: 1px;
margin-right: 8px;
font-size: 16px;
}
.qmsg .qmsg-icon svg {
display: inline-block;
}
.qmsg .qmsg-content-info .qmsg-icon {
color: #1890ff;
}
.qmsg .qmsg-icon-close {
/* position: absolute;
top: 11px;
right: 5px;*/
padding: 0;
/* overflow: hidden; */
font-size: 12px;
background-color: transparent;
border: none;
outline: none;
cursor: pointer;
color: rgba(0, 0, 0, 0.45);
transition: color 0.3s;
margin: 0;
margin-left: 8px;
}
.qmsg .qmsg-icon-close:hover > svg path {
stroke: #555;
}
.qmsg .animate-turn {
animation: MessageTurn 1s linear infinite;
-webkit-animation: MessageTurn 1s linear infinite;
}
@keyframes MessageTurn {
0% {
-webkit-transform: rotate(0deg);
}
25% {
-webkit-transform: rotate(90deg);
}
50% {
-webkit-transform: rotate(180deg);
}
75% {
-webkit-transform: rotate(270deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes MessageTurn {
0% {
-webkit-transform: rotate(0deg);
}
25% {
-webkit-transform: rotate(90deg);
}
50% {
-webkit-transform: rotate(180deg);
}
75% {
-webkit-transform: rotate(270deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes MessageMoveOut {
0% {
max-height: 150px;
opacity: 1;
}
to {
max-height: 0;
opacity: 0;
}
}
@keyframes MessageMoveOut {
0% {
max-height: 150px;
opacity: 1;
}
to {
max-height: 0;
opacity: 0;
}
}
@-webkit-keyframes MessageMoveIn {
0% {
transform: translateY(-100%);
transform-origin: 0 0;
opacity: 0;
}
to {
transform: translateY(0);
transform-origin: 0 0;
opacity: 1;
}
}
@keyframes MessageMoveIn {
0% {
transform: translateY(-100%);
transform-origin: 0 0;
opacity: 0;
}
to {
transform: translateY(0);
transform-origin: 0 0;
opacity: 1;
}
}
@-webkit-keyframes MessageShake {
0%,
100% {
transform: translateX(0px);
opacity: 1;
}
25%,
75% {
transform: translateX(-4px);
opacity: 0.75;
}
50% {
transform: translateX(4px);
opacity: 0.25;
}
}
@keyframes MessageShake {
0%,
100% {
transform: translateX(0px);
opacity: 1;
}
25%,
75% {
transform: translateX(-4px);
opacity: 0.75;
}
50% {
transform: translateX(4px);
opacity: 0.25;
}
}
`,
init() {
let pluginCSSNode = document.createElement("style");
pluginCSSNode.setAttribute("type", "text/css");
pluginCSSNode.innerHTML = this.css;
if (document.documentElement.childNodes.length == 0) {
document.documentElement.appendChild(pluginCSSNode);
} else {
document.documentElement.insertBefore(
pluginCSSNode,
document.documentElement.childNodes[0]
);
}
},
};
PLUGIN_CSS.init();
return Qmsg;
});