会员权益
This commit is contained in:
57
uni_modules/zebra-swiper/libs/vue2/get-params.js
Normal file
57
uni_modules/zebra-swiper/libs/vue2/get-params.js
Normal file
@@ -0,0 +1,57 @@
|
||||
import Swiper from '../../index.js';
|
||||
import {
|
||||
isObject,
|
||||
extend
|
||||
} from './utils.js';
|
||||
import {
|
||||
paramsList
|
||||
} from './params-list.js';
|
||||
|
||||
function getParams(obj = {}) {
|
||||
const params = {
|
||||
on: {},
|
||||
};
|
||||
const passedParams = {};
|
||||
extend(params, Swiper.defaults);
|
||||
extend(params, Swiper.extendedDefaults);
|
||||
params._emitClasses = true;
|
||||
params.init = false;
|
||||
|
||||
const rest = {};
|
||||
const allowedParams = paramsList.map((key) => key.replace(/_/, ''));
|
||||
// Prevent empty Object.keys(obj) array on ios.
|
||||
const plainObj = Object.assign({}, obj);
|
||||
Object.keys(plainObj).forEach((key) => {
|
||||
if (typeof obj[key] === 'undefined') return;
|
||||
if (allowedParams.indexOf(key) >= 0) {
|
||||
if (isObject(obj[key])) {
|
||||
params[key] = {};
|
||||
passedParams[key] = {};
|
||||
extend(params[key], obj[key]);
|
||||
extend(passedParams[key], obj[key]);
|
||||
} else {
|
||||
params[key] = obj[key];
|
||||
passedParams[key] = obj[key];
|
||||
}
|
||||
} else if (key.search(/on[A-Z]/) === 0 && typeof obj[key] === 'function') {
|
||||
params.on[`${key[2].toLowerCase()}${key.substr(3)}`] = obj[key];
|
||||
} else {
|
||||
rest[key] = obj[key];
|
||||
}
|
||||
});
|
||||
|
||||
['navigation', 'pagination', 'scrollbar'].forEach((key) => {
|
||||
if (params[key] === true) params[key] = {};
|
||||
if (params[key] === false) delete params[key];
|
||||
});
|
||||
|
||||
return {
|
||||
params,
|
||||
passedParams,
|
||||
rest
|
||||
};
|
||||
}
|
||||
|
||||
export {
|
||||
getParams
|
||||
};
|
||||
Reference in New Issue
Block a user