layui/src/layui.js

826 lines
23 KiB
JavaScript
Raw Normal View History

2022-05-18 22:35:13 +08:00
/**
2021-05-18 02:42:31 +08:00
* Layui
2022-05-24 18:19:06 +08:00
* Classic modular front-end UI library
2021-05-08 06:31:19 +08:00
* MIT Licensed
2017-08-21 08:51:13 +08:00
*/
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
;!function(win){
"use strict";
2023-05-04 10:17:04 +08:00
var doc = win.document;
var config = {
modules: {}, // 模块物理路径
status: {}, // 模块加载状态
timeout: 10, // 符合规范的模块请求最长等待秒数
event: {} // 模块自定义事件
};
2017-08-21 08:51:13 +08:00
2023-05-04 10:17:04 +08:00
var Layui = function(){
2024-08-16 22:15:50 +08:00
this.v = '2.9.15'; // Layui 版本号
2023-05-04 10:17:04 +08:00
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 识别预先可能定义的指定全局对象
2023-05-04 10:17:04 +08:00
var GLOBAL = win.LAYUI_GLOBAL || {};
2017-08-21 08:51:13 +08:00
2023-04-30 01:10:55 +08:00
// 获取 layui 所在目录
2023-05-04 10:17:04 +08:00
var getPath = function(){
2017-11-16 07:34:22 +08:00
var jsPath = doc.currentScript ? doc.currentScript.src : function(){
2023-05-04 10:17:04 +08:00
var js = doc.scripts;
var last = js.length - 1;
var src;
2017-11-16 07:34:22 +08:00
for(var i = last; i > 0; i--){
if(js[i].readyState === 'interactive'){
src = js[i].src;
break;
}
}
return src || js[last].src;
}();
2023-11-14 22:14:19 +08:00
2021-05-08 06:31:19 +08:00
return config.dir = GLOBAL.dir || jsPath.substring(0, jsPath.lastIndexOf('/') + 1);
2023-05-04 10:17:04 +08:00
}();
2017-08-21 08:51:13 +08:00
2023-04-30 01:10:55 +08:00
// 异常提示
2023-05-04 10:17:04 +08:00
var error = function(msg, type){
2021-03-31 14:07:23 +08:00
type = type || 'log';
win.console && console[type] && console[type]('layui error hint: ' + msg);
2023-05-04 10:17:04 +08:00
};
2017-08-21 08:51:13 +08:00
2023-05-04 10:17:04 +08:00
var isOpera = typeof opera !== 'undefined' && opera.toString() === '[object Opera]';
2017-08-21 08:51:13 +08:00
2023-04-30 01:10:55 +08:00
// 内置模块
2023-05-04 10:17:04 +08:00
var modules = config.builtin = {
lay: 'lay', // 基础 DOM 操作
layer: 'layer', // 弹层
laydate: 'laydate', // 日期
laypage: 'laypage', // 分页
laytpl: 'laytpl', // 模板引擎
form: 'form', // 表单集
upload: 'upload', // 上传
dropdown: 'dropdown', // 下拉菜单
transfer: 'transfer', // 穿梭框
tree: 'tree', // 树结构
table: 'table', // 表格
treeTable: 'treeTable', // 树表
element: 'element', // 常用元素操作
rate: 'rate', // 评分组件
colorpicker: 'colorpicker', // 颜色选择器
slider: 'slider', // 滑块
carousel: 'carousel', // 轮播
flow: 'flow', // 流加载
util: 'util', // 工具块
code: 'code', // 代码修饰器
jquery: 'jquery', // DOM 库(第三方)
2023-11-14 22:14:19 +08:00
2023-05-04 10:17:04 +08:00
all: 'all',
'layui.all': 'layui.all' // 聚合标识(功能性的,非真实模块)
2017-08-21 08:51:13 +08:00
};
2023-04-30 01:10:55 +08:00
// 记录基础数据
2017-08-21 08:51:13 +08:00
Layui.prototype.cache = config;
2023-04-30 01:10:55 +08:00
// 定义模块
2018-01-03 09:55:45 +08:00
Layui.prototype.define = function(deps, factory){
2023-05-04 10:17:04 +08:00
var that = this;
var type = typeof deps === 'function';
var callback = function(){
2018-01-03 09:55:45 +08:00
var setApp = function(app, exports){
2017-08-21 08:51:13 +08:00
layui[app] = exports;
config.status[app] = true;
2018-01-03 09:55:45 +08:00
};
typeof factory === 'function' && factory(function(app, exports){
setApp(app, exports);
config.callback[app] = function(){
factory(setApp);
}
2017-08-21 08:51:13 +08:00
});
return this;
};
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
type && (
2018-01-03 09:55:45 +08:00
factory = deps,
2017-08-21 08:51:13 +08:00
deps = []
);
2023-11-14 22:14:19 +08:00
2021-04-06 16:01:23 +08:00
that.use(deps, callback, null, 'define');
2017-08-21 08:51:13 +08:00
return that;
};
2023-04-30 01:10:55 +08:00
// 使用特定模块
2021-04-06 16:01:23 +08:00
Layui.prototype.use = function(apps, callback, exports, from){
2023-05-04 10:17:04 +08:00
var that = this;
var dir = config.dir = config.dir ? config.dir : getPath;
var head = doc.getElementsByTagName('head')[0];
2017-08-21 08:51:13 +08:00
2021-04-05 23:41:30 +08:00
apps = function(){
if(typeof apps === 'string'){
return [apps];
2023-11-14 22:14:19 +08:00
}
2023-04-30 01:10:55 +08:00
// 当第一个参数为 function 时,则自动加载所有内置模块,且执行的回调即为该 function 参数;
2021-04-05 23:41:30 +08:00
else if(typeof apps === 'function'){
callback = apps;
return ['all'];
2023-11-14 22:14:19 +08:00
}
2021-04-05 23:41:30 +08:00
return apps;
}();
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 如果页面已经存在 jQuery 1.7+ 库且所定义的模块依赖 jQuery则不加载内部 jquery 模块
2021-05-18 02:42:31 +08:00
if(win.jQuery && jQuery.fn.on){
2017-08-21 08:51:13 +08:00
that.each(apps, function(index, item){
if(item === 'jquery'){
apps.splice(index, 1);
}
});
layui.jquery = layui.$ = jQuery;
}
2023-11-14 22:14:19 +08:00
2023-05-04 10:17:04 +08:00
var item = apps[0];
var timeout = 0;
2017-08-21 08:51:13 +08:00
exports = exports || [];
2023-04-30 01:10:55 +08:00
// 静态资源host
2017-08-21 08:51:13 +08:00
config.host = config.host || (dir.match(/\/\/([\s\S]+?)\//)||['//'+ location.host +'/'])[0];
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 加载完毕
2017-08-21 08:51:13 +08:00
function onScriptLoad(e, url){
var readyRegExp = navigator.platform === 'PLaySTATION 3' ? /^complete$/ : /^(complete|loaded)$/
if (e.type === 'load' || (readyRegExp.test((e.currentTarget || e.srcElement).readyState))) {
config.modules[item] = url;
head.removeChild(node);
(function poll() {
if(++timeout > config.timeout * 1000 / 4){
2021-03-31 14:07:23 +08:00
return error(item + ' is not a valid module', 'error');
}
2017-08-21 08:51:13 +08:00
config.status[item] ? onCallback() : setTimeout(poll, 4);
}());
}
}
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 回调
2017-08-21 08:51:13 +08:00
function onCallback(){
exports.push(layui[item]);
apps.length > 1 ?
2021-04-06 16:01:23 +08:00
that.use(apps.slice(1), callback, exports, from)
2021-04-05 23:41:30 +08:00
: ( typeof callback === 'function' && function(){
2023-04-30 01:10:55 +08:00
// 保证文档加载完毕再执行回调
2021-04-06 16:01:23 +08:00
if(layui.jquery && typeof layui.jquery === 'function' && from !== 'define'){
2021-04-05 23:41:30 +08:00
return layui.jquery(function(){
callback.apply(layui, exports);
});
}
callback.apply(layui, exports);
}() );
2017-08-21 08:51:13 +08:00
}
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 如果引入了聚合板,内置的模块则不必重复加载
2021-04-05 23:41:30 +08:00
if( apps.length === 0 || (layui['layui.all'] && modules[item]) ){
2017-08-21 08:51:13 +08:00
return onCallback(), that;
}
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
/*
* 获取加载的模块 URL
* 如果是内置模块则按照 dir 参数拼接模块路径
* 如果是扩展模块则判断模块路径值是否为 {/}
* 如果路径值是 {/}
* 否则则按照 base 参数拼接模块路径
*/
2023-11-14 22:14:19 +08:00
var url = ( modules[item] ? (dir + 'modules/')
2020-01-15 06:30:00 +08:00
: (/^\{\/\}/.test(that.modules[item]) ? '' : (config.base || ''))
) + (that.modules[item] || item) + '.js';
url = url.replace(/^\{\/\}/, '');
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 如果扩展模块(即:非内置模块)对象已经存在,则不必再加载
2020-01-15 06:30:00 +08:00
if(!config.modules[item] && layui[item]){
2023-04-30 01:10:55 +08:00
config.modules[item] = url; // 并记录起该扩展模块的 url
2020-01-15 06:30:00 +08:00
}
2017-08-21 08:51:13 +08:00
2023-04-30 01:10:55 +08:00
// 首次加载模块
2017-08-21 08:51:13 +08:00
if(!config.modules[item]){
2020-01-15 06:30:00 +08:00
var node = doc.createElement('script');
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
node.async = true;
node.charset = 'utf-8';
node.src = url + function(){
2023-11-14 22:14:19 +08:00
var version = config.version === true
2017-08-21 08:51:13 +08:00
? (config.v || (new Date()).getTime())
: (config.version||'');
return version ? ('?v=' + version) : '';
}();
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
head.appendChild(node);
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
if(node.attachEvent && !(node.attachEvent.toString && node.attachEvent.toString().indexOf('[native code') < 0) && !isOpera){
node.attachEvent('onreadystatechange', function(e){
onScriptLoad(e, url);
});
} else {
node.addEventListener('load', function(e){
onScriptLoad(e, url);
}, false);
}
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
config.modules[item] = url;
2023-04-30 01:10:55 +08:00
} else { // 缓存
2017-08-21 08:51:13 +08:00
(function poll() {
if(++timeout > config.timeout * 1000 / 4){
2021-03-31 14:07:23 +08:00
return error(item + ' is not a valid module', 'error');
}
2023-11-14 22:14:19 +08:00
(typeof config.modules[item] === 'string' && config.status[item])
? onCallback()
2017-08-21 08:51:13 +08:00
: setTimeout(poll, 4);
}());
}
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
return that;
};
2022-06-21 00:25:07 +08:00
// 弃用原有的指定模块,以便重新扩展新的同名模块
Layui.prototype.disuse = function(apps){
var that = this;
apps = that.isArray(apps) ? apps : [apps];
that.each(apps, function (index, item) {
if (!config.status[item]) {
2023-04-30 01:10:55 +08:00
// return error('module ' + item + ' is not exist');
}
delete that[item];
delete modules[item];
delete that.modules[item];
delete config.status[item];
delete config.modules[item];
2022-06-21 00:25:07 +08:00
});
2022-06-29 08:22:26 +08:00
return that;
2022-06-21 00:25:07 +08:00
};
2023-04-30 01:10:55 +08:00
// 获取节点的 style 属性值
2017-08-21 08:51:13 +08:00
Layui.prototype.getStyle = function(node, name){
var style = node.currentStyle ? node.currentStyle : win.getComputedStyle(node, null);
return style[style.getPropertyValue ? 'getPropertyValue' : 'getAttribute'](name);
};
2023-04-30 01:10:55 +08:00
// css 外部加载器
2017-08-21 08:51:13 +08:00
Layui.prototype.link = function(href, fn, cssname){
2023-05-04 10:17:04 +08:00
var that = this;
var head = doc.getElementsByTagName('head')[0];
var link = doc.createElement('link');
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
if(typeof fn === 'string') cssname = fn;
2023-11-14 22:14:19 +08:00
2023-05-04 10:17:04 +08:00
var app = (cssname || href).replace(/\.|\//g, '');
var id = 'layuicss-'+ app;
2023-05-04 10:17:04 +08:00
var STAUTS_NAME = 'creating';
var timeout = 0;
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
link.href = href + (config.debug ? '?v='+new Date().getTime() : '');
link.rel = 'stylesheet';
link.id = id;
2017-08-21 08:51:13 +08:00
link.media = 'all';
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
if(!doc.getElementById(id)){
head.appendChild(link);
}
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
if(typeof fn !== 'function') return that;
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 轮询 css 是否加载完毕
2021-04-22 10:22:45 +08:00
(function poll(status) {
2023-05-04 10:17:04 +08:00
var delay = 100;
var getLinkElem = doc.getElementById(id); // 获取动态插入的 link 元素
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 如果轮询超过指定秒数,则视为请求文件失败或 css 文件不符合规范
2021-04-22 10:22:45 +08:00
if(++timeout > config.timeout * 1000 / delay){
return error(href + ' timeout');
}
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// css 加载就绪
2021-04-22 10:22:45 +08:00
if(parseInt(that.getStyle(getLinkElem, 'width')) === 1989){
2023-04-30 01:10:55 +08:00
// 如果参数来自于初始轮询(即未加载就绪时的),则移除 link 标签状态
2021-04-22 10:22:45 +08:00
if(status === STAUTS_NAME) getLinkElem.removeAttribute('lay-status');
2023-04-30 01:10:55 +08:00
// 如果 link 标签的状态仍为「创建中」,则继续进入轮询,直到状态改变,则执行回调
2021-04-22 10:22:45 +08:00
getLinkElem.getAttribute('lay-status') === STAUTS_NAME ? setTimeout(poll, delay) : fn();
} else {
getLinkElem.setAttribute('lay-status', STAUTS_NAME);
setTimeout(function(){
poll(STAUTS_NAME);
}, delay);
}
}());
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 轮询css是否加载完毕
2021-04-22 10:22:45 +08:00
/*
2017-08-21 08:51:13 +08:00
(function poll() {
if(++timeout > config.timeout * 1000 / 100){
return error(href + ' timeout');
};
parseInt(that.getStyle(doc.getElementById(id), 'width')) === 1989 ? function(){
fn();
}() : setTimeout(poll, 100);
}());
2021-04-22 10:22:45 +08:00
*/
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
return that;
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// css 内部加载器
2021-04-22 10:22:45 +08:00
Layui.prototype.addcss = function(firename, fn, cssname){
return layui.link(config.dir + 'css/' + firename, fn, cssname);
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 存储模块的回调
2018-01-03 09:55:45 +08:00
config.callback = {};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 重新执行模块的工厂函数
2018-01-03 09:55:45 +08:00
Layui.prototype.factory = function(modName){
if(layui[modName]){
2023-11-14 22:14:19 +08:00
return typeof config.callback[modName] === 'function'
2018-01-03 09:55:45 +08:00
? config.callback[modName]
: null;
}
};
2017-08-21 08:51:13 +08:00
2023-04-30 01:10:55 +08:00
// 图片预加载
2023-11-14 22:14:19 +08:00
Layui.prototype.img = function(url, callback, error) {
2017-08-21 08:51:13 +08:00
var img = new Image();
2023-11-14 22:14:19 +08:00
img.src = url;
2017-08-21 08:51:13 +08:00
if(img.complete){
return callback(img);
}
img.onload = function(){
img.onload = null;
2018-05-05 16:59:53 +08:00
typeof callback === 'function' && callback(img);
2017-08-21 08:51:13 +08:00
};
img.onerror = function(e){
img.onerror = null;
2018-05-05 16:59:53 +08:00
typeof error === 'function' && error(e);
2023-11-14 22:14:19 +08:00
};
2017-08-21 08:51:13 +08:00
};
2023-04-30 01:10:55 +08:00
// 全局配置
2017-08-21 08:51:13 +08:00
Layui.prototype.config = function(options){
options = options || {};
for(var key in options){
config[key] = options[key];
}
return this;
};
2023-04-30 01:10:55 +08:00
// 记录全部模块
2017-08-21 08:51:13 +08:00
Layui.prototype.modules = function(){
var clone = {};
for(var o in modules){
clone[o] = modules[o];
}
return clone;
}();
2023-04-30 01:10:55 +08:00
// 拓展模块
2017-08-21 08:51:13 +08:00
Layui.prototype.extend = function(options){
var that = this;
2023-04-30 01:10:55 +08:00
// 验证模块是否被占用
2017-08-21 08:51:13 +08:00
options = options || {};
for(var o in options){
if(that[o] || that.modules[o]){
2021-03-31 14:07:23 +08:00
error(o+ ' Module already exists', 'error');
2017-08-21 08:51:13 +08:00
} else {
that.modules[o] = options[o];
}
}
2017-11-15 11:57:51 +08:00
2017-08-21 08:51:13 +08:00
return that;
};
2020-01-15 06:30:00 +08:00
// location.hash 路由解析
2022-05-18 22:35:13 +08:00
Layui.prototype.router = Layui.prototype.hash = function(hash){
2023-05-04 10:17:04 +08:00
var that = this;
var hash = hash || location.hash;
var data = {
path: [],
search: {},
hash: (hash.match(/[^#](#.*$)/) || [])[1] || ''
2017-08-21 08:51:13 +08:00
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
if(!/^#\//.test(hash)) return data; // 禁止非路由规范
2023-05-04 10:17:04 +08:00
2018-04-03 05:07:35 +08:00
hash = hash.replace(/^#\//, '');
data.href = '/' + hash;
2018-01-03 09:55:45 +08:00
hash = hash.replace(/([^#])(#.*$)/, '$1').split('/') || [];
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 提取 Hash 结构
2017-08-21 08:51:13 +08:00
that.each(hash, function(index, item){
/^\w+=/.test(item) ? function(){
item = item.split('=');
data.search[item[0]] = item[1];
}() : data.path.push(item);
});
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
return data;
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// URL 解析
2020-01-15 06:30:00 +08:00
Layui.prototype.url = function(href){
2023-05-04 10:17:04 +08:00
var that = this;
var data = {
2023-04-30 01:10:55 +08:00
// 提取 url 路径
2020-01-15 06:30:00 +08:00
pathname: function(){
var pathname = href
? function(){
2020-11-26 22:12:46 +08:00
var str = (href.match(/\.[^.]+?\/.+/) || [])[0] || '';
return str.replace(/^[^\/]+/, '').replace(/\?.+/, '');
2020-01-15 06:30:00 +08:00
}()
: location.pathname;
return pathname.replace(/^\//, '').split('/');
2023-05-04 10:17:04 +08:00
}(),
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 提取 url 参数
2023-05-04 10:17:04 +08:00
search: function(){
var obj = {};
2023-11-14 22:14:19 +08:00
var search = (href
2020-11-26 22:12:46 +08:00
? function(){
var str = (href.match(/\?.+/) || [])[0] || '';
return str.replace(/\#.+/, '');
}()
2020-01-15 06:30:00 +08:00
: location.search
2023-04-30 01:10:55 +08:00
).replace(/^\?+/, '').split('&'); // 去除 ?,按 & 分割参数
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 遍历分割后的参数
2020-01-15 06:30:00 +08:00
that.each(search, function(index, item){
var _index = item.indexOf('=')
2023-04-30 01:10:55 +08:00
,key = function(){ // 提取 key
2020-01-15 06:30:00 +08:00
if(_index < 0){
return item.substr(0, item.length);
} else if(_index === 0){
return false;
} else {
return item.substr(0, _index);
}
2023-11-14 22:14:19 +08:00
}();
2023-04-30 01:10:55 +08:00
// 提取 value
2020-01-15 06:30:00 +08:00
if(key){
obj[key] = _index > 0 ? item.substr(_index + 1) : null;
}
});
2023-11-14 22:14:19 +08:00
2020-01-15 06:30:00 +08:00
return obj;
2023-05-04 10:17:04 +08:00
}(),
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 提取 Hash
2023-05-04 10:17:04 +08:00
hash: that.router(function(){
2023-11-14 22:14:19 +08:00
return href
2021-05-08 06:31:19 +08:00
? ((href.match(/#.+/) || [])[0] || '/')
2020-01-15 06:30:00 +08:00
: location.hash;
}())
};
2023-11-14 22:14:19 +08:00
2020-01-15 06:30:00 +08:00
return data;
};
2017-08-21 08:51:13 +08:00
2022-07-03 21:32:50 +08:00
// 本地持久存储
2018-01-03 09:55:45 +08:00
Layui.prototype.data = function(table, settings, storage){
2017-08-21 08:51:13 +08:00
table = table || 'layui';
2018-01-03 09:55:45 +08:00
storage = storage || localStorage;
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
if(!win.JSON || !win.JSON.parse) return;
2023-11-14 22:14:19 +08:00
2022-07-03 21:32:50 +08:00
// 如果 settings 为 null则删除表
2017-08-21 08:51:13 +08:00
if(settings === null){
2018-01-03 09:55:45 +08:00
return delete storage[table];
2017-08-21 08:51:13 +08:00
}
2023-11-14 22:14:19 +08:00
settings = typeof settings === 'object'
? settings
2017-08-21 08:51:13 +08:00
: {key: settings};
2023-11-14 22:14:19 +08:00
2023-05-04 10:17:04 +08:00
try {
2018-01-03 09:55:45 +08:00
var data = JSON.parse(storage[table]);
2023-05-04 10:17:04 +08:00
} catch(e) {
2017-08-21 08:51:13 +08:00
var data = {};
}
2023-11-14 22:14:19 +08:00
2017-11-15 11:57:51 +08:00
if('value' in settings) data[settings.key] = settings.value;
2017-08-21 08:51:13 +08:00
if(settings.remove) delete data[settings.key];
2018-01-03 09:55:45 +08:00
storage[table] = JSON.stringify(data);
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
return settings.key ? data[settings.key] : data;
};
2023-11-14 22:14:19 +08:00
2022-07-03 21:32:50 +08:00
// 本地临时存储
2018-01-03 09:55:45 +08:00
Layui.prototype.sessionData = function(table, settings){
return this.data(table, settings, sessionStorage);
}
2017-08-21 08:51:13 +08:00
2023-04-30 01:10:55 +08:00
// 设备信息
2017-08-21 08:51:13 +08:00
Layui.prototype.device = function(key){
2023-05-04 10:17:04 +08:00
var agent = navigator.userAgent.toLowerCase();
2017-08-21 08:51:13 +08:00
2023-04-30 01:10:55 +08:00
// 获取版本号
2023-05-04 10:17:04 +08:00
var getVersion = function(label){
2017-08-21 08:51:13 +08:00
var exp = new RegExp(label + '/([^\\s\\_\\-]+)');
label = (agent.match(exp)||[])[1];
return label || false;
2023-05-04 10:17:04 +08:00
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 返回结果集
2023-05-04 10:17:04 +08:00
var result = {
2023-04-30 01:10:55 +08:00
os: function(){ // 底层操作系统
2017-08-21 08:51:13 +08:00
if(/windows/.test(agent)){
return 'windows';
} else if(/linux/.test(agent)){
return 'linux';
} else if(/iphone|ipod|ipad|ios/.test(agent)){
return 'ios';
} else if(/mac/.test(agent)){
return 'mac';
2023-11-14 22:14:19 +08:00
}
2023-05-04 10:17:04 +08:00
}(),
ie: function(){ // ie 版本
2017-08-21 08:51:13 +08:00
return (!!win.ActiveXObject || "ActiveXObject" in win) ? (
2023-04-30 01:10:55 +08:00
(agent.match(/msie\s(\d+)/) || [])[1] || '11' // 由于 ie11 并没有 msie 的标识
2017-08-21 08:51:13 +08:00
) : false;
2023-05-04 10:17:04 +08:00
}(),
weixin: getVersion('micromessenger') // 是否微信
2017-08-21 08:51:13 +08:00
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 任意的 key
2017-08-21 08:51:13 +08:00
if(key && !result[key]){
result[key] = getVersion(key);
}
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 移动设备
2017-08-21 08:51:13 +08:00
result.android = /android/.test(agent);
result.ios = result.os === 'ios';
2023-06-17 23:33:54 +08:00
result.mobile = (result.android || result.ios);
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
return result;
};
2023-04-30 01:10:55 +08:00
// 提示
2017-08-21 08:51:13 +08:00
Layui.prototype.hint = function(){
return {
error: error
2021-05-18 02:42:31 +08:00
};
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// typeof 类型细分 -> string/number/boolean/undefined/null、object/array/function/…
2022-05-18 22:35:13 +08:00
Layui.prototype._typeof = Layui.prototype.type = function(operand){
2021-05-18 02:42:31 +08:00
if(operand === null) return String(operand);
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 细分引用类型
2021-05-18 02:42:31 +08:00
return (typeof operand === 'object' || typeof operand === 'function') ? function(){
2023-05-04 10:17:04 +08:00
var type = Object.prototype.toString.call(operand).match(/\s(.+)\]$/) || []; // 匹配类型字符
var classType = 'Function|Array|Date|RegExp|Object|Error|Symbol'; // 常见类型字符
2023-11-14 22:14:19 +08:00
2021-05-18 02:42:31 +08:00
type = type[1] || 'Object';
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 除匹配到的类型外,其他对象均返回 object
2023-11-14 22:14:19 +08:00
return new RegExp('\\b('+ classType + ')\\b').test(type)
? type.toLowerCase()
2021-05-18 02:42:31 +08:00
: 'object';
}() : typeof operand;
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 对象是否具备数组结构(此处为兼容 jQuery 对象)
2022-05-18 22:35:13 +08:00
Layui.prototype._isArray = Layui.prototype.isArray = function(obj){
2023-05-04 10:17:04 +08:00
var that = this;
var len;
var type = that.type(obj);
2023-11-14 22:14:19 +08:00
2021-05-18 02:42:31 +08:00
if(!obj || (typeof obj !== 'object') || obj === win) return false;
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
len = 'length' in obj && obj.length; // 兼容 ie
2021-05-18 02:42:31 +08:00
return type === 'array' || len === 0 || (
2023-04-30 01:10:55 +08:00
typeof len === 'number' && len > 0 && (len - 1) in obj // 兼容 jQuery 对象
2021-05-18 02:42:31 +08:00
);
2017-08-21 08:51:13 +08:00
};
2023-04-30 01:10:55 +08:00
// 遍历
2017-08-21 08:51:13 +08:00
Layui.prototype.each = function(obj, fn){
2023-05-04 10:17:04 +08:00
var key;
var that = this;
var callFn = function(key, obj){ // 回调
2021-05-08 06:31:19 +08:00
return fn.call(obj[key], key, obj[key])
};
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
if(typeof fn !== 'function') return that;
obj = obj || [];
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 优先处理数组结构
2022-05-18 22:35:13 +08:00
if(that.isArray(obj)){
2021-05-18 02:42:31 +08:00
for(key = 0; key < obj.length; key++){
2021-05-08 06:31:19 +08:00
if(callFn(key, obj)) break;
2017-08-21 08:51:13 +08:00
}
} else {
2021-05-18 02:42:31 +08:00
for(key in obj){
2021-05-08 06:31:19 +08:00
if(callFn(key, obj)) break;
2017-08-21 08:51:13 +08:00
}
}
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
return that;
};
2022-05-18 22:35:13 +08:00
// 将数组中的成员对象按照某个 key 的 value 值进行排序
Layui.prototype.sort = function(arr, key, desc, notClone){
2023-05-04 10:17:04 +08:00
var that = this;
var clone = notClone ? (arr || []) : JSON.parse(
2022-05-18 22:35:13 +08:00
JSON.stringify(arr || [])
2017-08-21 08:51:13 +08:00
);
2022-05-18 22:35:13 +08:00
// 若未传入 key则直接返回原对象
if(that.type(arr) === 'object' && !key){
return clone;
2023-04-30 01:10:55 +08:00
} else if(typeof arr !== 'object'){ // 若 arr 非对象
2022-05-18 22:35:13 +08:00
return [clone];
}
2023-11-14 22:14:19 +08:00
2022-05-18 22:35:13 +08:00
// 开始排序
2017-08-21 08:51:13 +08:00
clone.sort(function(o1, o2){
2023-05-04 10:17:04 +08:00
var v1 = o1[key];
var v2 = o2[key];
2023-11-14 22:14:19 +08:00
2022-05-18 22:35:13 +08:00
/*
* 特殊数据
* 若比较的成员均非对象
*/
// 若比较的成员均为数字
if(!isNaN(o1) && !isNaN(o2)) return o1 - o2;
// 若比较的成员只存在某一个非对象
if(!isNaN(o1) && isNaN(o2)){
if(key && typeof o2 === 'object'){
v1 = o1;
} else {
return -1;
}
} else if (isNaN(o1) && !isNaN(o2)){
if(key && typeof o1 === 'object'){
v2 = o2;
} else {
return 1;
}
}
/*
* 正常数据
* 即成员均为对象也传入了对比依据 key
* value 为数字大小排序 value 非数字则按字典序排序
*/
// value 是否为数字
var isNum = [!isNaN(v1), !isNaN(v2)];
// 若为数字比较
2021-05-31 08:57:00 +08:00
if(isNum[0] && isNum[1]){
2023-04-30 01:10:55 +08:00
if(v1 && (!v2 && v2 !== 0)){ // 数字 vs 空
2021-05-31 08:57:00 +08:00
return 1;
2023-04-30 01:10:55 +08:00
} else if((!v1 && v1 !== 0) && v2){ // 空 vs 数字
2021-05-31 08:57:00 +08:00
return -1;
2023-04-30 01:10:55 +08:00
} else { // 数字 vs 数字
2021-05-31 08:57:00 +08:00
return v1 - v2;
}
}
2023-11-14 22:14:19 +08:00
2021-05-31 08:57:00 +08:00
/**
* 字典序排序
*/
2023-11-14 22:14:19 +08:00
2022-05-18 22:35:13 +08:00
// 若为非数字比较
2021-05-31 08:57:00 +08:00
if(!isNum[0] && !isNum[1]){
2022-05-18 22:35:13 +08:00
// 字典序比较
2021-05-31 08:57:00 +08:00
if(v1 > v2){
return 1;
} else if (v1 < v2) {
return -1;
} else {
return 0;
}
}
2023-11-14 22:14:19 +08:00
2022-05-18 22:35:13 +08:00
// 若为混合比较
2023-04-30 01:10:55 +08:00
if(isNum[0] || !isNum[1]){ // 数字 vs 非数字
2021-05-31 08:57:00 +08:00
return -1;
2023-04-30 01:10:55 +08:00
} else if(!isNum[0] || isNum[1]) { // 非数字 vs 数字
2021-05-31 08:57:00 +08:00
return 1;
}
2022-05-18 22:35:13 +08:00
2017-08-21 08:51:13 +08:00
});
2017-08-30 17:10:33 +08:00
2022-05-18 22:35:13 +08:00
desc && clone.reverse(); // 倒序
2017-08-21 08:51:13 +08:00
return clone;
};
2023-04-30 01:10:55 +08:00
// 阻止事件冒泡
2018-01-03 09:55:45 +08:00
Layui.prototype.stope = function(thisEvent){
thisEvent = thisEvent || win.event;
try { thisEvent.stopPropagation() } catch(e){
thisEvent.cancelBubble = true;
}
2017-08-21 08:51:13 +08:00
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 字符常理
2021-05-18 02:42:31 +08:00
var EV_REMOVE = 'LAYUI-EVENT-REMOVE';
2017-08-21 08:51:13 +08:00
2023-04-30 01:10:55 +08:00
// 自定义模块事件
2017-08-21 08:51:13 +08:00
Layui.prototype.onevent = function(modName, events, callback){
2023-11-14 22:14:19 +08:00
if(typeof modName !== 'string'
2017-08-21 08:51:13 +08:00
|| typeof callback !== 'function') return this;
2018-01-03 09:55:45 +08:00
return Layui.event(modName, events, null, callback);
2017-08-21 08:51:13 +08:00
};
2023-04-30 01:10:55 +08:00
// 执行自定义模块事件
2018-01-03 09:55:45 +08:00
Layui.prototype.event = Layui.event = function(modName, events, params, fn){
2023-05-04 10:17:04 +08:00
var that = this;
var result = null;
var filter = (events || '').match(/\((.*)\)$/)||[]; // 提取事件过滤器字符结构select(xxx)
var eventName = (modName + '.'+ events).replace(filter[0], ''); // 获取事件名称form.select
var filterName = filter[1] || ''; // 获取过滤器名称,xxx
var callback = function(_, item){
2017-08-21 08:51:13 +08:00
var res = item && item.call(that, params);
res === false && result === null && (result = false);
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 如果参数传入特定字符,则执行移除事件
2021-05-18 02:42:31 +08:00
if(params === EV_REMOVE){
2020-11-26 22:12:46 +08:00
delete (that.cache.event[eventName] || {})[filterName];
return that;
}
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 添加事件
2018-01-03 09:55:45 +08:00
if(fn){
config.event[eventName] = config.event[eventName] || {};
if (filterName) {
// 带filter不支持重复事件
config.event[eventName][filterName] = [fn];
} else {
// 不带filter处理的是所有的同类事件应该支持重复事件
config.event[eventName][filterName] = config.event[eventName][filterName] || [];
config.event[eventName][filterName].push(fn);
}
2018-01-03 09:55:45 +08:00
return this;
}
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 执行事件回调
2018-01-03 09:55:45 +08:00
layui.each(config.event[eventName], function(key, item){
2023-04-30 01:10:55 +08:00
// 执行当前模块的全部事件
2018-01-03 09:55:45 +08:00
if(filterName === '{*}'){
layui.each(item, callback);
return;
}
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 执行指定事件
2018-01-03 09:55:45 +08:00
key === '' && layui.each(item, callback);
2018-11-01 02:50:21 +08:00
(filterName && key === filterName) && layui.each(item, callback);
2018-01-03 09:55:45 +08:00
});
2023-11-14 22:14:19 +08:00
2017-08-21 08:51:13 +08:00
return result;
};
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 新增模块事件
2020-11-26 22:12:46 +08:00
Layui.prototype.on = function(events, modName, callback){
var that = this;
return that.onevent.call(that, modName, events, callback);
}
2023-11-14 22:14:19 +08:00
2023-04-30 01:10:55 +08:00
// 移除模块事件
2020-11-26 22:12:46 +08:00
Layui.prototype.off = function(events, modName){
var that = this;
2021-05-18 02:42:31 +08:00
return that.event.call(that, modName, events, EV_REMOVE);
2020-11-26 22:12:46 +08:00
};
2023-05-06 17:42:38 +08:00
// 防抖
Layui.prototype.debounce = function (func, wait) {
var timeout;
return function () {
var context = this;
var args = arguments;
clearTimeout(timeout);
timeout = setTimeout(function () {
func.apply(context, args);
}, wait);
}
};
// 节流
Layui.prototype.throttle = function (func, wait) {
var cooldown = false;
return function () {
var context = this;
var args = arguments;
if (!cooldown) {
func.apply(context, args);
cooldown = true;
setTimeout(function () {
cooldown = false;
}, wait);
}
}
};
2023-04-30 01:10:55 +08:00
// exports layui
2017-08-21 08:51:13 +08:00
win.layui = new Layui();
2023-05-06 17:42:38 +08:00
2023-04-30 01:10:55 +08:00
}(window); // gulp build: layui-footer
2017-08-21 08:51:13 +08:00