element-plus
Version:
A Component Library for Vue 3
40 lines (37 loc) • 1.35 kB
JavaScript
import { inject, computed } from 'vue';
import { TABLE_INJECTION_KEY } from '../tokens.mjs';
function useMapState() {
var _a;
const table = inject(TABLE_INJECTION_KEY);
const store = table == null ? void 0 : table.store;
const leftFixedLeafCount = computed(() => {
var _a2;
return (_a2 = store == null ? void 0 : store.states.fixedLeafColumnsLength.value) != null ? _a2 : 0;
});
const rightFixedLeafCount = computed(() => {
var _a2;
return (_a2 = store == null ? void 0 : store.states.rightFixedColumns.value.length) != null ? _a2 : 0;
});
const columnsCount = computed(() => {
var _a2;
return (_a2 = store == null ? void 0 : store.states.columns.value.length) != null ? _a2 : 0;
});
const leftFixedCount = computed(() => {
var _a2;
return (_a2 = store == null ? void 0 : store.states.fixedColumns.value.length) != null ? _a2 : 0;
});
const rightFixedCount = computed(() => {
var _a2;
return (_a2 = store == null ? void 0 : store.states.rightFixedColumns.value.length) != null ? _a2 : 0;
});
return {
leftFixedLeafCount,
rightFixedLeafCount,
columnsCount,
leftFixedCount,
rightFixedCount,
columns: (_a = store == null ? void 0 : store.states.columns) != null ? _a : []
};
}
export { useMapState as default };
//# sourceMappingURL=mapState-helper.mjs.map