useLabelWidth.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import type { Ref } from 'vue';
  2. import type { FormProps, FormSchema } from '../types/form';
  3. import { computed, unref } from 'vue';
  4. import { isNumber } from '/@/utils/is';
  5. export function useItemLabelWidth(schemaItemRef: Ref<FormSchema>, propsRef: Ref<FormProps>) {
  6. return computed(() => {
  7. const schemaItem = unref(schemaItemRef);
  8. const { labelCol = {}, wrapperCol = {} } = schemaItem.itemProps || {};
  9. const { labelWidth, disabledLabelWidth } = schemaItem;
  10. const {
  11. labelWidth: globalLabelWidth,
  12. labelCol: globalLabelCol,
  13. wrapperCol: globWrapperCol,
  14. } = unref(propsRef);
  15. // If labelWidth is set globally, all items setting
  16. if ((!globalLabelWidth && !labelWidth && !globalLabelCol) || disabledLabelWidth) {
  17. return { labelCol, wrapperCol };
  18. }
  19. let width = labelWidth || globalLabelWidth;
  20. const col = { ...globalLabelCol, ...labelCol };
  21. const wrapCol = { ...globWrapperCol, ...wrapperCol };
  22. if (width) {
  23. width = isNumber(width) ? `${width}px` : width;
  24. }
  25. return {
  26. labelCol: { style: { width }, ...col },
  27. wrapperCol: { style: { width: `calc(100% - ${width})` }, ...wrapCol },
  28. };
  29. });
  30. }