| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- import { ref, watchEffect, watch, unref, computed, onMounted, nextTick } from 'vue';
- import { useEventListener, useResizeObserver } from '@vueuse/core';
- import { useFormSize } from '../../../form/src/hooks/use-form-common-props.mjs';
- function useStyle(props, layout, store, table) {
- const isHidden = ref(false);
- const renderExpanded = ref(null);
- const resizeProxyVisible = ref(false);
- const setDragVisible = (visible) => {
- resizeProxyVisible.value = visible;
- };
- const resizeState = ref({
- width: null,
- height: null,
- headerHeight: null
- });
- const isGroup = ref(false);
- const scrollbarViewStyle = {
- display: "inline-block",
- verticalAlign: "middle"
- };
- const tableWidth = ref();
- const tableScrollHeight = ref(0);
- const bodyScrollHeight = ref(0);
- const headerScrollHeight = ref(0);
- const footerScrollHeight = ref(0);
- const appendScrollHeight = ref(0);
- watchEffect(() => {
- var _a;
- layout.setHeight((_a = props.height) != null ? _a : null);
- });
- watchEffect(() => {
- var _a;
- layout.setMaxHeight((_a = props.maxHeight) != null ? _a : null);
- });
- watch(() => [props.currentRowKey, store.states.rowKey], ([currentRowKey, rowKey]) => {
- if (!unref(rowKey) || !unref(currentRowKey))
- return;
- store.setCurrentRowKey(`${currentRowKey}`);
- }, {
- immediate: true
- });
- watch(() => props.data, (data) => {
- table.store.commit("setData", data);
- }, {
- immediate: true,
- deep: true
- });
- watchEffect(() => {
- if (props.expandRowKeys) {
- store.setExpandRowKeysAdapter(props.expandRowKeys);
- }
- });
- const handleMouseLeave = () => {
- table.store.commit("setHoverRow", null);
- if (table.hoverState)
- table.hoverState = null;
- };
- const handleHeaderFooterMousewheel = (_event, data) => {
- const { pixelX, pixelY } = data;
- if (Math.abs(pixelX) >= Math.abs(pixelY)) {
- table.refs.bodyWrapper.scrollLeft += data.pixelX / 5;
- }
- };
- const shouldUpdateHeight = computed(() => {
- return props.height || props.maxHeight || store.states.fixedColumns.value.length > 0 || store.states.rightFixedColumns.value.length > 0;
- });
- const tableBodyStyles = computed(() => {
- return {
- width: layout.bodyWidth.value ? `${layout.bodyWidth.value}px` : ""
- };
- });
- const doLayout = () => {
- if (shouldUpdateHeight.value) {
- layout.updateElsHeight();
- }
- layout.updateColumnsWidth();
- if (typeof window === "undefined")
- return;
- requestAnimationFrame(syncPosition);
- };
- onMounted(async () => {
- await nextTick();
- store.updateColumns();
- bindEvents();
- requestAnimationFrame(doLayout);
- const el = table.vnode.el;
- const tableHeader = table.refs.headerWrapper;
- if (props.flexible && el && el.parentElement) {
- el.parentElement.style.minWidth = "0";
- }
- resizeState.value = {
- width: tableWidth.value = el.offsetWidth,
- height: el.offsetHeight,
- headerHeight: props.showHeader && tableHeader ? tableHeader.offsetHeight : null
- };
- store.states.columns.value.forEach((column) => {
- if (column.filteredValue && column.filteredValue.length) {
- table.store.commit("filterChange", {
- column,
- values: column.filteredValue,
- silent: true
- });
- }
- });
- table.$ready = true;
- });
- const setScrollClassByEl = (el, className) => {
- if (!el)
- return;
- const classList = Array.from(el.classList).filter((item) => !item.startsWith("is-scrolling-"));
- classList.push(layout.scrollX.value ? className : "is-scrolling-none");
- el.className = classList.join(" ");
- };
- const setScrollClass = (className) => {
- const { tableWrapper } = table.refs;
- setScrollClassByEl(tableWrapper, className);
- };
- const hasScrollClass = (className) => {
- const { tableWrapper } = table.refs;
- return !!(tableWrapper && tableWrapper.classList.contains(className));
- };
- const syncPosition = function() {
- if (!table.refs.scrollBarRef)
- return;
- if (!layout.scrollX.value) {
- const scrollingNoneClass = "is-scrolling-none";
- if (!hasScrollClass(scrollingNoneClass)) {
- setScrollClass(scrollingNoneClass);
- }
- return;
- }
- const scrollContainer = table.refs.scrollBarRef.wrapRef;
- if (!scrollContainer)
- return;
- const { scrollLeft, offsetWidth, scrollWidth } = scrollContainer;
- const { headerWrapper, footerWrapper } = table.refs;
- if (headerWrapper)
- headerWrapper.scrollLeft = scrollLeft;
- if (footerWrapper)
- footerWrapper.scrollLeft = scrollLeft;
- const maxScrollLeftPosition = scrollWidth - offsetWidth - 1;
- if (scrollLeft >= maxScrollLeftPosition) {
- setScrollClass("is-scrolling-right");
- } else if (scrollLeft === 0) {
- setScrollClass("is-scrolling-left");
- } else {
- setScrollClass("is-scrolling-middle");
- }
- };
- const bindEvents = () => {
- if (!table.refs.scrollBarRef)
- return;
- if (table.refs.scrollBarRef.wrapRef) {
- useEventListener(table.refs.scrollBarRef.wrapRef, "scroll", syncPosition, {
- passive: true
- });
- }
- if (props.fit) {
- useResizeObserver(table.vnode.el, resizeListener);
- } else {
- useEventListener(window, "resize", resizeListener);
- }
- useResizeObserver(table.refs.bodyWrapper, () => {
- var _a, _b;
- resizeListener();
- (_b = (_a = table.refs) == null ? void 0 : _a.scrollBarRef) == null ? void 0 : _b.update();
- });
- };
- const resizeListener = () => {
- var _a, _b, _c, _d;
- const el = table.vnode.el;
- if (!table.$ready || !el)
- return;
- let shouldUpdateLayout = false;
- const {
- width: oldWidth,
- height: oldHeight,
- headerHeight: oldHeaderHeight
- } = resizeState.value;
- const width = tableWidth.value = el.offsetWidth;
- if (oldWidth !== width) {
- shouldUpdateLayout = true;
- }
- const height = el.offsetHeight;
- if ((props.height || shouldUpdateHeight.value) && oldHeight !== height) {
- shouldUpdateLayout = true;
- }
- const tableHeader = props.tableLayout === "fixed" ? table.refs.headerWrapper : (_a = table.refs.tableHeaderRef) == null ? void 0 : _a.$el;
- if (props.showHeader && (tableHeader == null ? void 0 : tableHeader.offsetHeight) !== oldHeaderHeight) {
- shouldUpdateLayout = true;
- }
- tableScrollHeight.value = ((_b = table.refs.tableWrapper) == null ? void 0 : _b.scrollHeight) || 0;
- headerScrollHeight.value = (tableHeader == null ? void 0 : tableHeader.scrollHeight) || 0;
- footerScrollHeight.value = ((_c = table.refs.footerWrapper) == null ? void 0 : _c.offsetHeight) || 0;
- appendScrollHeight.value = ((_d = table.refs.appendWrapper) == null ? void 0 : _d.offsetHeight) || 0;
- bodyScrollHeight.value = tableScrollHeight.value - headerScrollHeight.value - footerScrollHeight.value - appendScrollHeight.value;
- if (shouldUpdateLayout) {
- resizeState.value = {
- width,
- height,
- headerHeight: props.showHeader && (tableHeader == null ? void 0 : tableHeader.offsetHeight) || 0
- };
- doLayout();
- }
- };
- const tableSize = useFormSize();
- const bodyWidth = computed(() => {
- const { bodyWidth: bodyWidth_, scrollY, gutterWidth } = layout;
- return bodyWidth_.value ? `${bodyWidth_.value - (scrollY.value ? gutterWidth : 0)}px` : "";
- });
- const tableLayout = computed(() => {
- if (props.maxHeight)
- return "fixed";
- return props.tableLayout;
- });
- const emptyBlockStyle = computed(() => {
- if (props.data && props.data.length)
- return;
- let height = "100%";
- if (props.height && bodyScrollHeight.value) {
- height = `${bodyScrollHeight.value}px`;
- }
- const width = tableWidth.value;
- return {
- width: width ? `${width}px` : "",
- height
- };
- });
- const scrollbarStyle = computed(() => {
- if (props.height) {
- return {
- height: "100%"
- };
- }
- if (props.maxHeight) {
- if (!Number.isNaN(Number(props.maxHeight))) {
- return {
- maxHeight: `${+props.maxHeight - headerScrollHeight.value - footerScrollHeight.value}px`
- };
- } else {
- return {
- maxHeight: `calc(${props.maxHeight} - ${headerScrollHeight.value + footerScrollHeight.value}px)`
- };
- }
- }
- return {};
- });
- return {
- isHidden,
- renderExpanded,
- setDragVisible,
- isGroup,
- handleMouseLeave,
- handleHeaderFooterMousewheel,
- tableSize,
- emptyBlockStyle,
- resizeProxyVisible,
- bodyWidth,
- resizeState,
- doLayout,
- tableBodyStyles,
- tableLayout,
- scrollbarViewStyle,
- scrollbarStyle
- };
- }
- export { useStyle as default };
- //# sourceMappingURL=style-helper.mjs.map
|