|
275 | 275 | "To style these parts, we recommend using css to target the descendents of container parts, such as "
|
276 | 276 | [:code ":row-header-grid"] ". This is currently done in " [:code "re-com.css"]]}
|
277 | 277 |
|
| 278 | + {:name :resize? |
| 279 | + :type "boolean" |
| 280 | + :default "true" |
| 281 | + :validate-fn boolean? |
| 282 | + :description |
| 283 | + [:span "When " [:code "true"] |
| 284 | + ", display draggable resize buttons across all row & column boundaries. " |
| 285 | + "This can be overridden by the other " [:code ":resize-*?"] " props. " |
| 286 | + "NOTE: For a row or column to be resizable along its main axis, its spec must be a map."]} |
| 287 | + |
278 | 288 | {:name :resize-row-height?
|
279 | 289 | :type "boolean"
|
280 | 290 | :default "true"
|
|
292 | 302 | [:span "When " [:code "true"]
|
293 | 303 | ", display draggable resize buttons across the cross-axis dimension of column headers."]}
|
294 | 304 |
|
| 305 | + {:name :resize-row-header-height? |
| 306 | + :type "boolean" |
| 307 | + :default "true" |
| 308 | + :validate-fn boolean? |
| 309 | + :description |
| 310 | + [:span "When " [:code "true"] |
| 311 | + ", display draggable resize buttons across the main-axis dimension of rows. " |
| 312 | + "NOTE: For a row to be resizable, its row-spec must be a map."]} |
| 313 | + |
| 314 | + {:name :resize-column-width? |
| 315 | + :type "boolean" |
| 316 | + :default "true" |
| 317 | + :validate-fn boolean? |
| 318 | + :description |
| 319 | + [:span "When " [:code "true"] |
| 320 | + ", display draggable resize buttons across the cross-axis dimension of columns." |
| 321 | + "NOTE: For a column to be resizable, its column-spec must be a map."]} |
| 322 | + |
295 | 323 | {:name :on-resize
|
296 | 324 | :type "fn"
|
297 | 325 | :default "internal fn"
|
|
519 | 547 | (reset! internal-prop external-value))))
|
520 | 548 | :reagent-render
|
521 | 549 | (fn [{:keys
|
522 |
| - [theme-cells? on-resize show-root-headers? style class resize-row-height? |
523 |
| - resize-column-header-height?] |
| 550 | + [theme-cells? show-root-headers? style class |
| 551 | + on-resize |
| 552 | + resize? resize-row-height? resize-row-header-width? |
| 553 | + resize-column-width? resize-column-header-height?] |
524 | 554 | :as props
|
525 | 555 | :or
|
526 | 556 | {show-root-headers? true
|
527 | 557 | resize-row-height? true
|
| 558 | + resize-row-header-width? true |
| 559 | + resize-column-width? true |
528 | 560 | resize-column-header-height? true
|
| 561 | + resize? true |
529 | 562 | on-resize (fn [{:keys [header-dimension size-dimension keypath size]}]
|
530 | 563 | (case [header-dimension size-dimension]
|
531 | 564 | [:column :height] (swap! internal-column-header-heights safe-assoc (first keypath) size)
|
|
616 | 649 | :dimension :column-width}]))
|
617 | 650 |
|
618 | 651 | row-headers
|
619 |
| - (for [i (range (count @row-paths)) |
620 |
| - :let [row-path (get @row-paths i) |
621 |
| - path-ct (count row-path) |
622 |
| - end-keypath (->> @row-paths |
623 |
| - (drop (inc i)) |
624 |
| - (take-while #(> (count %) path-ct)) |
625 |
| - count |
626 |
| - (+ i 1) |
627 |
| - (#(get @row-keypaths %))) |
628 |
| - {:keys [branch-end? leaf?]} (meta row-path) |
629 |
| - row-path-prop (cond-> row-path (not show-root-headers?) (subvec 1)) |
630 |
| - cross-size (get @safe-row-header-widths |
631 |
| - (cond-> (dec path-ct) (not show-root-headers?) dec)) |
632 |
| - size (get @row-sizes i) |
633 |
| - keypath (get @row-keypaths i)] |
| 652 | + (for [i (range (count @row-paths)) |
| 653 | + :let [row-path (get @row-paths i) |
| 654 | + path-ct (count row-path) |
| 655 | + end-keypath (->> @row-paths |
| 656 | + (drop (inc i)) |
| 657 | + (take-while #(> (count %) path-ct)) |
| 658 | + count |
| 659 | + (+ i 1) |
| 660 | + (#(get @row-keypaths %))) |
| 661 | + {:keys [branch-end? leaf?]} (meta row-path) |
| 662 | + row-path-prop (cond-> row-path (not show-root-headers?) (subvec 1)) |
| 663 | + cross-size (get @safe-row-header-widths |
| 664 | + (cond-> (dec path-ct) (not show-root-headers?) dec)) |
| 665 | + size (get @row-sizes i) |
| 666 | + keypath (get @row-keypaths i)] |
634 | 667 | :when (or show-root-headers? (pos? i))
|
635 |
| - :let [props {:part ::row-header |
636 |
| - :row-path row-path-prop |
637 |
| - :path row-path-prop |
638 |
| - :keypath keypath |
639 |
| - :branch-end? branch-end? |
640 |
| - :style {:grid-row-start (ngu/keypath->grid-line-name keypath) |
641 |
| - :cross-size cross-size |
642 |
| - :grid-row-end (if branch-end? "span 1" |
643 |
| - (ngu/keypath->grid-line-name end-keypath)) |
644 |
| - :grid-column-start (cond-> (count row-path) |
645 |
| - branch-end? dec |
646 |
| - (not show-root-headers?) dec) |
647 |
| - :grid-column-end -1}} |
648 |
| - props (assoc props :children [(part ::row-header-label |
649 |
| - {:props (assoc props |
650 |
| - :style (merge {:height (- size 5)} |
651 |
| - (when-not leaf? |
652 |
| - {:position :sticky |
653 |
| - :top @column-header-height-total}) |
654 |
| - (when-not branch-end? |
655 |
| - {:width (- cross-size 10)}))) |
656 |
| - :impl ngp/row-header-label})])]] |
| 668 | + :let [props {:part ::row-header |
| 669 | + :row-path row-path-prop |
| 670 | + :path row-path-prop |
| 671 | + :keypath keypath |
| 672 | + :branch-end? branch-end? |
| 673 | + :style {:grid-row-start (ngu/keypath->grid-line-name keypath) |
| 674 | + :cross-size cross-size |
| 675 | + :grid-row-end (if branch-end? "span 1" |
| 676 | + (ngu/keypath->grid-line-name end-keypath)) |
| 677 | + :grid-column-start (cond-> (count row-path) |
| 678 | + branch-end? dec |
| 679 | + (not show-root-headers?) dec) |
| 680 | + :grid-column-end -1}} |
| 681 | + props (assoc props :children [(part ::row-header-label |
| 682 | + {:props (assoc props |
| 683 | + :style (merge {:height (- size 5)} |
| 684 | + (when-not leaf? |
| 685 | + {:position :sticky |
| 686 | + :top @column-header-height-total}) |
| 687 | + (when-not branch-end? |
| 688 | + {:width (- cross-size 10)}))) |
| 689 | + :impl ngp/row-header-label})])]] |
657 | 690 | (part ::row-header
|
658 | 691 | {:part ::row-header
|
659 | 692 | :props props
|
|
769 | 802 | {:theme theme
|
770 | 803 | :part ::cell-grid
|
771 | 804 | :props {:children (cond-> cells
|
772 |
| - (not @hide-resizers?) |
| 805 | + (and resize? (not @hide-resizers?)) |
773 | 806 | (concat
|
774 | 807 | (when resize-row-height?
|
775 | 808 | (row-height-resizers {:offset -1}))
|
776 |
| - (column-width-resizers {:style {:grid-row-end -1} |
777 |
| - :offset -1}))) |
| 809 | + (when resize-column-width? |
| 810 | + (column-width-resizers {:style {:grid-row-end -1} |
| 811 | + :offset -1})))) |
778 | 812 | :style {:grid-template-rows @row-template
|
779 | 813 | :grid-template-columns @column-template}}})
|
780 | 814 | (part ::column-header-grid
|
781 | 815 | {:theme theme
|
782 | 816 | :part ::column-header-grid
|
783 | 817 | :props {:children (cond-> column-headers
|
784 |
| - (not @hide-resizers?) |
785 |
| - (concat (when resize-column-header-height? |
786 |
| - column-height-resizers) |
787 |
| - (column-width-resizers {:offset -1}))) |
| 818 | + (and resize? (not @hide-resizers?)) |
| 819 | + (concat |
| 820 | + (when resize-column-header-height? |
| 821 | + column-height-resizers) |
| 822 | + (when resize-column-width? |
| 823 | + (column-width-resizers {:offset -1})))) |
788 | 824 | :style {:grid-template-rows @column-cross-template
|
789 | 825 | :grid-template-columns @column-template}}})
|
790 | 826 | (part ::row-header-grid
|
791 | 827 | {:theme theme
|
792 | 828 | :part ::row-header-grid
|
793 | 829 | :props {:children (cond-> row-headers
|
794 |
| - (not @hide-resizers?) |
795 |
| - (concat row-width-resizers |
796 |
| - (when resize-row-height? |
797 |
| - (row-height-resizers {:offset -1})))) |
| 830 | + (and resize? (not @hide-resizers?)) |
| 831 | + (concat |
| 832 | + (when resize-row-header-width? |
| 833 | + row-width-resizers) |
| 834 | + (when resize-row-height? |
| 835 | + (row-height-resizers {:offset -1})))) |
798 | 836 | :style {:grid-template-rows @row-template
|
799 | 837 | :grid-template-columns @row-cross-template}}})
|
800 | 838 | (part ::corner-header-grid
|
801 | 839 | {:theme theme
|
802 | 840 | :part ::corner-header-grid
|
803 | 841 | :props {:children (cond-> corner-headers
|
804 |
| - (not @hide-resizers?) |
805 |
| - (concat row-width-resizers |
806 |
| - (when resize-column-header-height? |
807 |
| - column-height-resizers))) |
| 842 | + (and resize? (not @hide-resizers?)) |
| 843 | + (concat |
| 844 | + (when resize-row-header-width? |
| 845 | + row-width-resizers) |
| 846 | + (when resize-column-header-height? |
| 847 | + column-height-resizers))) |
808 | 848 | :style {:grid-template-rows @column-cross-template
|
809 | 849 | :grid-template-columns @row-cross-template}}})
|
810 | 850 | (u/deref-or-value overlay)]}}))))})))
|
0 commit comments