|
619 | 619 | (for [i (range (count @row-paths))
|
620 | 620 | :let [row-path (get @row-paths i)
|
621 | 621 | path-ct (count row-path)
|
622 |
| - end-path (some #(when (= (count %) path-ct) %) ;;TODO make this more efficient. |
623 |
| - (drop (inc i) @row-paths)) |
| 622 | + end-keypath (->> @row-paths |
| 623 | + (drop (inc i)) |
| 624 | + (take-while #(> (count %) path-ct)) |
| 625 | + count |
| 626 | + (+ i 1) |
| 627 | + (#(get @row-keypaths %))) |
624 | 628 | {:keys [branch-end? leaf?]} (meta row-path)
|
625 | 629 | row-path-prop (cond-> row-path (not show-root-headers?) (subvec 1))
|
626 | 630 | cross-size (get @safe-row-header-widths
|
627 | 631 | (cond-> (dec path-ct) (not show-root-headers?) dec))
|
628 |
| - size (get @row-sizes i)] |
| 632 | + size (get @row-sizes i) |
| 633 | + keypath (get @row-keypaths i)] |
629 | 634 | :let [props {:part ::row-header
|
630 | 635 | :row-path row-path-prop
|
631 | 636 | :path row-path-prop
|
632 |
| - :keypath (get @row-keypaths i) |
| 637 | + :keypath keypath |
633 | 638 | :branch-end? branch-end?
|
634 |
| - :style {:grid-row-start (ngu/path->grid-line-name row-path) |
| 639 | + :style {:grid-row-start (ngu/keypath->grid-line-name keypath) |
635 | 640 | :cross-size cross-size
|
636 | 641 | :grid-row-end (if branch-end? "span 1"
|
637 |
| - (ngu/path->grid-line-name end-path)) |
| 642 | + (ngu/keypath->grid-line-name end-keypath)) |
638 | 643 | :grid-column-start (cond-> (count row-path)
|
639 | 644 | branch-end? dec
|
640 | 645 | (not show-root-headers?) dec)
|
|
658 | 663 | (for [i (range (count @column-paths))
|
659 | 664 | :let [column-path (get @column-paths i)
|
660 | 665 | path-ct (count column-path)
|
661 |
| - end-path (some #(when (= (count %) path-ct) %) |
662 |
| - (drop (inc i) @column-paths)) |
| 666 | + end-keypath (->> @column-paths |
| 667 | + (drop (inc i)) |
| 668 | + (take-while #(> (count %) path-ct)) |
| 669 | + count |
| 670 | + (+ i 1) |
| 671 | + (#(get @column-keypaths %))) |
663 | 672 | {:keys [branch-end? branch? leaf?]} (meta column-path)
|
664 |
| - column-path-prop (cond-> column-path (not show-root-headers?) (subvec 1))] |
| 673 | + column-path-prop (cond-> column-path (not show-root-headers?) (subvec 1)) |
| 674 | + keypath (get @column-keypaths i)] |
665 | 675 | #_#_:when (not branch-end?)
|
666 | 676 | :let [props {:part ::column-header
|
667 | 677 | :column-path column-path-prop
|
668 | 678 | :path column-path-prop
|
669 | 679 | :branch-end? branch-end?
|
670 |
| - :keypath (get @column-keypaths i) |
671 |
| - :style {:grid-column-start (ngu/path->grid-line-name column-path) |
| 680 | + :keypath keypath |
| 681 | + :style {:grid-column-start (ngu/keypath->grid-line-name keypath) |
672 | 682 | :grid-column-end (cond
|
673 |
| - end-path (ngu/path->grid-line-name end-path) |
674 |
| - leaf? "span 1" |
675 |
| - :else "-1") |
| 683 | + end-keypath (ngu/keypath->grid-line-name end-keypath) |
| 684 | + leaf? "span 1" |
| 685 | + :else "-1") |
676 | 686 | :grid-row-start (cond-> (count column-path)
|
677 | 687 | branch-end? dec
|
678 | 688 | (not show-root-headers?) dec)
|
|
716 | 726 | :key [::corner-header row-index column-index]}))
|
717 | 727 |
|
718 | 728 | cells
|
719 |
| - (for [row-path @row-paths |
720 |
| - column-path @column-paths |
721 |
| - :let [row-meta (meta row-path) |
722 |
| - column-meta (meta column-path)] |
723 |
| - :when (and ((some-fn :leaf? :show?) row-meta) |
724 |
| - ((some-fn :leaf? :show?) column-meta)) |
725 |
| - :let [props {:row-path (cond-> row-path |
726 |
| - (not show-root-headers?) (subvec 1) |
727 |
| - (:branch-end? row-meta) pop) |
728 |
| - :column-path (cond-> column-path |
729 |
| - (not show-root-headers?) (subvec 1) |
730 |
| - (:branch-end? column-meta) pop) |
731 |
| - :row-meta row-meta |
732 |
| - :column-meta column-meta |
733 |
| - :style {:grid-row-start (ngu/path->grid-line-name row-path) |
734 |
| - :grid-column-start (ngu/path->grid-line-name column-path)}} |
735 |
| - props (merge props |
736 |
| - {:children [(part ::cell-label {:props props})]})]] |
| 729 | + (for [ri (range (count @row-paths)) |
| 730 | + ci (range (count @column-paths)) |
| 731 | + :let [row-path (nth @row-paths ri) |
| 732 | + column-path (nth @column-paths ci) |
| 733 | + row-keypath (nth @row-keypaths ri) |
| 734 | + column-keypath (nth @column-keypaths ci) |
| 735 | + row-meta (meta row-path) |
| 736 | + column-meta (meta column-path)] |
| 737 | + :when (and ((some-fn :leaf? :show?) row-meta) |
| 738 | + ((some-fn :leaf? :show?) column-meta)) |
| 739 | + :let [props {:row-path (cond-> row-path |
| 740 | + (not show-root-headers?) (subvec 1) |
| 741 | + (:branch-end? row-meta) pop) |
| 742 | + :column-path (cond-> column-path |
| 743 | + (not show-root-headers?) (subvec 1) |
| 744 | + (:branch-end? column-meta) pop) |
| 745 | + :row-meta row-meta |
| 746 | + :column-meta column-meta |
| 747 | + :style {:grid-row-start (ngu/keypath->grid-line-name row-keypath) |
| 748 | + :grid-column-start (ngu/keypath->grid-line-name column-keypath)}} |
| 749 | + props (merge props |
| 750 | + {:children [(part ::cell-label {:props props})]})]] |
737 | 751 | (part ::cell
|
738 | 752 | {:part ::cell
|
739 | 753 | :props props
|
|
0 commit comments