bootstrap-table-editable.js 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
  3. typeof define === 'function' && define.amd ? define(['jquery'], factory) :
  4. (global = global || self, factory(global.jQuery));
  5. }(this, function ($) { 'use strict';
  6. $ = $ && $.hasOwnProperty('default') ? $['default'] : $;
  7. var toString = {}.toString;
  8. var classofRaw = function (it) {
  9. return toString.call(it).slice(8, -1);
  10. };
  11. // `IsArray` abstract operation
  12. // https://tc39.github.io/ecma262/#sec-isarray
  13. var isArray = Array.isArray || function isArray(arg) {
  14. return classofRaw(arg) == 'Array';
  15. };
  16. var isObject = function (it) {
  17. return typeof it === 'object' ? it !== null : typeof it === 'function';
  18. };
  19. // `RequireObjectCoercible` abstract operation
  20. // https://tc39.github.io/ecma262/#sec-requireobjectcoercible
  21. var requireObjectCoercible = function (it) {
  22. if (it == undefined) throw TypeError("Can't call method on " + it);
  23. return it;
  24. };
  25. // `ToObject` abstract operation
  26. // https://tc39.github.io/ecma262/#sec-toobject
  27. var toObject = function (argument) {
  28. return Object(requireObjectCoercible(argument));
  29. };
  30. var ceil = Math.ceil;
  31. var floor = Math.floor;
  32. // `ToInteger` abstract operation
  33. // https://tc39.github.io/ecma262/#sec-tointeger
  34. var toInteger = function (argument) {
  35. return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
  36. };
  37. var min = Math.min;
  38. // `ToLength` abstract operation
  39. // https://tc39.github.io/ecma262/#sec-tolength
  40. var toLength = function (argument) {
  41. return argument > 0 ? min(toInteger(argument), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
  42. };
  43. // 7.1.1 ToPrimitive(input [, PreferredType])
  44. // instead of the ES6 spec version, we didn't implement @@toPrimitive case
  45. // and the second argument - flag - preferred type is a string
  46. var toPrimitive = function (it, S) {
  47. if (!isObject(it)) return it;
  48. var fn, val;
  49. if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
  50. if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;
  51. if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
  52. throw TypeError("Can't convert object to primitive value");
  53. };
  54. var fails = function (exec) {
  55. try {
  56. return !!exec();
  57. } catch (e) {
  58. return true;
  59. }
  60. };
  61. // Thank's IE8 for his funny defineProperty
  62. var descriptors = !fails(function () {
  63. return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
  64. });
  65. // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
  66. var global = typeof window == 'object' && window && window.Math == Math ? window
  67. : typeof self == 'object' && self && self.Math == Math ? self
  68. // eslint-disable-next-line no-new-func
  69. : Function('return this')();
  70. var document = global.document;
  71. // typeof document.createElement is 'object' in old IE
  72. var exist = isObject(document) && isObject(document.createElement);
  73. var documentCreateElement = function (it) {
  74. return exist ? document.createElement(it) : {};
  75. };
  76. // Thank's IE8 for his funny defineProperty
  77. var ie8DomDefine = !descriptors && !fails(function () {
  78. return Object.defineProperty(documentCreateElement('div'), 'a', {
  79. get: function () { return 7; }
  80. }).a != 7;
  81. });
  82. var anObject = function (it) {
  83. if (!isObject(it)) {
  84. throw TypeError(String(it) + ' is not an object');
  85. } return it;
  86. };
  87. var nativeDefineProperty = Object.defineProperty;
  88. var f = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
  89. anObject(O);
  90. P = toPrimitive(P, true);
  91. anObject(Attributes);
  92. if (ie8DomDefine) try {
  93. return nativeDefineProperty(O, P, Attributes);
  94. } catch (e) { /* empty */ }
  95. if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
  96. if ('value' in Attributes) O[P] = Attributes.value;
  97. return O;
  98. };
  99. var objectDefineProperty = {
  100. f: f
  101. };
  102. var createPropertyDescriptor = function (bitmap, value) {
  103. return {
  104. enumerable: !(bitmap & 1),
  105. configurable: !(bitmap & 2),
  106. writable: !(bitmap & 4),
  107. value: value
  108. };
  109. };
  110. var createProperty = function (object, key, value) {
  111. var propertyKey = toPrimitive(key);
  112. if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));
  113. else object[propertyKey] = value;
  114. };
  115. function createCommonjsModule(fn, module) {
  116. return module = { exports: {} }, fn(module, module.exports), module.exports;
  117. }
  118. var hide = descriptors ? function (object, key, value) {
  119. return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
  120. } : function (object, key, value) {
  121. object[key] = value;
  122. return object;
  123. };
  124. var setGlobal = function (key, value) {
  125. try {
  126. hide(global, key, value);
  127. } catch (e) {
  128. global[key] = value;
  129. } return value;
  130. };
  131. var shared = createCommonjsModule(function (module) {
  132. var SHARED = '__core-js_shared__';
  133. var store = global[SHARED] || setGlobal(SHARED, {});
  134. (module.exports = function (key, value) {
  135. return store[key] || (store[key] = value !== undefined ? value : {});
  136. })('versions', []).push({
  137. version: '3.0.0',
  138. mode: 'global',
  139. copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
  140. });
  141. });
  142. var id = 0;
  143. var postfix = Math.random();
  144. var uid = function (key) {
  145. return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + postfix).toString(36));
  146. };
  147. // Chrome 38 Symbol has incorrect toString conversion
  148. var nativeSymbol = !fails(function () {
  149. });
  150. var store = shared('wks');
  151. var Symbol = global.Symbol;
  152. var wellKnownSymbol = function (name) {
  153. return store[name] || (store[name] = nativeSymbol && Symbol[name]
  154. || (nativeSymbol ? Symbol : uid)('Symbol.' + name));
  155. };
  156. var SPECIES = wellKnownSymbol('species');
  157. // `ArraySpeciesCreate` abstract operation
  158. // https://tc39.github.io/ecma262/#sec-arrayspeciescreate
  159. var arraySpeciesCreate = function (originalArray, length) {
  160. var C;
  161. if (isArray(originalArray)) {
  162. C = originalArray.constructor;
  163. // cross-realm fallback
  164. if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
  165. else if (isObject(C)) {
  166. C = C[SPECIES];
  167. if (C === null) C = undefined;
  168. }
  169. } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
  170. };
  171. var SPECIES$1 = wellKnownSymbol('species');
  172. var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
  173. return !fails(function () {
  174. var array = [];
  175. var constructor = array.constructor = {};
  176. constructor[SPECIES$1] = function () {
  177. return { foo: 1 };
  178. };
  179. return array[METHOD_NAME](Boolean).foo !== 1;
  180. });
  181. };
  182. var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
  183. var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
  184. // Nashorn ~ JDK8 bug
  185. var NASHORN_BUG = nativeGetOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
  186. var f$1 = NASHORN_BUG ? function propertyIsEnumerable(V) {
  187. var descriptor = nativeGetOwnPropertyDescriptor(this, V);
  188. return !!descriptor && descriptor.enumerable;
  189. } : nativePropertyIsEnumerable;
  190. var objectPropertyIsEnumerable = {
  191. f: f$1
  192. };
  193. // fallback for non-array-like ES3 and non-enumerable old V8 strings
  194. var split = ''.split;
  195. var indexedObject = fails(function () {
  196. // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
  197. // eslint-disable-next-line no-prototype-builtins
  198. return !Object('z').propertyIsEnumerable(0);
  199. }) ? function (it) {
  200. return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
  201. } : Object;
  202. // toObject with fallback for non-array-like ES3 strings
  203. var toIndexedObject = function (it) {
  204. return indexedObject(requireObjectCoercible(it));
  205. };
  206. var hasOwnProperty = {}.hasOwnProperty;
  207. var has = function (it, key) {
  208. return hasOwnProperty.call(it, key);
  209. };
  210. var nativeGetOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
  211. var f$2 = descriptors ? nativeGetOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
  212. O = toIndexedObject(O);
  213. P = toPrimitive(P, true);
  214. if (ie8DomDefine) try {
  215. return nativeGetOwnPropertyDescriptor$1(O, P);
  216. } catch (e) { /* empty */ }
  217. if (has(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
  218. };
  219. var objectGetOwnPropertyDescriptor = {
  220. f: f$2
  221. };
  222. var functionToString = shared('native-function-to-string', Function.toString);
  223. var WeakMap = global.WeakMap;
  224. var nativeWeakMap = typeof WeakMap === 'function' && /native code/.test(functionToString.call(WeakMap));
  225. var shared$1 = shared('keys');
  226. var sharedKey = function (key) {
  227. return shared$1[key] || (shared$1[key] = uid(key));
  228. };
  229. var hiddenKeys = {};
  230. var WeakMap$1 = global.WeakMap;
  231. var set, get, has$1;
  232. var enforce = function (it) {
  233. return has$1(it) ? get(it) : set(it, {});
  234. };
  235. var getterFor = function (TYPE) {
  236. return function (it) {
  237. var state;
  238. if (!isObject(it) || (state = get(it)).type !== TYPE) {
  239. throw TypeError('Incompatible receiver, ' + TYPE + ' required');
  240. } return state;
  241. };
  242. };
  243. if (nativeWeakMap) {
  244. var store$1 = new WeakMap$1();
  245. var wmget = store$1.get;
  246. var wmhas = store$1.has;
  247. var wmset = store$1.set;
  248. set = function (it, metadata) {
  249. wmset.call(store$1, it, metadata);
  250. return metadata;
  251. };
  252. get = function (it) {
  253. return wmget.call(store$1, it) || {};
  254. };
  255. has$1 = function (it) {
  256. return wmhas.call(store$1, it);
  257. };
  258. } else {
  259. var STATE = sharedKey('state');
  260. hiddenKeys[STATE] = true;
  261. set = function (it, metadata) {
  262. hide(it, STATE, metadata);
  263. return metadata;
  264. };
  265. get = function (it) {
  266. return has(it, STATE) ? it[STATE] : {};
  267. };
  268. has$1 = function (it) {
  269. return has(it, STATE);
  270. };
  271. }
  272. var internalState = {
  273. set: set,
  274. get: get,
  275. has: has$1,
  276. enforce: enforce,
  277. getterFor: getterFor
  278. };
  279. var redefine = createCommonjsModule(function (module) {
  280. var getInternalState = internalState.get;
  281. var enforceInternalState = internalState.enforce;
  282. var TEMPLATE = String(functionToString).split('toString');
  283. shared('inspectSource', function (it) {
  284. return functionToString.call(it);
  285. });
  286. (module.exports = function (O, key, value, options) {
  287. var unsafe = options ? !!options.unsafe : false;
  288. var simple = options ? !!options.enumerable : false;
  289. var noTargetGet = options ? !!options.noTargetGet : false;
  290. if (typeof value == 'function') {
  291. if (typeof key == 'string' && !has(value, 'name')) hide(value, 'name', key);
  292. enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');
  293. }
  294. if (O === global) {
  295. if (simple) O[key] = value;
  296. else setGlobal(key, value);
  297. return;
  298. } else if (!unsafe) {
  299. delete O[key];
  300. } else if (!noTargetGet && O[key]) {
  301. simple = true;
  302. }
  303. if (simple) O[key] = value;
  304. else hide(O, key, value);
  305. // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
  306. })(Function.prototype, 'toString', function toString() {
  307. return typeof this == 'function' && getInternalState(this).source || functionToString.call(this);
  308. });
  309. });
  310. var max = Math.max;
  311. var min$1 = Math.min;
  312. // Helper for a popular repeating case of the spec:
  313. // Let integer be ? ToInteger(index).
  314. // If integer < 0, let result be max((length + integer), 0); else let result be min(length, length).
  315. var toAbsoluteIndex = function (index, length) {
  316. var integer = toInteger(index);
  317. return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
  318. };
  319. // `Array.prototype.{ indexOf, includes }` methods implementation
  320. // false -> Array#indexOf
  321. // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
  322. // true -> Array#includes
  323. // https://tc39.github.io/ecma262/#sec-array.prototype.includes
  324. var arrayIncludes = function (IS_INCLUDES) {
  325. return function ($this, el, fromIndex) {
  326. var O = toIndexedObject($this);
  327. var length = toLength(O.length);
  328. var index = toAbsoluteIndex(fromIndex, length);
  329. var value;
  330. // Array#includes uses SameValueZero equality algorithm
  331. // eslint-disable-next-line no-self-compare
  332. if (IS_INCLUDES && el != el) while (length > index) {
  333. value = O[index++];
  334. // eslint-disable-next-line no-self-compare
  335. if (value != value) return true;
  336. // Array#indexOf ignores holes, Array#includes - not
  337. } else for (;length > index; index++) if (IS_INCLUDES || index in O) {
  338. if (O[index] === el) return IS_INCLUDES || index || 0;
  339. } return !IS_INCLUDES && -1;
  340. };
  341. };
  342. var arrayIndexOf = arrayIncludes(false);
  343. var objectKeysInternal = function (object, names) {
  344. var O = toIndexedObject(object);
  345. var i = 0;
  346. var result = [];
  347. var key;
  348. for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
  349. // Don't enum bug & hidden keys
  350. while (names.length > i) if (has(O, key = names[i++])) {
  351. ~arrayIndexOf(result, key) || result.push(key);
  352. }
  353. return result;
  354. };
  355. // IE8- don't enum bug keys
  356. var enumBugKeys = [
  357. 'constructor',
  358. 'hasOwnProperty',
  359. 'isPrototypeOf',
  360. 'propertyIsEnumerable',
  361. 'toLocaleString',
  362. 'toString',
  363. 'valueOf'
  364. ];
  365. // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)
  366. var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
  367. var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
  368. return objectKeysInternal(O, hiddenKeys$1);
  369. };
  370. var objectGetOwnPropertyNames = {
  371. f: f$3
  372. };
  373. var f$4 = Object.getOwnPropertySymbols;
  374. var objectGetOwnPropertySymbols = {
  375. f: f$4
  376. };
  377. var Reflect$1 = global.Reflect;
  378. // all object keys, includes non-enumerable and symbols
  379. var ownKeys = Reflect$1 && Reflect$1.ownKeys || function ownKeys(it) {
  380. var keys = objectGetOwnPropertyNames.f(anObject(it));
  381. var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
  382. return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
  383. };
  384. var copyConstructorProperties = function (target, source) {
  385. var keys = ownKeys(source);
  386. var defineProperty = objectDefineProperty.f;
  387. var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
  388. for (var i = 0; i < keys.length; i++) {
  389. var key = keys[i];
  390. if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
  391. }
  392. };
  393. var replacement = /#|\.prototype\./;
  394. var isForced = function (feature, detection) {
  395. var value = data[normalize(feature)];
  396. return value == POLYFILL ? true
  397. : value == NATIVE ? false
  398. : typeof detection == 'function' ? fails(detection)
  399. : !!detection;
  400. };
  401. var normalize = isForced.normalize = function (string) {
  402. return String(string).replace(replacement, '.').toLowerCase();
  403. };
  404. var data = isForced.data = {};
  405. var NATIVE = isForced.NATIVE = 'N';
  406. var POLYFILL = isForced.POLYFILL = 'P';
  407. var isForced_1 = isForced;
  408. var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
  409. /*
  410. options.target - name of the target object
  411. options.global - target is the global object
  412. options.stat - export as static methods of target
  413. options.proto - export as prototype methods of target
  414. options.real - real prototype method for the `pure` version
  415. options.forced - export even if the native feature is available
  416. options.bind - bind methods to the target, required for the `pure` version
  417. options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
  418. options.unsafe - use the simple assignment of property instead of delete + defineProperty
  419. options.sham - add a flag to not completely full polyfills
  420. options.enumerable - export as enumerable property
  421. options.noTargetGet - prevent calling a getter on target
  422. */
  423. var _export = function (options, source) {
  424. var TARGET = options.target;
  425. var GLOBAL = options.global;
  426. var STATIC = options.stat;
  427. var FORCED, target, key, targetProperty, sourceProperty, descriptor;
  428. if (GLOBAL) {
  429. target = global;
  430. } else if (STATIC) {
  431. target = global[TARGET] || setGlobal(TARGET, {});
  432. } else {
  433. target = (global[TARGET] || {}).prototype;
  434. }
  435. if (target) for (key in source) {
  436. sourceProperty = source[key];
  437. if (options.noTargetGet) {
  438. descriptor = getOwnPropertyDescriptor(target, key);
  439. targetProperty = descriptor && descriptor.value;
  440. } else targetProperty = target[key];
  441. FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
  442. // contained in target
  443. if (!FORCED && targetProperty !== undefined) {
  444. if (typeof sourceProperty === typeof targetProperty) continue;
  445. copyConstructorProperties(sourceProperty, targetProperty);
  446. }
  447. // add a flag to not completely full polyfills
  448. if (options.sham || (targetProperty && targetProperty.sham)) {
  449. hide(sourceProperty, 'sham', true);
  450. }
  451. // extend global
  452. redefine(target, key, sourceProperty, options);
  453. }
  454. };
  455. var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
  456. var MAX_SAFE_INTEGER = 0x1fffffffffffff;
  457. var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
  458. var IS_CONCAT_SPREADABLE_SUPPORT = !fails(function () {
  459. var array = [];
  460. array[IS_CONCAT_SPREADABLE] = false;
  461. return array.concat()[0] !== array;
  462. });
  463. var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
  464. var isConcatSpreadable = function (O) {
  465. if (!isObject(O)) return false;
  466. var spreadable = O[IS_CONCAT_SPREADABLE];
  467. return spreadable !== undefined ? !!spreadable : isArray(O);
  468. };
  469. var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
  470. // `Array.prototype.concat` method
  471. // https://tc39.github.io/ecma262/#sec-array.prototype.concat
  472. // with adding support of @@isConcatSpreadable and @@species
  473. _export({ target: 'Array', proto: true, forced: FORCED }, {
  474. concat: function concat(arg) { // eslint-disable-line no-unused-vars
  475. var O = toObject(this);
  476. var A = arraySpeciesCreate(O, 0);
  477. var n = 0;
  478. var i, k, length, len, E;
  479. for (i = -1, length = arguments.length; i < length; i++) {
  480. E = i === -1 ? O : arguments[i];
  481. if (isConcatSpreadable(E)) {
  482. len = toLength(E.length);
  483. if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
  484. for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
  485. } else {
  486. if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
  487. createProperty(A, n++, E);
  488. }
  489. }
  490. A.length = n;
  491. return A;
  492. }
  493. });
  494. var aFunction = function (it) {
  495. if (typeof it != 'function') {
  496. throw TypeError(String(it) + ' is not a function');
  497. } return it;
  498. };
  499. // optional / simple context binding
  500. var bindContext = function (fn, that, length) {
  501. aFunction(fn);
  502. if (that === undefined) return fn;
  503. switch (length) {
  504. case 0: return function () {
  505. return fn.call(that);
  506. };
  507. case 1: return function (a) {
  508. return fn.call(that, a);
  509. };
  510. case 2: return function (a, b) {
  511. return fn.call(that, a, b);
  512. };
  513. case 3: return function (a, b, c) {
  514. return fn.call(that, a, b, c);
  515. };
  516. }
  517. return function (/* ...args */) {
  518. return fn.apply(that, arguments);
  519. };
  520. };
  521. // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation
  522. // 0 -> Array#forEach
  523. // https://tc39.github.io/ecma262/#sec-array.prototype.foreach
  524. // 1 -> Array#map
  525. // https://tc39.github.io/ecma262/#sec-array.prototype.map
  526. // 2 -> Array#filter
  527. // https://tc39.github.io/ecma262/#sec-array.prototype.filter
  528. // 3 -> Array#some
  529. // https://tc39.github.io/ecma262/#sec-array.prototype.some
  530. // 4 -> Array#every
  531. // https://tc39.github.io/ecma262/#sec-array.prototype.every
  532. // 5 -> Array#find
  533. // https://tc39.github.io/ecma262/#sec-array.prototype.find
  534. // 6 -> Array#findIndex
  535. // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex
  536. var arrayMethods = function (TYPE, specificCreate) {
  537. var IS_MAP = TYPE == 1;
  538. var IS_FILTER = TYPE == 2;
  539. var IS_SOME = TYPE == 3;
  540. var IS_EVERY = TYPE == 4;
  541. var IS_FIND_INDEX = TYPE == 6;
  542. var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
  543. var create = specificCreate || arraySpeciesCreate;
  544. return function ($this, callbackfn, that) {
  545. var O = toObject($this);
  546. var self = indexedObject(O);
  547. var boundFunction = bindContext(callbackfn, that, 3);
  548. var length = toLength(self.length);
  549. var index = 0;
  550. var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;
  551. var value, result;
  552. for (;length > index; index++) if (NO_HOLES || index in self) {
  553. value = self[index];
  554. result = boundFunction(value, index, O);
  555. if (TYPE) {
  556. if (IS_MAP) target[index] = result; // map
  557. else if (result) switch (TYPE) {
  558. case 3: return true; // some
  559. case 5: return value; // find
  560. case 6: return index; // findIndex
  561. case 2: target.push(value); // filter
  562. } else if (IS_EVERY) return false; // every
  563. }
  564. }
  565. return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
  566. };
  567. };
  568. // 19.1.2.14 / 15.2.3.14 Object.keys(O)
  569. var objectKeys = Object.keys || function keys(O) {
  570. return objectKeysInternal(O, enumBugKeys);
  571. };
  572. var objectDefineProperties = descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
  573. anObject(O);
  574. var keys = objectKeys(Properties);
  575. var length = keys.length;
  576. var i = 0;
  577. var key;
  578. while (length > i) objectDefineProperty.f(O, key = keys[i++], Properties[key]);
  579. return O;
  580. };
  581. var document$1 = global.document;
  582. var html = document$1 && document$1.documentElement;
  583. // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
  584. var IE_PROTO = sharedKey('IE_PROTO');
  585. var PROTOTYPE = 'prototype';
  586. var Empty = function () { /* empty */ };
  587. // Create object with fake `null` prototype: use iframe Object with cleared prototype
  588. var createDict = function () {
  589. // Thrash, waste and sodomy: IE GC bug
  590. var iframe = documentCreateElement('iframe');
  591. var length = enumBugKeys.length;
  592. var lt = '<';
  593. var script = 'script';
  594. var gt = '>';
  595. var js = 'java' + script + ':';
  596. var iframeDocument;
  597. iframe.style.display = 'none';
  598. html.appendChild(iframe);
  599. iframe.src = String(js);
  600. iframeDocument = iframe.contentWindow.document;
  601. iframeDocument.open();
  602. iframeDocument.write(lt + script + gt + 'document.F=Object' + lt + '/' + script + gt);
  603. iframeDocument.close();
  604. createDict = iframeDocument.F;
  605. while (length--) delete createDict[PROTOTYPE][enumBugKeys[length]];
  606. return createDict();
  607. };
  608. var objectCreate = Object.create || function create(O, Properties) {
  609. var result;
  610. if (O !== null) {
  611. Empty[PROTOTYPE] = anObject(O);
  612. result = new Empty();
  613. Empty[PROTOTYPE] = null;
  614. // add "__proto__" for Object.getPrototypeOf polyfill
  615. result[IE_PROTO] = O;
  616. } else result = createDict();
  617. return Properties === undefined ? result : objectDefineProperties(result, Properties);
  618. };
  619. hiddenKeys[IE_PROTO] = true;
  620. var UNSCOPABLES = wellKnownSymbol('unscopables');
  621. var ArrayPrototype = Array.prototype;
  622. // Array.prototype[@@unscopables]
  623. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  624. if (ArrayPrototype[UNSCOPABLES] == undefined) {
  625. hide(ArrayPrototype, UNSCOPABLES, objectCreate(null));
  626. }
  627. // add a key to Array.prototype[@@unscopables]
  628. var addToUnscopables = function (key) {
  629. ArrayPrototype[UNSCOPABLES][key] = true;
  630. };
  631. var internalFind = arrayMethods(5);
  632. var FIND = 'find';
  633. var SKIPS_HOLES = true;
  634. // Shouldn't skip holes
  635. if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });
  636. // `Array.prototype.find` method
  637. // https://tc39.github.io/ecma262/#sec-array.prototype.find
  638. _export({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
  639. find: function find(callbackfn /* , that = undefined */) {
  640. return internalFind(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
  641. }
  642. });
  643. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  644. addToUnscopables(FIND);
  645. var sloppyArrayMethod = function (METHOD_NAME, argument) {
  646. var method = [][METHOD_NAME];
  647. return !method || !fails(function () {
  648. // eslint-disable-next-line no-useless-call
  649. method.call(null, argument || function () { throw Error(); }, 1);
  650. });
  651. };
  652. var internalIndexOf = arrayIncludes(false);
  653. var nativeIndexOf = [].indexOf;
  654. var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;
  655. var SLOPPY_METHOD = sloppyArrayMethod('indexOf');
  656. // `Array.prototype.indexOf` method
  657. // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
  658. _export({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || SLOPPY_METHOD }, {
  659. indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
  660. return NEGATIVE_ZERO
  661. // convert -0 to +0
  662. ? nativeIndexOf.apply(this, arguments) || 0
  663. : internalIndexOf(this, searchElement, arguments[1]);
  664. }
  665. });
  666. var nativeJoin = [].join;
  667. var ES3_STRINGS = indexedObject != Object;
  668. var SLOPPY_METHOD$1 = sloppyArrayMethod('join', ',');
  669. // `Array.prototype.join` method
  670. // https://tc39.github.io/ecma262/#sec-array.prototype.join
  671. _export({ target: 'Array', proto: true, forced: ES3_STRINGS || SLOPPY_METHOD$1 }, {
  672. join: function join(separator) {
  673. return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);
  674. }
  675. });
  676. // CONVERT_TO_STRING: true -> String#at
  677. // CONVERT_TO_STRING: false -> String#codePointAt
  678. var stringAt = function (that, pos, CONVERT_TO_STRING) {
  679. var S = String(requireObjectCoercible(that));
  680. var position = toInteger(pos);
  681. var size = S.length;
  682. var first, second;
  683. if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
  684. first = S.charCodeAt(position);
  685. return first < 0xd800 || first > 0xdbff || position + 1 === size
  686. || (second = S.charCodeAt(position + 1)) < 0xdc00 || second > 0xdfff
  687. ? CONVERT_TO_STRING ? S.charAt(position) : first
  688. : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xd800 << 10) + (second - 0xdc00) + 0x10000;
  689. };
  690. // `AdvanceStringIndex` abstract operation
  691. // https://tc39.github.io/ecma262/#sec-advancestringindex
  692. var advanceStringIndex = function (S, index, unicode) {
  693. return index + (unicode ? stringAt(S, index, true).length : 1);
  694. };
  695. // `RegExp.prototype.flags` getter implementation
  696. // https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags
  697. var regexpFlags = function () {
  698. var that = anObject(this);
  699. var result = '';
  700. if (that.global) result += 'g';
  701. if (that.ignoreCase) result += 'i';
  702. if (that.multiline) result += 'm';
  703. if (that.unicode) result += 'u';
  704. if (that.sticky) result += 'y';
  705. return result;
  706. };
  707. var nativeExec = RegExp.prototype.exec;
  708. // This always refers to the native implementation, because the
  709. // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
  710. // which loads this file before patching the method.
  711. var nativeReplace = String.prototype.replace;
  712. var patchedExec = nativeExec;
  713. var UPDATES_LAST_INDEX_WRONG = (function () {
  714. var re1 = /a/;
  715. var re2 = /b*/g;
  716. nativeExec.call(re1, 'a');
  717. nativeExec.call(re2, 'a');
  718. return re1.lastIndex !== 0 || re2.lastIndex !== 0;
  719. })();
  720. // nonparticipating capturing group, copied from es5-shim's String#split patch.
  721. var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
  722. var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED;
  723. if (PATCH) {
  724. patchedExec = function exec(str) {
  725. var re = this;
  726. var lastIndex, reCopy, match, i;
  727. if (NPCG_INCLUDED) {
  728. reCopy = new RegExp('^' + re.source + '$(?!\\s)', regexpFlags.call(re));
  729. }
  730. if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
  731. match = nativeExec.call(re, str);
  732. if (UPDATES_LAST_INDEX_WRONG && match) {
  733. re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
  734. }
  735. if (NPCG_INCLUDED && match && match.length > 1) {
  736. // Fix browsers whose `exec` methods don't consistently return `undefined`
  737. // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
  738. nativeReplace.call(match[0], reCopy, function () {
  739. for (i = 1; i < arguments.length - 2; i++) {
  740. if (arguments[i] === undefined) match[i] = undefined;
  741. }
  742. });
  743. }
  744. return match;
  745. };
  746. }
  747. var regexpExec = patchedExec;
  748. // `RegExpExec` abstract operation
  749. // https://tc39.github.io/ecma262/#sec-regexpexec
  750. var regexpExecAbstract = function (R, S) {
  751. var exec = R.exec;
  752. if (typeof exec === 'function') {
  753. var result = exec.call(R, S);
  754. if (typeof result !== 'object') {
  755. throw TypeError('RegExp exec method returned something other than an Object or null');
  756. }
  757. return result;
  758. }
  759. if (classofRaw(R) !== 'RegExp') {
  760. throw TypeError('RegExp#exec called on incompatible receiver');
  761. }
  762. return regexpExec.call(R, S);
  763. };
  764. var SPECIES$2 = wellKnownSymbol('species');
  765. var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
  766. // #replace needs built-in support for named groups.
  767. // #match works fine because it just return the exec results, even if it has
  768. // a "grops" property.
  769. var re = /./;
  770. re.exec = function () {
  771. var result = [];
  772. result.groups = { a: '7' };
  773. return result;
  774. };
  775. return ''.replace(re, '$<a>') !== '7';
  776. });
  777. // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
  778. // Weex JS has frozen built-in prototypes, so use try / catch wrapper
  779. var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
  780. var re = /(?:)/;
  781. var originalExec = re.exec;
  782. re.exec = function () { return originalExec.apply(this, arguments); };
  783. var result = 'ab'.split(re);
  784. return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
  785. });
  786. var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) {
  787. var SYMBOL = wellKnownSymbol(KEY);
  788. var DELEGATES_TO_SYMBOL = !fails(function () {
  789. // String methods call symbol-named RegEp methods
  790. var O = {};
  791. O[SYMBOL] = function () { return 7; };
  792. return ''[KEY](O) != 7;
  793. });
  794. var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
  795. // Symbol-named RegExp methods call .exec
  796. var execCalled = false;
  797. var re = /a/;
  798. re.exec = function () { execCalled = true; return null; };
  799. if (KEY === 'split') {
  800. // RegExp[@@split] doesn't call the regex's exec method, but first creates
  801. // a new one. We need to return the patched regex when creating the new one.
  802. re.constructor = {};
  803. re.constructor[SPECIES$2] = function () { return re; };
  804. }
  805. re[SYMBOL]('');
  806. return !execCalled;
  807. });
  808. if (
  809. !DELEGATES_TO_SYMBOL ||
  810. !DELEGATES_TO_EXEC ||
  811. (KEY === 'replace' && !REPLACE_SUPPORTS_NAMED_GROUPS) ||
  812. (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
  813. ) {
  814. var nativeRegExpMethod = /./[SYMBOL];
  815. var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
  816. if (regexp.exec === regexpExec) {
  817. if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
  818. // The native String method already delegates to @@method (this
  819. // polyfilled function), leasing to infinite recursion.
  820. // We avoid it by directly calling the native @@method method.
  821. return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
  822. }
  823. return { done: true, value: nativeMethod.call(str, regexp, arg2) };
  824. }
  825. return { done: false };
  826. });
  827. var stringMethod = methods[0];
  828. var regexMethod = methods[1];
  829. redefine(String.prototype, KEY, stringMethod);
  830. redefine(RegExp.prototype, SYMBOL, length == 2
  831. // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
  832. // 21.2.5.11 RegExp.prototype[@@split](string, limit)
  833. ? function (string, arg) { return regexMethod.call(string, this, arg); }
  834. // 21.2.5.6 RegExp.prototype[@@match](string)
  835. // 21.2.5.9 RegExp.prototype[@@search](string)
  836. : function (string) { return regexMethod.call(string, this); }
  837. );
  838. if (sham) hide(RegExp.prototype[SYMBOL], 'sham', true);
  839. }
  840. };
  841. var max$1 = Math.max;
  842. var min$2 = Math.min;
  843. var floor$1 = Math.floor;
  844. var SUBSTITUTION_SYMBOLS = /\$([$&`']|\d\d?|<[^>]*>)/g;
  845. var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&`']|\d\d?)/g;
  846. var maybeToString = function (it) {
  847. return it === undefined ? it : String(it);
  848. };
  849. // @@replace logic
  850. fixRegexpWellKnownSymbolLogic(
  851. 'replace',
  852. 2,
  853. function (REPLACE, nativeReplace, maybeCallNative) {
  854. return [
  855. // `String.prototype.replace` method
  856. // https://tc39.github.io/ecma262/#sec-string.prototype.replace
  857. function replace(searchValue, replaceValue) {
  858. var O = requireObjectCoercible(this);
  859. var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
  860. return replacer !== undefined
  861. ? replacer.call(searchValue, O, replaceValue)
  862. : nativeReplace.call(String(O), searchValue, replaceValue);
  863. },
  864. // `RegExp.prototype[@@replace]` method
  865. // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace
  866. function (regexp, replaceValue) {
  867. var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);
  868. if (res.done) return res.value;
  869. var rx = anObject(regexp);
  870. var S = String(this);
  871. var functionalReplace = typeof replaceValue === 'function';
  872. if (!functionalReplace) replaceValue = String(replaceValue);
  873. var global = rx.global;
  874. if (global) {
  875. var fullUnicode = rx.unicode;
  876. rx.lastIndex = 0;
  877. }
  878. var results = [];
  879. while (true) {
  880. var result = regexpExecAbstract(rx, S);
  881. if (result === null) break;
  882. results.push(result);
  883. if (!global) break;
  884. var matchStr = String(result[0]);
  885. if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
  886. }
  887. var accumulatedResult = '';
  888. var nextSourcePosition = 0;
  889. for (var i = 0; i < results.length; i++) {
  890. result = results[i];
  891. var matched = String(result[0]);
  892. var position = max$1(min$2(toInteger(result.index), S.length), 0);
  893. var captures = [];
  894. // NOTE: This is equivalent to
  895. // captures = result.slice(1).map(maybeToString)
  896. // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
  897. // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
  898. // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
  899. for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
  900. var namedCaptures = result.groups;
  901. if (functionalReplace) {
  902. var replacerArgs = [matched].concat(captures, position, S);
  903. if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
  904. var replacement = String(replaceValue.apply(undefined, replacerArgs));
  905. } else {
  906. replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
  907. }
  908. if (position >= nextSourcePosition) {
  909. accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
  910. nextSourcePosition = position + matched.length;
  911. }
  912. }
  913. return accumulatedResult + S.slice(nextSourcePosition);
  914. }
  915. ];
  916. // https://tc39.github.io/ecma262/#sec-getsubstitution
  917. function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {
  918. var tailPos = position + matched.length;
  919. var m = captures.length;
  920. var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
  921. if (namedCaptures !== undefined) {
  922. namedCaptures = toObject(namedCaptures);
  923. symbols = SUBSTITUTION_SYMBOLS;
  924. }
  925. return nativeReplace.call(replacement, symbols, function (match, ch) {
  926. var capture;
  927. switch (ch.charAt(0)) {
  928. case '$': return '$';
  929. case '&': return matched;
  930. case '`': return str.slice(0, position);
  931. case "'": return str.slice(tailPos);
  932. case '<':
  933. capture = namedCaptures[ch.slice(1, -1)];
  934. break;
  935. default: // \d\d?
  936. var n = +ch;
  937. if (n === 0) return match;
  938. if (n > m) {
  939. var f = floor$1(n / 10);
  940. if (f === 0) return match;
  941. if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
  942. return match;
  943. }
  944. capture = captures[n - 1];
  945. }
  946. return capture === undefined ? '' : capture;
  947. });
  948. }
  949. }
  950. );
  951. function _classCallCheck(instance, Constructor) {
  952. if (!(instance instanceof Constructor)) {
  953. throw new TypeError("Cannot call a class as a function");
  954. }
  955. }
  956. function _defineProperties(target, props) {
  957. for (var i = 0; i < props.length; i++) {
  958. var descriptor = props[i];
  959. descriptor.enumerable = descriptor.enumerable || false;
  960. descriptor.configurable = true;
  961. if ("value" in descriptor) descriptor.writable = true;
  962. Object.defineProperty(target, descriptor.key, descriptor);
  963. }
  964. }
  965. function _createClass(Constructor, protoProps, staticProps) {
  966. if (protoProps) _defineProperties(Constructor.prototype, protoProps);
  967. if (staticProps) _defineProperties(Constructor, staticProps);
  968. return Constructor;
  969. }
  970. function _inherits(subClass, superClass) {
  971. if (typeof superClass !== "function" && superClass !== null) {
  972. throw new TypeError("Super expression must either be null or a function");
  973. }
  974. subClass.prototype = Object.create(superClass && superClass.prototype, {
  975. constructor: {
  976. value: subClass,
  977. writable: true,
  978. configurable: true
  979. }
  980. });
  981. if (superClass) _setPrototypeOf(subClass, superClass);
  982. }
  983. function _getPrototypeOf(o) {
  984. _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
  985. return o.__proto__ || Object.getPrototypeOf(o);
  986. };
  987. return _getPrototypeOf(o);
  988. }
  989. function _setPrototypeOf(o, p) {
  990. _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
  991. o.__proto__ = p;
  992. return o;
  993. };
  994. return _setPrototypeOf(o, p);
  995. }
  996. function _assertThisInitialized(self) {
  997. if (self === void 0) {
  998. throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
  999. }
  1000. return self;
  1001. }
  1002. function _possibleConstructorReturn(self, call) {
  1003. if (call && (typeof call === "object" || typeof call === "function")) {
  1004. return call;
  1005. }
  1006. return _assertThisInitialized(self);
  1007. }
  1008. function _superPropBase(object, property) {
  1009. while (!Object.prototype.hasOwnProperty.call(object, property)) {
  1010. object = _getPrototypeOf(object);
  1011. if (object === null) break;
  1012. }
  1013. return object;
  1014. }
  1015. function _get(target, property, receiver) {
  1016. if (typeof Reflect !== "undefined" && Reflect.get) {
  1017. _get = Reflect.get;
  1018. } else {
  1019. _get = function _get(target, property, receiver) {
  1020. var base = _superPropBase(target, property);
  1021. if (!base) return;
  1022. var desc = Object.getOwnPropertyDescriptor(base, property);
  1023. if (desc.get) {
  1024. return desc.get.call(receiver);
  1025. }
  1026. return desc.value;
  1027. };
  1028. }
  1029. return _get(target, property, receiver || target);
  1030. }
  1031. /**
  1032. * @author zhixin wen <wenzhixin2010@gmail.com>
  1033. * extensions: https://github.com/vitalets/x-editable
  1034. */
  1035. var Utils = $.fn.bootstrapTable.utils;
  1036. $.extend($.fn.bootstrapTable.defaults, {
  1037. editable: true,
  1038. onEditableInit: function onEditableInit() {
  1039. return false;
  1040. },
  1041. onEditableSave: function onEditableSave(field, row, rowIndex, oldValue, $el) {
  1042. return false;
  1043. },
  1044. onEditableShown: function onEditableShown(field, row, $el, editable) {
  1045. return false;
  1046. },
  1047. onEditableHidden: function onEditableHidden(field, row, $el, reason) {
  1048. return false;
  1049. }
  1050. });
  1051. $.extend($.fn.bootstrapTable.Constructor.EVENTS, {
  1052. 'editable-init.bs.table': 'onEditableInit',
  1053. 'editable-save.bs.table': 'onEditableSave',
  1054. 'editable-shown.bs.table': 'onEditableShown',
  1055. 'editable-hidden.bs.table': 'onEditableHidden'
  1056. });
  1057. $.BootstrapTable =
  1058. /*#__PURE__*/
  1059. function (_$$BootstrapTable) {
  1060. _inherits(_class, _$$BootstrapTable);
  1061. function _class() {
  1062. _classCallCheck(this, _class);
  1063. return _possibleConstructorReturn(this, _getPrototypeOf(_class).apply(this, arguments));
  1064. }
  1065. _createClass(_class, [{
  1066. key: "initTable",
  1067. value: function initTable() {
  1068. var _this = this;
  1069. _get(_getPrototypeOf(_class.prototype), "initTable", this).call(this);
  1070. if (!this.options.editable) {
  1071. return;
  1072. }
  1073. $.each(this.columns, function (i, column) {
  1074. if (!column.editable) {
  1075. return;
  1076. }
  1077. var editableOptions = {};
  1078. var editableDataMarkup = [];
  1079. var editableDataPrefix = 'editable-';
  1080. var processDataOptions = function processDataOptions(key, value) {
  1081. // Replace camel case with dashes.
  1082. var dashKey = key.replace(/([A-Z])/g, function ($1) {
  1083. return "-".concat($1.toLowerCase());
  1084. });
  1085. if (dashKey.indexOf(editableDataPrefix) === 0) {
  1086. editableOptions[dashKey.replace(editableDataPrefix, 'data-')] = value;
  1087. }
  1088. };
  1089. $.each(_this.options, processDataOptions);
  1090. column.formatter = column.formatter || function (value) {
  1091. return value;
  1092. };
  1093. column._formatter = column._formatter ? column._formatter : column.formatter;
  1094. column.formatter = function (value, row, index) {
  1095. var result = Utils.calculateObjectValue(column, column._formatter, [value, row, index], value);
  1096. result = typeof result === 'undefined' || result === null ? _this.options.undefinedText : result;
  1097. $.each(column, processDataOptions);
  1098. $.each(editableOptions, function (key, value) {
  1099. editableDataMarkup.push(" ".concat(key, "=\"").concat(value, "\""));
  1100. });
  1101. var _dont_edit_formatter = false;
  1102. if (column.editable.hasOwnProperty('noeditFormatter')) {
  1103. _dont_edit_formatter = column.editable.noeditFormatter(value, row, index);
  1104. }
  1105. if (_dont_edit_formatter === false) {
  1106. return "<a href=\"javascript:void(0)\"\n data-name=\"".concat(column.field, "\"\n data-pk=\"").concat(row[_this.options.idField], "\"\n data-value=\"").concat(result, "\"\n ").concat(editableDataMarkup.join(''), "></a>");
  1107. }
  1108. return _dont_edit_formatter;
  1109. };
  1110. });
  1111. }
  1112. }, {
  1113. key: "initBody",
  1114. value: function initBody(fixedScroll) {
  1115. var _this2 = this;
  1116. _get(_getPrototypeOf(_class.prototype), "initBody", this).call(this, fixedScroll);
  1117. if (!this.options.editable) {
  1118. return;
  1119. }
  1120. $.each(this.columns, function (i, column) {
  1121. if (!column.editable) {
  1122. return;
  1123. }
  1124. var data = _this2.getData();
  1125. var $field = _this2.$body.find("a[data-name=\"".concat(column.field, "\"]"));
  1126. $field.each(function (i, element) {
  1127. var $element = $(element);
  1128. var $tr = $element.closest('tr');
  1129. var index = $tr.data('index');
  1130. var row = data[index];
  1131. var editableOpts = Utils.calculateObjectValue(column, column.editable, [index, row, $element], {});
  1132. $element.editable(editableOpts);
  1133. });
  1134. $field.off('save').on('save', function (_ref, _ref2) {
  1135. var currentTarget = _ref.currentTarget;
  1136. var submitValue = _ref2.submitValue;
  1137. var $this = $(currentTarget);
  1138. var data = _this2.getData();
  1139. var rowIndex = $this.parents('tr[data-index]').data('index');
  1140. var row = data[rowIndex];
  1141. var oldValue = row[column.field];
  1142. $this.data('value', submitValue);
  1143. row[column.field] = submitValue;
  1144. _this2.trigger('editable-save', column.field, row, rowIndex, oldValue, $this);
  1145. _this2.initBody();
  1146. });
  1147. $field.off('shown').on('shown', function (_ref3, editable) {
  1148. var currentTarget = _ref3.currentTarget;
  1149. var $this = $(currentTarget);
  1150. var data = _this2.getData();
  1151. var rowIndex = $this.parents('tr[data-index]').data('index');
  1152. var row = data[rowIndex];
  1153. _this2.trigger('editable-shown', column.field, row, $this, editable);
  1154. });
  1155. $field.off('hidden').on('hidden', function (_ref4, reason) {
  1156. var currentTarget = _ref4.currentTarget;
  1157. var $this = $(currentTarget);
  1158. var data = _this2.getData();
  1159. var rowIndex = $this.parents('tr[data-index]').data('index');
  1160. var row = data[rowIndex];
  1161. _this2.trigger('editable-hidden', column.field, row, $this, reason);
  1162. });
  1163. });
  1164. this.trigger('editable-init');
  1165. }
  1166. }]);
  1167. return _class;
  1168. }($.BootstrapTable);
  1169. }));