| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var vue = require('vue');
- var lodashUnified = require('lodash-unified');
- var index = require('./index.js');
- var shared = require('@vue/shared');
- const InitialStateMap = {
- rowKey: "rowKey",
- defaultExpandAll: "defaultExpandAll",
- selectOnIndeterminate: "selectOnIndeterminate",
- indent: "indent",
- lazy: "lazy",
- data: "data",
- ["treeProps.hasChildren"]: {
- key: "lazyColumnIdentifier",
- default: "hasChildren"
- },
- ["treeProps.children"]: {
- key: "childrenColumnName",
- default: "children"
- },
- ["treeProps.checkStrictly"]: {
- key: "checkStrictly",
- default: false
- }
- };
- function createStore(table, props) {
- if (!table) {
- throw new Error("Table is required.");
- }
- const store = index["default"]();
- store.toggleAllSelection = lodashUnified.debounce(store._toggleAllSelection, 10);
- Object.keys(InitialStateMap).forEach((key) => {
- handleValue(getArrKeysValue(props, key), key, store);
- });
- proxyTableProps(store, props);
- return store;
- }
- function proxyTableProps(store, props) {
- Object.keys(InitialStateMap).forEach((key) => {
- vue.watch(() => getArrKeysValue(props, key), (value) => {
- handleValue(value, key, store);
- });
- });
- }
- function handleValue(value, propsKey, store) {
- let newVal = value;
- let storeKey = InitialStateMap[propsKey];
- if (shared.isObject(storeKey)) {
- newVal = newVal || storeKey.default;
- storeKey = storeKey.key;
- }
- store.states[storeKey].value = newVal;
- }
- function getArrKeysValue(props, key) {
- if (key.includes(".")) {
- const keyList = key.split(".");
- let value = props;
- keyList.forEach((k) => {
- value = value[k];
- });
- return value;
- } else {
- return props[key];
- }
- }
- exports.createStore = createStore;
- //# sourceMappingURL=helper.js.map
|