@datum-cloud/activity-ui 0.3.0-dev.e099a6f → 0.3.0-dev.fc17572
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ActivityExpandedDetails.d.ts +3 -1
- package/dist/components/ActivityExpandedDetails.d.ts.map +1 -1
- package/dist/components/ActivityFeed.d.ts +3 -1
- package/dist/components/ActivityFeed.d.ts.map +1 -1
- package/dist/components/ActivityFeedFilters.d.ts.map +1 -1
- package/dist/components/ActivityFeedItem.d.ts +2 -4
- package/dist/components/ActivityFeedItem.d.ts.map +1 -1
- package/dist/components/ResourceHistoryView.d.ts.map +1 -1
- package/dist/components/ui/filter-chip.d.ts.map +1 -1
- package/dist/index.esm.js +187 -103
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +187 -103
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -7474,7 +7474,7 @@ function subMinutes(date, amount) {
|
|
|
7474
7474
|
}
|
|
7475
7475
|
|
|
7476
7476
|
/**
|
|
7477
|
-
* @license lucide-react v0.
|
|
7477
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7478
7478
|
*
|
|
7479
7479
|
* This source code is licensed under the ISC license.
|
|
7480
7480
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7485,7 +7485,7 @@ const mergeClasses = (...classes) => classes.filter((className, index, array) =>
|
|
|
7485
7485
|
}).join(" ").trim();
|
|
7486
7486
|
|
|
7487
7487
|
/**
|
|
7488
|
-
* @license lucide-react v0.
|
|
7488
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7489
7489
|
*
|
|
7490
7490
|
* This source code is licensed under the ISC license.
|
|
7491
7491
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7494,7 +7494,7 @@ const mergeClasses = (...classes) => classes.filter((className, index, array) =>
|
|
|
7494
7494
|
const toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
7495
7495
|
|
|
7496
7496
|
/**
|
|
7497
|
-
* @license lucide-react v0.
|
|
7497
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7498
7498
|
*
|
|
7499
7499
|
* This source code is licensed under the ISC license.
|
|
7500
7500
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7506,7 +7506,7 @@ const toCamelCase = (string) => string.replace(
|
|
|
7506
7506
|
);
|
|
7507
7507
|
|
|
7508
7508
|
/**
|
|
7509
|
-
* @license lucide-react v0.
|
|
7509
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7510
7510
|
*
|
|
7511
7511
|
* This source code is licensed under the ISC license.
|
|
7512
7512
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7519,7 +7519,7 @@ const toPascalCase = (string) => {
|
|
|
7519
7519
|
};
|
|
7520
7520
|
|
|
7521
7521
|
/**
|
|
7522
|
-
* @license lucide-react v0.
|
|
7522
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7523
7523
|
*
|
|
7524
7524
|
* This source code is licensed under the ISC license.
|
|
7525
7525
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7538,7 +7538,7 @@ var defaultAttributes = {
|
|
|
7538
7538
|
};
|
|
7539
7539
|
|
|
7540
7540
|
/**
|
|
7541
|
-
* @license lucide-react v0.
|
|
7541
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7542
7542
|
*
|
|
7543
7543
|
* This source code is licensed under the ISC license.
|
|
7544
7544
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7554,7 +7554,7 @@ const hasA11yProp = (props) => {
|
|
|
7554
7554
|
};
|
|
7555
7555
|
|
|
7556
7556
|
/**
|
|
7557
|
-
* @license lucide-react v0.
|
|
7557
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7558
7558
|
*
|
|
7559
7559
|
* This source code is licensed under the ISC license.
|
|
7560
7560
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7592,7 +7592,7 @@ const Icon = React.forwardRef(
|
|
|
7592
7592
|
);
|
|
7593
7593
|
|
|
7594
7594
|
/**
|
|
7595
|
-
* @license lucide-react v0.
|
|
7595
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7596
7596
|
*
|
|
7597
7597
|
* This source code is licensed under the ISC license.
|
|
7598
7598
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7617,174 +7617,193 @@ const createLucideIcon = (iconName, iconNode) => {
|
|
|
7617
7617
|
};
|
|
7618
7618
|
|
|
7619
7619
|
/**
|
|
7620
|
-
* @license lucide-react v0.
|
|
7620
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7621
7621
|
*
|
|
7622
7622
|
* This source code is licensed under the ISC license.
|
|
7623
7623
|
* See the LICENSE file in the root directory of this source tree.
|
|
7624
7624
|
*/
|
|
7625
7625
|
|
|
7626
7626
|
|
|
7627
|
-
const __iconNode$
|
|
7627
|
+
const __iconNode$o = [
|
|
7628
|
+
[
|
|
7629
|
+
"path",
|
|
7630
|
+
{
|
|
7631
|
+
d: "M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",
|
|
7632
|
+
key: "169zse"
|
|
7633
|
+
}
|
|
7634
|
+
]
|
|
7635
|
+
];
|
|
7636
|
+
const Activity = createLucideIcon("activity", __iconNode$o);
|
|
7637
|
+
|
|
7638
|
+
/**
|
|
7639
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7640
|
+
*
|
|
7641
|
+
* This source code is licensed under the ISC license.
|
|
7642
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
7643
|
+
*/
|
|
7644
|
+
|
|
7645
|
+
|
|
7646
|
+
const __iconNode$n = [
|
|
7628
7647
|
["path", { d: "M8 2v4", key: "1cmpym" }],
|
|
7629
7648
|
["path", { d: "M16 2v4", key: "4m81vk" }],
|
|
7630
7649
|
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
|
|
7631
7650
|
["path", { d: "M3 10h18", key: "8toen8" }]
|
|
7632
7651
|
];
|
|
7633
|
-
const Calendar = createLucideIcon("calendar", __iconNode$
|
|
7652
|
+
const Calendar = createLucideIcon("calendar", __iconNode$n);
|
|
7634
7653
|
|
|
7635
7654
|
/**
|
|
7636
|
-
* @license lucide-react v0.
|
|
7655
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7637
7656
|
*
|
|
7638
7657
|
* This source code is licensed under the ISC license.
|
|
7639
7658
|
* See the LICENSE file in the root directory of this source tree.
|
|
7640
7659
|
*/
|
|
7641
7660
|
|
|
7642
7661
|
|
|
7643
|
-
const __iconNode$
|
|
7644
|
-
const Check = createLucideIcon("check", __iconNode$
|
|
7662
|
+
const __iconNode$m = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]];
|
|
7663
|
+
const Check = createLucideIcon("check", __iconNode$m);
|
|
7645
7664
|
|
|
7646
7665
|
/**
|
|
7647
|
-
* @license lucide-react v0.
|
|
7666
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7648
7667
|
*
|
|
7649
7668
|
* This source code is licensed under the ISC license.
|
|
7650
7669
|
* See the LICENSE file in the root directory of this source tree.
|
|
7651
7670
|
*/
|
|
7652
7671
|
|
|
7653
7672
|
|
|
7654
|
-
const __iconNode$
|
|
7655
|
-
const ChevronDown = createLucideIcon("chevron-down", __iconNode$
|
|
7673
|
+
const __iconNode$l = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]];
|
|
7674
|
+
const ChevronDown = createLucideIcon("chevron-down", __iconNode$l);
|
|
7656
7675
|
|
|
7657
7676
|
/**
|
|
7658
|
-
* @license lucide-react v0.
|
|
7677
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7659
7678
|
*
|
|
7660
7679
|
* This source code is licensed under the ISC license.
|
|
7661
7680
|
* See the LICENSE file in the root directory of this source tree.
|
|
7662
7681
|
*/
|
|
7663
7682
|
|
|
7664
7683
|
|
|
7665
|
-
const __iconNode$
|
|
7666
|
-
const ChevronRight = createLucideIcon("chevron-right", __iconNode$
|
|
7684
|
+
const __iconNode$k = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]];
|
|
7685
|
+
const ChevronRight = createLucideIcon("chevron-right", __iconNode$k);
|
|
7667
7686
|
|
|
7668
7687
|
/**
|
|
7669
|
-
* @license lucide-react v0.
|
|
7688
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7670
7689
|
*
|
|
7671
7690
|
* This source code is licensed under the ISC license.
|
|
7672
7691
|
* See the LICENSE file in the root directory of this source tree.
|
|
7673
7692
|
*/
|
|
7674
7693
|
|
|
7675
7694
|
|
|
7676
|
-
const __iconNode$
|
|
7677
|
-
const ChevronUp = createLucideIcon("chevron-up", __iconNode$
|
|
7695
|
+
const __iconNode$j = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]];
|
|
7696
|
+
const ChevronUp = createLucideIcon("chevron-up", __iconNode$j);
|
|
7678
7697
|
|
|
7679
7698
|
/**
|
|
7680
|
-
* @license lucide-react v0.
|
|
7699
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7681
7700
|
*
|
|
7682
7701
|
* This source code is licensed under the ISC license.
|
|
7683
7702
|
* See the LICENSE file in the root directory of this source tree.
|
|
7684
7703
|
*/
|
|
7685
7704
|
|
|
7686
7705
|
|
|
7687
|
-
const __iconNode$
|
|
7706
|
+
const __iconNode$i = [
|
|
7688
7707
|
["path", { d: "m7 15 5 5 5-5", key: "1hf1tw" }],
|
|
7689
7708
|
["path", { d: "m7 9 5-5 5 5", key: "sgt6xg" }]
|
|
7690
7709
|
];
|
|
7691
|
-
const ChevronsUpDown = createLucideIcon("chevrons-up-down", __iconNode$
|
|
7710
|
+
const ChevronsUpDown = createLucideIcon("chevrons-up-down", __iconNode$i);
|
|
7692
7711
|
|
|
7693
7712
|
/**
|
|
7694
|
-
* @license lucide-react v0.
|
|
7713
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7695
7714
|
*
|
|
7696
7715
|
* This source code is licensed under the ISC license.
|
|
7697
7716
|
* See the LICENSE file in the root directory of this source tree.
|
|
7698
7717
|
*/
|
|
7699
7718
|
|
|
7700
7719
|
|
|
7701
|
-
const __iconNode$
|
|
7720
|
+
const __iconNode$h = [
|
|
7702
7721
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
7703
7722
|
["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
|
|
7704
7723
|
["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
|
|
7705
7724
|
];
|
|
7706
|
-
const CircleAlert = createLucideIcon("circle-alert", __iconNode$
|
|
7725
|
+
const CircleAlert = createLucideIcon("circle-alert", __iconNode$h);
|
|
7707
7726
|
|
|
7708
7727
|
/**
|
|
7709
|
-
* @license lucide-react v0.
|
|
7728
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7710
7729
|
*
|
|
7711
7730
|
* This source code is licensed under the ISC license.
|
|
7712
7731
|
* See the LICENSE file in the root directory of this source tree.
|
|
7713
7732
|
*/
|
|
7714
7733
|
|
|
7715
7734
|
|
|
7716
|
-
const __iconNode$
|
|
7735
|
+
const __iconNode$g = [
|
|
7717
7736
|
["path", { d: "M21.801 10A10 10 0 1 1 17 3.335", key: "yps3ct" }],
|
|
7718
7737
|
["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
|
|
7719
7738
|
];
|
|
7720
|
-
const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$
|
|
7739
|
+
const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$g);
|
|
7721
7740
|
|
|
7722
7741
|
/**
|
|
7723
|
-
* @license lucide-react v0.
|
|
7742
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7724
7743
|
*
|
|
7725
7744
|
* This source code is licensed under the ISC license.
|
|
7726
7745
|
* See the LICENSE file in the root directory of this source tree.
|
|
7727
7746
|
*/
|
|
7728
7747
|
|
|
7729
7748
|
|
|
7730
|
-
const __iconNode$
|
|
7749
|
+
const __iconNode$f = [
|
|
7731
7750
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
7732
7751
|
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
|
|
7733
7752
|
];
|
|
7734
|
-
const CircleCheck = createLucideIcon("circle-check", __iconNode$
|
|
7753
|
+
const CircleCheck = createLucideIcon("circle-check", __iconNode$f);
|
|
7735
7754
|
|
|
7736
7755
|
/**
|
|
7737
|
-
* @license lucide-react v0.
|
|
7756
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7738
7757
|
*
|
|
7739
7758
|
* This source code is licensed under the ISC license.
|
|
7740
7759
|
* See the LICENSE file in the root directory of this source tree.
|
|
7741
7760
|
*/
|
|
7742
7761
|
|
|
7743
7762
|
|
|
7744
|
-
const __iconNode$
|
|
7763
|
+
const __iconNode$e = [
|
|
7745
7764
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
7746
7765
|
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
|
|
7747
7766
|
["path", { d: "m9 9 6 6", key: "z0biqf" }]
|
|
7748
7767
|
];
|
|
7749
|
-
const CircleX = createLucideIcon("circle-x", __iconNode$
|
|
7768
|
+
const CircleX = createLucideIcon("circle-x", __iconNode$e);
|
|
7750
7769
|
|
|
7751
7770
|
/**
|
|
7752
|
-
* @license lucide-react v0.
|
|
7771
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7753
7772
|
*
|
|
7754
7773
|
* This source code is licensed under the ISC license.
|
|
7755
7774
|
* See the LICENSE file in the root directory of this source tree.
|
|
7756
7775
|
*/
|
|
7757
7776
|
|
|
7758
7777
|
|
|
7759
|
-
const __iconNode$
|
|
7760
|
-
["
|
|
7761
|
-
["
|
|
7778
|
+
const __iconNode$d = [
|
|
7779
|
+
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
7780
|
+
["path", { d: "M12 6v6l4 2", key: "mmk7yg" }]
|
|
7762
7781
|
];
|
|
7763
|
-
const Clock = createLucideIcon("clock", __iconNode$
|
|
7782
|
+
const Clock = createLucideIcon("clock", __iconNode$d);
|
|
7764
7783
|
|
|
7765
7784
|
/**
|
|
7766
|
-
* @license lucide-react v0.
|
|
7785
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7767
7786
|
*
|
|
7768
7787
|
* This source code is licensed under the ISC license.
|
|
7769
7788
|
* See the LICENSE file in the root directory of this source tree.
|
|
7770
7789
|
*/
|
|
7771
7790
|
|
|
7772
7791
|
|
|
7773
|
-
const __iconNode$
|
|
7792
|
+
const __iconNode$c = [
|
|
7774
7793
|
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
|
|
7775
7794
|
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
|
|
7776
7795
|
];
|
|
7777
|
-
const Copy = createLucideIcon("copy", __iconNode$
|
|
7796
|
+
const Copy = createLucideIcon("copy", __iconNode$c);
|
|
7778
7797
|
|
|
7779
7798
|
/**
|
|
7780
|
-
* @license lucide-react v0.
|
|
7799
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7781
7800
|
*
|
|
7782
7801
|
* This source code is licensed under the ISC license.
|
|
7783
7802
|
* See the LICENSE file in the root directory of this source tree.
|
|
7784
7803
|
*/
|
|
7785
7804
|
|
|
7786
7805
|
|
|
7787
|
-
const __iconNode$
|
|
7806
|
+
const __iconNode$b = [
|
|
7788
7807
|
[
|
|
7789
7808
|
"path",
|
|
7790
7809
|
{
|
|
@@ -7794,21 +7813,41 @@ const __iconNode$a = [
|
|
|
7794
7813
|
],
|
|
7795
7814
|
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
|
|
7796
7815
|
];
|
|
7797
|
-
const Eye = createLucideIcon("eye", __iconNode$
|
|
7816
|
+
const Eye = createLucideIcon("eye", __iconNode$b);
|
|
7798
7817
|
|
|
7799
7818
|
/**
|
|
7800
|
-
* @license lucide-react v0.
|
|
7819
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7801
7820
|
*
|
|
7802
7821
|
* This source code is licensed under the ISC license.
|
|
7803
7822
|
* See the LICENSE file in the root directory of this source tree.
|
|
7804
7823
|
*/
|
|
7805
7824
|
|
|
7806
7825
|
|
|
7807
|
-
const __iconNode$
|
|
7808
|
-
const LoaderCircle = createLucideIcon("loader-circle", __iconNode$
|
|
7826
|
+
const __iconNode$a = [["path", { d: "M21 12a9 9 0 1 1-6.219-8.56", key: "13zald" }]];
|
|
7827
|
+
const LoaderCircle = createLucideIcon("loader-circle", __iconNode$a);
|
|
7809
7828
|
|
|
7810
7829
|
/**
|
|
7811
|
-
* @license lucide-react v0.
|
|
7830
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7831
|
+
*
|
|
7832
|
+
* This source code is licensed under the ISC license.
|
|
7833
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
7834
|
+
*/
|
|
7835
|
+
|
|
7836
|
+
|
|
7837
|
+
const __iconNode$9 = [
|
|
7838
|
+
[
|
|
7839
|
+
"path",
|
|
7840
|
+
{
|
|
7841
|
+
d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",
|
|
7842
|
+
key: "1a8usu"
|
|
7843
|
+
}
|
|
7844
|
+
],
|
|
7845
|
+
["path", { d: "m15 5 4 4", key: "1mk7zo" }]
|
|
7846
|
+
];
|
|
7847
|
+
const Pencil = createLucideIcon("pencil", __iconNode$9);
|
|
7848
|
+
|
|
7849
|
+
/**
|
|
7850
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7812
7851
|
*
|
|
7813
7852
|
* This source code is licensed under the ISC license.
|
|
7814
7853
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7822,7 +7861,7 @@ const __iconNode$8 = [
|
|
|
7822
7861
|
const Plus = createLucideIcon("plus", __iconNode$8);
|
|
7823
7862
|
|
|
7824
7863
|
/**
|
|
7825
|
-
* @license lucide-react v0.
|
|
7864
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7826
7865
|
*
|
|
7827
7866
|
* This source code is licensed under the ISC license.
|
|
7828
7867
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7838,7 +7877,7 @@ const __iconNode$7 = [
|
|
|
7838
7877
|
const RefreshCw = createLucideIcon("refresh-cw", __iconNode$7);
|
|
7839
7878
|
|
|
7840
7879
|
/**
|
|
7841
|
-
* @license lucide-react v0.
|
|
7880
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7842
7881
|
*
|
|
7843
7882
|
* This source code is licensed under the ISC license.
|
|
7844
7883
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7852,7 +7891,7 @@ const __iconNode$6 = [
|
|
|
7852
7891
|
const RotateCw = createLucideIcon("rotate-cw", __iconNode$6);
|
|
7853
7892
|
|
|
7854
7893
|
/**
|
|
7855
|
-
* @license lucide-react v0.
|
|
7894
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7856
7895
|
*
|
|
7857
7896
|
* This source code is licensed under the ISC license.
|
|
7858
7897
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7866,7 +7905,7 @@ const __iconNode$5 = [
|
|
|
7866
7905
|
const Search = createLucideIcon("search", __iconNode$5);
|
|
7867
7906
|
|
|
7868
7907
|
/**
|
|
7869
|
-
* @license lucide-react v0.
|
|
7908
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7870
7909
|
*
|
|
7871
7910
|
* This source code is licensed under the ISC license.
|
|
7872
7911
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7886,7 +7925,7 @@ const __iconNode$4 = [
|
|
|
7886
7925
|
const SquarePen = createLucideIcon("square-pen", __iconNode$4);
|
|
7887
7926
|
|
|
7888
7927
|
/**
|
|
7889
|
-
* @license lucide-react v0.
|
|
7928
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7890
7929
|
*
|
|
7891
7930
|
* This source code is licensed under the ISC license.
|
|
7892
7931
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7903,7 +7942,7 @@ const __iconNode$3 = [
|
|
|
7903
7942
|
const Trash2 = createLucideIcon("trash-2", __iconNode$3);
|
|
7904
7943
|
|
|
7905
7944
|
/**
|
|
7906
|
-
* @license lucide-react v0.
|
|
7945
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7907
7946
|
*
|
|
7908
7947
|
* This source code is licensed under the ISC license.
|
|
7909
7948
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7924,7 +7963,7 @@ const __iconNode$2 = [
|
|
|
7924
7963
|
const TriangleAlert = createLucideIcon("triangle-alert", __iconNode$2);
|
|
7925
7964
|
|
|
7926
7965
|
/**
|
|
7927
|
-
* @license lucide-react v0.
|
|
7966
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7928
7967
|
*
|
|
7929
7968
|
* This source code is licensed under the ISC license.
|
|
7930
7969
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -7938,7 +7977,7 @@ const __iconNode$1 = [
|
|
|
7938
7977
|
const User = createLucideIcon("user", __iconNode$1);
|
|
7939
7978
|
|
|
7940
7979
|
/**
|
|
7941
|
-
* @license lucide-react v0.
|
|
7980
|
+
* @license lucide-react v0.577.0 - ISC
|
|
7942
7981
|
*
|
|
7943
7982
|
* This source code is licensed under the ISC license.
|
|
7944
7983
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -8544,7 +8583,7 @@ function FilterChip({ label, values, options = [], onValuesChange, onClear, inpu
|
|
|
8544
8583
|
}, [options]);
|
|
8545
8584
|
// Find selected options for chips display
|
|
8546
8585
|
const selectedOptions = options.filter((opt) => values.includes(opt.value));
|
|
8547
|
-
return (jsxRuntime.jsxs("div", { className: cn('inline-flex items-center', className), children: [jsxRuntime.jsxs(Popover__namespace.Root, { open: open, onOpenChange: handleOpenChange, children: [jsxRuntime.jsx(Popover__namespace.Trigger, { asChild: true, children: jsxRuntime.jsxs("button", { type: "button", disabled: disabled, className: cn('flex h-7 items-center gap-2 rounded-l-md border border-r-0 border-border bg-
|
|
8586
|
+
return (jsxRuntime.jsxs("div", { className: cn('inline-flex items-center', className), children: [jsxRuntime.jsxs(Popover__namespace.Root, { open: open, onOpenChange: handleOpenChange, children: [jsxRuntime.jsx(Popover__namespace.Trigger, { asChild: true, children: jsxRuntime.jsxs("button", { type: "button", disabled: disabled, className: cn('flex h-7 items-center gap-2 rounded-l-md border border-r-0 border-border bg-card px-2 text-xs outline-none', 'hover:bg-accent/40 data-[state=open]:bg-accent/40 transition-colors', 'disabled:cursor-not-allowed disabled:opacity-50'), children: [jsxRuntime.jsxs("span", { className: "font-medium text-foreground", children: [label, ":"] }), jsxRuntime.jsx("span", { className: "text-foreground truncate max-w-[120px]", children: displayValue }), jsxRuntime.jsx(ChevronDown, { className: "h-3 w-3 text-muted-foreground ml-1" })] }) }), jsxRuntime.jsx(Popover__namespace.Portal, { children: jsxRuntime.jsx(Popover__namespace.Content, { className: cn('z-50 min-w-[var(--radix-popover-trigger-width)] max-w-[320px] overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md', 'data-[state=open]:animate-in data-[state=closed]:animate-out', 'data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0', 'data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95', 'data-[side=bottom]:slide-in-from-top-2 data-[side=top]:slide-in-from-bottom-2'), sideOffset: 4, align: "start", children: inputMode === 'typeahead' ? (jsxRuntime.jsxs(cmdk.Command, { filter: filterOptions, className: "w-full", children: [jsxRuntime.jsx("div", { className: "flex items-center border-b px-3", children: jsxRuntime.jsx(cmdk.CommandInput, { placeholder: searchPlaceholder, value: search, onValueChange: setSearch, className: "flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50" }) }), values.length > 0 && (jsxRuntime.jsx("div", { className: "flex flex-wrap gap-1 p-2 border-b", children: selectedOptions.map((option) => (jsxRuntime.jsxs("span", { className: "inline-flex items-center gap-1 px-2 py-0.5 rounded-md bg-accent text-accent-foreground text-xs", children: [option.label, jsxRuntime.jsx("button", { type: "button", onClick: (e) => handleRemoveValue(e, option.value), className: "rounded-sm hover:bg-accent-foreground/20", children: jsxRuntime.jsx(X, { className: "h-3 w-3" }) })] }, option.value))) })), jsxRuntime.jsxs(cmdk.CommandList, { className: "max-h-[300px] overflow-y-auto p-1", children: [jsxRuntime.jsx(cmdk.CommandEmpty, { className: "py-6 text-center text-sm text-muted-foreground", children: "No results found." }), jsxRuntime.jsx(cmdk.CommandGroup, { children: options.map((option) => (jsxRuntime.jsxs(cmdk.CommandItem, { value: option.value, onSelect: () => handleSelect(option.value), className: cn('relative flex cursor-pointer select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none', 'data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground', 'hover:bg-accent hover:text-accent-foreground'), children: [jsxRuntime.jsx("div", { className: cn('mr-2 h-4 w-4 shrink-0 rounded-sm border border-border', values.includes(option.value) && 'bg-primary border-primary'), children: values.includes(option.value) && (jsxRuntime.jsx("svg", { viewBox: "0 0 12 12", fill: "none", className: "h-full w-full p-0.5 text-primary-foreground", children: jsxRuntime.jsx("path", { d: "M2 6l3 3 5-5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) })) }), jsxRuntime.jsx("span", { className: "flex-1 truncate", children: option.label }), option.count !== undefined && (jsxRuntime.jsxs("span", { className: "ml-2 text-xs text-muted-foreground", children: ["(", option.count, ")"] }))] }, option.value))) })] })] })) : (jsxRuntime.jsx("div", { className: "p-3", children: jsxRuntime.jsx(Input, { type: "text", value: textValue, onChange: handleTextChange, placeholder: placeholder, className: "w-full", autoFocus: true }) })) }) })] }), jsxRuntime.jsx("button", { type: "button", onClick: handleClearAll, disabled: disabled, className: cn('flex h-7 items-center rounded-r-md border border-border bg-card px-2 outline-none', 'hover:bg-accent/40 transition-colors', 'disabled:cursor-not-allowed disabled:opacity-50'), "aria-label": `Clear ${label} filter`, children: jsxRuntime.jsx(X, { className: "h-3 w-3 text-muted-foreground" }) })] }));
|
|
8548
8587
|
}
|
|
8549
8588
|
|
|
8550
8589
|
/**
|
|
@@ -10236,13 +10275,14 @@ const TooltipContent = React__namespace.forwardRef(({ className, sideOffset = 4,
|
|
|
10236
10275
|
TooltipContent.displayName = TooltipPrimitive__namespace.Content.displayName;
|
|
10237
10276
|
|
|
10238
10277
|
/**
|
|
10239
|
-
* Format timestamp for display (
|
|
10278
|
+
* Format timestamp for display (in UTC)
|
|
10240
10279
|
*/
|
|
10241
10280
|
function formatTimestampFull$3(timestamp) {
|
|
10242
10281
|
if (!timestamp)
|
|
10243
10282
|
return 'Unknown time';
|
|
10244
10283
|
try {
|
|
10245
|
-
|
|
10284
|
+
const date = new Date(timestamp);
|
|
10285
|
+
return `${date.getUTCFullYear()}-${String(date.getUTCMonth() + 1).padStart(2, '0')}-${String(date.getUTCDate()).padStart(2, '0')} ${String(date.getUTCHours()).padStart(2, '0')}:${String(date.getUTCMinutes()).padStart(2, '0')}:${String(date.getUTCSeconds()).padStart(2, '0')} UTC`;
|
|
10246
10286
|
}
|
|
10247
10287
|
catch {
|
|
10248
10288
|
return timestamp;
|
|
@@ -10278,11 +10318,11 @@ function CopyButton({ value, label }) {
|
|
|
10278
10318
|
* 5. Resource - what resource was affected
|
|
10279
10319
|
* 6. Origin - correlation to audit logs
|
|
10280
10320
|
*/
|
|
10281
|
-
function ActivityExpandedDetails({ activity, tenantLinkResolver }) {
|
|
10321
|
+
function ActivityExpandedDetails({ activity, tenantLinkResolver, compact = false }) {
|
|
10282
10322
|
const { spec, metadata } = activity;
|
|
10283
10323
|
const { actor, resource, origin, changes, tenant } = spec;
|
|
10284
10324
|
const timestamp = metadata?.creationTimestamp;
|
|
10285
|
-
return (jsxRuntime.jsx(TooltipProvider, { children: jsxRuntime.jsxs("div", { className:
|
|
10325
|
+
return (jsxRuntime.jsx(TooltipProvider, { children: jsxRuntime.jsxs("div", { className: compact ? 'p-4 bg-muted/30' : 'mt-4 pt-4 border-t border-border', children: [changes && changes.length > 0 && (jsxRuntime.jsxs("div", { className: "mb-3", children: [jsxRuntime.jsx("h4", { className: "m-0 mb-2 text-xs font-semibold text-muted-foreground uppercase tracking-wide", children: "Changes" }), jsxRuntime.jsx("div", { className: "flex flex-col gap-2", children: changes.map((change, index) => (jsxRuntime.jsxs("div", { className: "p-2 bg-muted rounded text-sm", children: [jsxRuntime.jsx("span", { className: "block font-semibold text-foreground mb-1 font-mono text-xs", children: change.field }), change.old && (jsxRuntime.jsxs("span", { className: "block ml-2 text-red-600 dark:text-red-400 text-xs", children: [jsxRuntime.jsx("span", { className: "font-medium mr-1", children: "\u2212" }), jsxRuntime.jsx("span", { className: "line-through", children: change.old })] })), change.new && (jsxRuntime.jsxs("span", { className: "block ml-2 text-green-600 dark:text-green-400 text-xs", children: [jsxRuntime.jsx("span", { className: "font-medium mr-1", children: "+" }), change.new] }))] }, index))) })] })), jsxRuntime.jsxs("dl", { className: "grid grid-cols-[repeat(auto-fit,minmax(250px,1fr))] gap-x-6 gap-y-2 m-0 text-xs", children: [jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "Timestamp:" }), jsxRuntime.jsxs("dd", { className: "m-0 text-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: formatTimestampFull$3(timestamp) }), jsxRuntime.jsx(CopyButton, { value: formatTimestampFull$3(timestamp), label: "timestamp" })] })] }), jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "Actor Type:" }), jsxRuntime.jsxs("dd", { className: "m-0 text-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: actor.type }), jsxRuntime.jsx(CopyButton, { value: actor.type, label: "actor type" })] })] }), jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "Actor:" }), jsxRuntime.jsxs("dd", { className: "m-0 text-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: actor.name }), jsxRuntime.jsx(CopyButton, { value: actor.name, label: "actor name" })] })] }), resource.apiGroup && (jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "API Group:" }), jsxRuntime.jsxs("dd", { className: "m-0 text-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: resource.apiGroup }), jsxRuntime.jsx(CopyButton, { value: resource.apiGroup, label: "API group" })] })] })), jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "Resource:" }), jsxRuntime.jsxs("dd", { className: "m-0 text-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: resource.kind }), jsxRuntime.jsx(CopyButton, { value: resource.kind, label: "resource kind" })] })] }), jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "Resource Name:" }), jsxRuntime.jsxs("dd", { className: "m-0 text-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: resource.name }), jsxRuntime.jsx(CopyButton, { value: resource.name, label: "resource name" })] })] }), resource.namespace && (jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "Namespace:" }), jsxRuntime.jsxs("dd", { className: "m-0 text-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: resource.namespace }), jsxRuntime.jsx(CopyButton, { value: resource.namespace, label: "namespace" })] })] })), resource.uid && (jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "Resource UID:" }), jsxRuntime.jsxs("dd", { className: "m-0 font-mono text-muted-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: resource.uid }), jsxRuntime.jsx(CopyButton, { value: resource.uid, label: "resource UID" })] })] })), jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "Origin:" }), jsxRuntime.jsxs("dd", { className: "m-0 text-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: origin.type }), jsxRuntime.jsx(CopyButton, { value: origin.type, label: "origin type" })] })] }), jsxRuntime.jsxs("div", { className: "flex gap-1 items-baseline", children: [jsxRuntime.jsx("dt", { className: "text-muted-foreground shrink-0", children: "Origin ID:" }), jsxRuntime.jsxs("dd", { className: "m-0 font-mono text-muted-foreground flex items-center min-w-0", children: [jsxRuntime.jsx("span", { className: "truncate", children: origin.id }), jsxRuntime.jsx(CopyButton, { value: origin.id, label: "origin ID" })] })] })] })] }) }));
|
|
10286
10326
|
}
|
|
10287
10327
|
|
|
10288
10328
|
/**
|
|
@@ -10300,13 +10340,14 @@ function formatTimestamp$1(timestamp) {
|
|
|
10300
10340
|
}
|
|
10301
10341
|
}
|
|
10302
10342
|
/**
|
|
10303
|
-
* Format timestamp for tooltip (
|
|
10343
|
+
* Format timestamp for tooltip (in UTC)
|
|
10304
10344
|
*/
|
|
10305
10345
|
function formatTimestampFull$2(timestamp) {
|
|
10306
10346
|
if (!timestamp)
|
|
10307
10347
|
return 'Unknown time';
|
|
10308
10348
|
try {
|
|
10309
|
-
|
|
10349
|
+
const date = new Date(timestamp);
|
|
10350
|
+
return `${date.getUTCFullYear()}-${String(date.getUTCMonth() + 1).padStart(2, '0')}-${String(date.getUTCDate()).padStart(2, '0')} ${String(date.getUTCHours()).padStart(2, '0')}:${String(date.getUTCMinutes()).padStart(2, '0')}:${String(date.getUTCSeconds()).padStart(2, '0')} UTC`;
|
|
10310
10351
|
}
|
|
10311
10352
|
catch {
|
|
10312
10353
|
return timestamp;
|
|
@@ -10363,25 +10404,41 @@ function normalizeVerb(verb) {
|
|
|
10363
10404
|
return 'other';
|
|
10364
10405
|
}
|
|
10365
10406
|
/**
|
|
10366
|
-
* Get
|
|
10407
|
+
* Get icon container + icon color classes based on verb
|
|
10408
|
+
*/
|
|
10409
|
+
function getActionIconClasses(verb) {
|
|
10410
|
+
const normalizedVerb = normalizeVerb(verb);
|
|
10411
|
+
switch (normalizedVerb) {
|
|
10412
|
+
case 'create':
|
|
10413
|
+
return { container: 'bg-blue-50 dark:bg-blue-950', icon: 'text-blue-500 dark:text-blue-400' };
|
|
10414
|
+
case 'update':
|
|
10415
|
+
return { container: 'bg-green-50 dark:bg-green-950', icon: 'text-green-600 dark:text-green-400' };
|
|
10416
|
+
case 'delete':
|
|
10417
|
+
return { container: 'bg-red-50 dark:bg-red-950', icon: 'text-red-500 dark:text-red-400' };
|
|
10418
|
+
default:
|
|
10419
|
+
return { container: 'bg-slate-100 dark:bg-slate-800', icon: 'text-slate-500 dark:text-slate-400' };
|
|
10420
|
+
}
|
|
10421
|
+
}
|
|
10422
|
+
/**
|
|
10423
|
+
* Get the Lucide icon component for the timeline node based on verb
|
|
10367
10424
|
*/
|
|
10368
|
-
function
|
|
10425
|
+
function getTimelineIcon(verb) {
|
|
10369
10426
|
const normalizedVerb = normalizeVerb(verb);
|
|
10370
10427
|
switch (normalizedVerb) {
|
|
10371
10428
|
case 'create':
|
|
10372
|
-
return
|
|
10429
|
+
return Plus;
|
|
10373
10430
|
case 'update':
|
|
10374
|
-
return
|
|
10431
|
+
return Pencil;
|
|
10375
10432
|
case 'delete':
|
|
10376
|
-
return
|
|
10433
|
+
return Trash2;
|
|
10377
10434
|
default:
|
|
10378
|
-
return
|
|
10435
|
+
return Activity;
|
|
10379
10436
|
}
|
|
10380
10437
|
}
|
|
10381
10438
|
/**
|
|
10382
10439
|
* ActivityFeedItem renders a single activity in the feed or timeline
|
|
10383
10440
|
*/
|
|
10384
|
-
function ActivityFeedItem({ activity, onResourceClick, resourceLinkResolver, tenantLinkResolver, tenantRenderer, onActorClick, onActivityClick, isSelected = false, className = '', compact = false, isNew = false, variant = 'feed',
|
|
10441
|
+
function ActivityFeedItem({ activity, onResourceClick, resourceLinkResolver, tenantLinkResolver, tenantRenderer, onActorClick, onActivityClick, isSelected = false, className = '', compact = false, isNew = false, variant = 'feed', isLast = false, defaultExpanded = false, }) {
|
|
10385
10442
|
const [isExpanded, setIsExpanded] = React.useState(defaultExpanded);
|
|
10386
10443
|
const { spec, metadata } = activity;
|
|
10387
10444
|
const { actor, summary, links, tenant } = spec;
|
|
@@ -10401,9 +10458,11 @@ function ActivityFeedItem({ activity, onResourceClick, resourceLinkResolver, ten
|
|
|
10401
10458
|
const timestamp = metadata?.creationTimestamp;
|
|
10402
10459
|
const verb = extractVerb(summary);
|
|
10403
10460
|
const isTimeline = variant === 'timeline';
|
|
10404
|
-
// Timeline variant
|
|
10461
|
+
// Timeline variant — flat list row with bottom border
|
|
10405
10462
|
if (isTimeline) {
|
|
10406
|
-
|
|
10463
|
+
const { container: iconBg, icon: iconColor } = getActionIconClasses(verb);
|
|
10464
|
+
const Icon = getTimelineIcon(verb);
|
|
10465
|
+
return (jsxRuntime.jsxs("div", { className: cn(!isLast && !isExpanded && 'border-b border-border', className), children: [jsxRuntime.jsxs("div", { className: cn('flex items-center gap-3 py-3 pl-4 cursor-pointer group', isSelected && 'bg-muted/40'), onClick: toggleExpand, children: [jsxRuntime.jsx("div", { className: cn('w-8 h-8 rounded-md shrink-0 flex items-center justify-center', iconBg, iconColor), children: jsxRuntime.jsx(Icon, { size: 16, strokeWidth: 2 }) }), jsxRuntime.jsx("div", { className: "flex-1 min-w-0 text-sm text-foreground leading-snug", children: jsxRuntime.jsx(ActivityFeedSummary, { summary: summary, links: links, onResourceClick: onResourceClick, resourceLinkResolver: resourceLinkResolver, resourceLinkContext: { tenant } }) }), tenant && (jsxRuntime.jsx("div", { className: "shrink-0", children: tenantRenderer ? tenantRenderer(tenant) : jsxRuntime.jsx(TenantBadge, { tenant: tenant, tenantLinkResolver: tenantLinkResolver, size: "compact" }) })), jsxRuntime.jsx("span", { className: "text-xs text-muted-foreground whitespace-nowrap shrink-0", title: formatTimestampFull$2(timestamp), children: formatTimestamp$1(timestamp) }), jsxRuntime.jsx(Button, { variant: "ghost", size: "sm", className: "h-5 py-0 px-1 text-base text-muted-foreground opacity-0 group-hover:opacity-100 transition-opacity shrink-0", onClick: toggleExpand, "aria-expanded": isExpanded, children: isExpanded ? '−' : '+' })] }), isExpanded && (jsxRuntime.jsx(ActivityExpandedDetails, { activity: activity, tenantLinkResolver: tenantLinkResolver, compact: true }))] }));
|
|
10407
10466
|
}
|
|
10408
10467
|
// Feed variant (single-row layout)
|
|
10409
10468
|
return (jsxRuntime.jsxs(Card, { className: cn('cursor-pointer transition-all duration-200', 'shadow-sm hover:shadow-md hover:-translate-y-0.5', 'hover:border-primary/30 dark:hover:border-primary/40', compact ? 'p-1.5 mb-1' : 'p-4 mb-3', isSelected && 'border-primary bg-primary/5 shadow-md ring-1 ring-primary/20 dark:bg-primary/10', isNew && 'border-l-4 border-l-green-500 bg-green-50/50 dark:border-l-green-400 dark:bg-green-950/30', className), onClick: handleClick, children: [jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [jsxRuntime.jsx("div", { className: cn(getActorAvatarClasses(actor.type, compact), onActorClick && 'cursor-pointer hover:opacity-80 transition-opacity'), title: actor.name, onClick: onActorClick ? handleActorClick : undefined, children: actor.type === 'controller' ? (jsxRuntime.jsx("span", { className: "text-xs", children: "\u2699" })) : actor.type === 'machine account' ? (jsxRuntime.jsx("span", { className: "text-xs", children: "\uD83E\uDD16" })) : (jsxRuntime.jsx("span", { className: "uppercase", children: getActorInitials(actor.name) })) }), jsxRuntime.jsx("div", { className: "flex-1 min-w-0 text-xs leading-snug", children: jsxRuntime.jsx(ActivityFeedSummary, { summary: summary, links: links, onResourceClick: onResourceClick, resourceLinkResolver: resourceLinkResolver, resourceLinkContext: { tenant } }) }), tenant && (jsxRuntime.jsx("div", { className: "shrink-0", children: tenantRenderer ? tenantRenderer(tenant) : jsxRuntime.jsx(TenantBadge, { tenant: tenant, tenantLinkResolver: tenantLinkResolver, size: "compact" }) })), jsxRuntime.jsx("span", { className: "text-xs text-muted-foreground whitespace-nowrap shrink-0", title: formatTimestampFull$2(timestamp), children: formatTimestamp$1(timestamp) }), jsxRuntime.jsx(Button, { variant: "ghost", size: "sm", className: "h-5 py-0 px-1 text-base text-muted-foreground hover:text-foreground shrink-0", onClick: toggleExpand, "aria-expanded": isExpanded, children: isExpanded ? '−' : '+' })] }), isExpanded && jsxRuntime.jsx(ActivityExpandedDetails, { activity: activity, tenantLinkResolver: tenantLinkResolver })] }));
|
|
@@ -10723,19 +10782,22 @@ function ActivityFeedFilters({ client, filters, timeRange, onFiltersChange, onTi
|
|
|
10723
10782
|
return 'Select time range';
|
|
10724
10783
|
};
|
|
10725
10784
|
// Determine which filters are currently active (have values) and not hidden
|
|
10726
|
-
const filtersWithValues =
|
|
10727
|
-
|
|
10728
|
-
|
|
10729
|
-
|
|
10730
|
-
|
|
10731
|
-
|
|
10732
|
-
|
|
10733
|
-
|
|
10734
|
-
|
|
10735
|
-
|
|
10736
|
-
|
|
10737
|
-
|
|
10738
|
-
|
|
10785
|
+
const filtersWithValues = React.useMemo(() => {
|
|
10786
|
+
const result = [];
|
|
10787
|
+
if (filters.resourceKinds && filters.resourceKinds.length > 0 && !hiddenFilters.includes('resourceKinds'))
|
|
10788
|
+
result.push('resourceKinds');
|
|
10789
|
+
if (filters.actorNames && filters.actorNames.length > 0 && !hiddenFilters.includes('actorNames'))
|
|
10790
|
+
result.push('actorNames');
|
|
10791
|
+
if (filters.apiGroups && filters.apiGroups.length > 0 && !hiddenFilters.includes('apiGroups'))
|
|
10792
|
+
result.push('apiGroups');
|
|
10793
|
+
if (filters.resourceNamespaces && filters.resourceNamespaces.length > 0 && !hiddenFilters.includes('resourceNamespaces'))
|
|
10794
|
+
result.push('resourceNamespaces');
|
|
10795
|
+
if (filters.resourceName && !hiddenFilters.includes('resourceName'))
|
|
10796
|
+
result.push('resourceName');
|
|
10797
|
+
if (filters.actions && filters.actions.length > 0)
|
|
10798
|
+
result.push('actions');
|
|
10799
|
+
return result;
|
|
10800
|
+
}, [filters, hiddenFilters]);
|
|
10739
10801
|
// Include pendingFilter (newly added filter awaiting value selection) in the displayed filters
|
|
10740
10802
|
const activeFilterIds = pendingFilter && !filtersWithValues.includes(pendingFilter)
|
|
10741
10803
|
? [...filtersWithValues, pendingFilter]
|
|
@@ -10754,7 +10816,7 @@ function ActivityFeedFilters({ client, filters, timeRange, onFiltersChange, onTi
|
|
|
10754
10816
|
{ id: 'apiGroups', label: 'API Group' },
|
|
10755
10817
|
{ id: 'resourceNamespaces', label: 'Namespace' },
|
|
10756
10818
|
{ id: 'resourceName', label: 'Resource Name' },
|
|
10757
|
-
|
|
10819
|
+
// 'actions' hidden until backend facet support is available
|
|
10758
10820
|
].filter((filter) => !hiddenFilters.includes(filter.id));
|
|
10759
10821
|
// Handle adding a filter
|
|
10760
10822
|
const handleAddFilter = React.useCallback((filterId) => {
|
|
@@ -10841,15 +10903,37 @@ function ActivityFeedFilters({ client, filters, timeRange, onFiltersChange, onTi
|
|
|
10841
10903
|
}
|
|
10842
10904
|
return value || [];
|
|
10843
10905
|
};
|
|
10844
|
-
//
|
|
10906
|
+
// Local search value for debouncing — keeps input responsive while query runs
|
|
10907
|
+
const [searchInputValue, setSearchInputValue] = React.useState(filters.search || '');
|
|
10908
|
+
const searchDebounceRef = React.useRef(null);
|
|
10909
|
+
// Use refs so the debounced callback never closes over stale values
|
|
10910
|
+
const filtersRef = React.useRef(filters);
|
|
10911
|
+
filtersRef.current = filters;
|
|
10912
|
+
const onFiltersChangeRef = React.useRef(onFiltersChange);
|
|
10913
|
+
onFiltersChangeRef.current = onFiltersChange;
|
|
10914
|
+
// Cancel any pending debounce on unmount
|
|
10915
|
+
React.useEffect(() => {
|
|
10916
|
+
return () => {
|
|
10917
|
+
if (searchDebounceRef.current)
|
|
10918
|
+
clearTimeout(searchDebounceRef.current);
|
|
10919
|
+
};
|
|
10920
|
+
}, []);
|
|
10845
10921
|
const handleSearchChange = React.useCallback((event) => {
|
|
10846
10922
|
const value = event.target.value;
|
|
10847
|
-
|
|
10848
|
-
|
|
10849
|
-
|
|
10850
|
-
|
|
10851
|
-
|
|
10852
|
-
|
|
10923
|
+
setSearchInputValue(value);
|
|
10924
|
+
if (searchDebounceRef.current)
|
|
10925
|
+
clearTimeout(searchDebounceRef.current);
|
|
10926
|
+
searchDebounceRef.current = setTimeout(() => {
|
|
10927
|
+
onFiltersChangeRef.current({ ...filtersRef.current, search: value || undefined });
|
|
10928
|
+
}, 400);
|
|
10929
|
+
}, []);
|
|
10930
|
+
const handleSearchClear = React.useCallback(() => {
|
|
10931
|
+
setSearchInputValue('');
|
|
10932
|
+
if (searchDebounceRef.current)
|
|
10933
|
+
clearTimeout(searchDebounceRef.current);
|
|
10934
|
+
onFiltersChangeRef.current({ ...filtersRef.current, search: undefined });
|
|
10935
|
+
}, []);
|
|
10936
|
+
return (jsxRuntime.jsx("div", { className: `mb-3 pb-3 border-b border-border p-4 ${className}`, children: jsxRuntime.jsxs("div", { className: "flex flex-wrap gap-2 items-center", children: [!hiddenFilters.includes('changeSource') && (jsxRuntime.jsx(ChangeSourceToggle, { value: filters.changeSource || 'all', onChange: handleChangeSourceChange, disabled: disabled })), jsxRuntime.jsxs("div", { className: "relative min-w-[200px] flex-1 max-w-xs", children: [jsxRuntime.jsx(Search, { className: "absolute left-2 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" }), jsxRuntime.jsx(Input, { type: "text", placeholder: "Search activities...", value: searchInputValue, onChange: handleSearchChange, className: "pl-8 h-7 text-xs pr-6" }), searchInputValue && (jsxRuntime.jsx("button", { onClick: handleSearchClear, className: "absolute right-1.5 top-1/2 -translate-y-1/2 text-muted-foreground hover:text-foreground transition-colors", "aria-label": "Clear search", children: jsxRuntime.jsx(X, { className: "h-3.5 w-3.5" }) }))] }), activeFilterIds.map((filterId) => {
|
|
10853
10937
|
const config = FILTER_CONFIGS$1[filterId];
|
|
10854
10938
|
return (jsxRuntime.jsx(FilterChip, { label: config.label, values: getFilterValues(filterId), options: config.inputMode === 'typeahead' ? getFilterOptions(filterId) : undefined, onValuesChange: (values) => handleFilterChange(filterId, values), onClear: () => handleFilterClear(filterId), onPopoverClose: () => handlePopoverClose(filterId), inputMode: config.inputMode, placeholder: config.placeholder, searchPlaceholder: config.searchPlaceholder, autoOpen: pendingFilter === filterId, disabled: disabled }, filterId));
|
|
10855
10939
|
}), jsxRuntime.jsx(AddFilterDropdown, { availableFilters: availableFilters, activeFilterIds: activeFilterIds, onAddFilter: handleAddFilter, hasActiveFilters: activeFilterIds.length > 0, disabled: disabled }), jsxRuntime.jsx("div", { className: "flex-1 min-w-[20px]" }), jsxRuntime.jsx(TimeRangeDropdown, { presets: TIME_PRESETS$1, selectedPreset: selectedPreset, onPresetSelect: handleTimePresetSelect, onCustomRangeApply: handleCustomRangeApply, customStart: customStart, customEnd: customEnd, disabled: disabled, displayLabel: getTimeRangeLabel() })] }) }));
|
|
@@ -10859,7 +10943,7 @@ function ActivityFeedFilters({ client, filters, timeRange, onFiltersChange, onTi
|
|
|
10859
10943
|
* ActivityFeed displays a chronological list of activities with filtering and pagination.
|
|
10860
10944
|
* Supports optional real-time streaming of new activities.
|
|
10861
10945
|
*/
|
|
10862
|
-
function ActivityFeed({ client, initialFilters = { changeSource: 'human' }, initialTimeRange = { start: 'now-7d' }, pageSize = 30, onResourceClick, resourceLinkResolver, tenantLinkResolver, tenantRenderer, onActivityClick, compact = false, resourceUid, showFilters = true, hiddenFilters = [], className = '', infiniteScroll = true, loadMoreThreshold = 200, onCreatePolicy, enableStreaming = false, onEffectiveTimeRangeChange, errorFormatter, maxHeight, onFiltersChange: onFiltersChangeProp, }) {
|
|
10946
|
+
function ActivityFeed({ client, initialFilters = { changeSource: 'human' }, initialTimeRange = { start: 'now-7d' }, pageSize = 30, onResourceClick, resourceLinkResolver, tenantLinkResolver, tenantRenderer, onActivityClick, compact = false, variant = 'feed', resourceUid, showFilters = true, hiddenFilters = [], className = '', infiniteScroll = true, loadMoreThreshold = 200, onCreatePolicy, enableStreaming = false, onEffectiveTimeRangeChange, errorFormatter, maxHeight, onFiltersChange: onFiltersChangeProp, }) {
|
|
10863
10947
|
// Merge resourceUid into initial filters if provided
|
|
10864
10948
|
const mergedInitialFilters = {
|
|
10865
10949
|
...initialFilters,
|
|
@@ -10959,13 +11043,13 @@ function ActivityFeed({ client, initialFilters = { changeSource: 'human' }, init
|
|
|
10959
11043
|
// Build container classes - use flex layout to properly fill available space
|
|
10960
11044
|
// flex-1 min-h-0 allows the Card to fill parent flex container and enable child scrolling
|
|
10961
11045
|
const containerClasses = compact
|
|
10962
|
-
? `flex-1 min-h-0 flex flex-col p-
|
|
11046
|
+
? `flex-1 min-h-0 flex flex-col p-0 shadow-none border-none ${className}`
|
|
10963
11047
|
: `flex-1 min-h-0 flex flex-col p-3 ${className}`;
|
|
10964
11048
|
// Build list classes - use flex-1 min-h-0 for flex-based scrolling
|
|
10965
11049
|
// Parent containers must have proper height constraints (h-screen/h-full + overflow-hidden)
|
|
10966
11050
|
const effectiveMaxHeight = maxHeight === 'none' ? undefined : maxHeight;
|
|
10967
|
-
const listClasses = 'flex-1 min-h-0 overflow-y-auto
|
|
10968
|
-
return (jsxRuntime.jsxs(Card, { className: containerClasses, children: [enableStreaming && (jsxRuntime.jsxs("div", { className: "flex items-center justify-between mb-1 pb-0.5 border-b border-border", children: [jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [isStreaming && !watchError && (jsxRuntime.jsx(TooltipProvider, { delayDuration: 300, children: jsxRuntime.jsxs(Tooltip, { children: [jsxRuntime.jsx(TooltipTrigger, { asChild: true, children: jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [jsxRuntime.jsxs("span", { className: "relative flex h-2 w-2", children: [jsxRuntime.jsx("span", { className: "animate-ping absolute inline-flex h-full w-full rounded-full bg-green-400 dark:bg-green-500 opacity-75" }), jsxRuntime.jsx("span", { className: "relative inline-flex rounded-full h-2 w-2 bg-green-500 dark:bg-green-400" })] }), jsxRuntime.jsx("span", { className: "text-xs text-muted-foreground", children: "Streaming activity..." })] }) }), jsxRuntime.jsx(TooltipContent, { className: "text-xs", children: jsxRuntime.jsx("p", { children: "New activities will appear automatically" }) })] }) })), watchError && (jsxRuntime.jsx(TooltipProvider, { delayDuration: 300, children: jsxRuntime.jsxs(Tooltip, { children: [jsxRuntime.jsx(TooltipTrigger, { asChild: true, children: jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [jsxRuntime.jsx("span", { className: "relative flex h-2 w-2", children: jsxRuntime.jsx("span", { className: "relative inline-flex rounded-full h-2 w-2 bg-red-500 dark:bg-red-400" }) }), jsxRuntime.jsx("span", { className: "text-xs text-destructive", children: "Connection error" })] }) }), jsxRuntime.jsx(TooltipContent, { className: "text-xs", children: jsxRuntime.jsx("p", { children: "Stream connection lost" }) })] }) })), newActivitiesCount > 0 && !watchError && (jsxRuntime.jsxs(Badge, { variant: "secondary", className: "text-xs", children: ["+", newActivitiesCount, " new"] }))] }), jsxRuntime.jsx(Button, { variant: "ghost", size: "sm", onClick: handleStreamingToggle, className: "text-xs", children: watchError ? (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsxs("svg", { className: "w-4 h-4 mr-1.5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", strokeWidth: "2", children: [jsxRuntime.jsx("path", { d: "M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4" }), jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "3" })] }), "Retry"] })) : isStreaming ? (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsxs("svg", { className: "w-4 h-4 mr-1.5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [jsxRuntime.jsx("rect", { x: "6", y: "4", width: "4", height: "16" }), jsxRuntime.jsx("rect", { x: "14", y: "4", width: "4", height: "16" })] }), "Pause"] })) : (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("svg", { className: "w-4 h-4 mr-1.5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: jsxRuntime.jsx("polygon", { points: "5,3 19,12 5,21", fill: "currentColor" }) }), "Resume"] })) })] })), showFilters && (jsxRuntime.jsx(ActivityFeedFilters, { client: client, filters: filters, timeRange: timeRange, onFiltersChange: handleFiltersChange, onTimeRangeChange: handleTimeRangeChange, disabled: isLoading, hiddenFilters: hiddenFilters })), jsxRuntime.jsx(ApiErrorAlert, { error: error, onRetry: refresh, className: "mb-4", errorFormatter: errorFormatter }), jsxRuntime.jsx(ApiErrorAlert, { error: watchError, onRetry: startStreaming, className: "mb-4", errorFormatter: errorFormatter }), !policiesLoading && hasPolicies === false && (jsxRuntime.jsxs("div", { className: "flex flex-col items-center py-12 px-8 text-center bg-muted border border-dashed border-border rounded-xl mb-4", children: [jsxRuntime.jsx("div", { className: "flex justify-center mb-4 text-muted-foreground", children: jsxRuntime.jsxs("svg", { width: "56", height: "56", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [jsxRuntime.jsx("path", { d: "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2" }), jsxRuntime.jsx("rect", { x: "9", y: "3", width: "6", height: "4", rx: "1" }), jsxRuntime.jsx("path", { d: "M9 12h6" }), jsxRuntime.jsx("path", { d: "M9 16h6" })] }) }), jsxRuntime.jsx("h3", { className: "m-0 mb-2 text-lg font-semibold text-foreground leading-snug", children: "Get started with activity logging" }), jsxRuntime.jsx("p", { className: "m-0 mb-6 text-sm leading-relaxed text-muted-foreground max-w-[400px]", children: "Activity policies define which resources to track and how to summarize changes. Create your first policy to start seeing activity logs here." }), onCreatePolicy && (jsxRuntime.jsx(Button, { onClick: onCreatePolicy, children: "Create Policy" }))] })), jsxRuntime.jsxs("div", { className: listClasses, ref: scrollContainerRef, style: { gap: compact ? '0.25rem' : '0.5rem', ...(effectiveMaxHeight ? { maxHeight: effectiveMaxHeight } : {}) }, children: [isLoading && activities.length === 0 && (jsxRuntime.jsx(jsxRuntime.Fragment, { children: Array.from({ length: 8 }).map((_, index) => (jsxRuntime.jsx(ActivityFeedItemSkeleton, { compact: compact }, index))) })), !isLoading && activities.length === 0 && hasPolicies !== false && (jsxRuntime.jsxs("div", { className: "py-12 text-center text-muted-foreground", children: [jsxRuntime.jsx("p", { className: "m-0", children: "No activities found" }), jsxRuntime.jsx("p", { className: "text-sm text-muted-foreground mt-2 m-0", children: "Try adjusting your filters or time range" })] })), activities.map((activity, index) => (jsxRuntime.jsx(ActivityFeedItem, { activity: activity, onResourceClick: onResourceClick, resourceLinkResolver: resourceLinkResolver, tenantLinkResolver: tenantLinkResolver, tenantRenderer: tenantRenderer, onActorClick: handleActorClick, onActivityClick: onActivityClick, compact: compact, isNew: enableStreaming && index < newActivitiesCount }, activity.metadata?.uid || activity.metadata?.name))), infiniteScroll && hasMore && (jsxRuntime.jsx("div", { ref: loadMoreTriggerRef, className: "h-px mt-4" })), !infiniteScroll && hasMore && !isLoading && (jsxRuntime.jsx("div", { className: "flex justify-center p-4 mt-4", children: jsxRuntime.jsx(Button, { onClick: handleLoadMoreClick, children: "Load more" }) })), !hasMore && activities.length > 0 && !isLoading && (jsxRuntime.jsx("div", { className: "text-center py-6 text-muted-foreground text-sm border-t border-border mt-4", children: "No more activities to load" }))] })] }));
|
|
11051
|
+
const listClasses = 'flex-1 min-h-0 overflow-y-auto flex flex-col';
|
|
11052
|
+
return (jsxRuntime.jsxs(Card, { className: containerClasses, children: [enableStreaming && (jsxRuntime.jsxs("div", { className: "flex items-center justify-between mb-1 pb-0.5 border-b border-border", children: [jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [isStreaming && !watchError && (jsxRuntime.jsx(TooltipProvider, { delayDuration: 300, children: jsxRuntime.jsxs(Tooltip, { children: [jsxRuntime.jsx(TooltipTrigger, { asChild: true, children: jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [jsxRuntime.jsxs("span", { className: "relative flex h-2 w-2", children: [jsxRuntime.jsx("span", { className: "animate-ping absolute inline-flex h-full w-full rounded-full bg-green-400 dark:bg-green-500 opacity-75" }), jsxRuntime.jsx("span", { className: "relative inline-flex rounded-full h-2 w-2 bg-green-500 dark:bg-green-400" })] }), jsxRuntime.jsx("span", { className: "text-xs text-muted-foreground", children: "Streaming activity..." })] }) }), jsxRuntime.jsx(TooltipContent, { className: "text-xs", children: jsxRuntime.jsx("p", { children: "New activities will appear automatically" }) })] }) })), watchError && (jsxRuntime.jsx(TooltipProvider, { delayDuration: 300, children: jsxRuntime.jsxs(Tooltip, { children: [jsxRuntime.jsx(TooltipTrigger, { asChild: true, children: jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [jsxRuntime.jsx("span", { className: "relative flex h-2 w-2", children: jsxRuntime.jsx("span", { className: "relative inline-flex rounded-full h-2 w-2 bg-red-500 dark:bg-red-400" }) }), jsxRuntime.jsx("span", { className: "text-xs text-destructive", children: "Connection error" })] }) }), jsxRuntime.jsx(TooltipContent, { className: "text-xs", children: jsxRuntime.jsx("p", { children: "Stream connection lost" }) })] }) })), newActivitiesCount > 0 && !watchError && (jsxRuntime.jsxs(Badge, { variant: "secondary", className: "text-xs", children: ["+", newActivitiesCount, " new"] }))] }), jsxRuntime.jsx(Button, { variant: "ghost", size: "sm", onClick: handleStreamingToggle, className: "text-xs", children: watchError ? (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsxs("svg", { className: "w-4 h-4 mr-1.5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", strokeWidth: "2", children: [jsxRuntime.jsx("path", { d: "M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4" }), jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "3" })] }), "Retry"] })) : isStreaming ? (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsxs("svg", { className: "w-4 h-4 mr-1.5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [jsxRuntime.jsx("rect", { x: "6", y: "4", width: "4", height: "16" }), jsxRuntime.jsx("rect", { x: "14", y: "4", width: "4", height: "16" })] }), "Pause"] })) : (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("svg", { className: "w-4 h-4 mr-1.5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: jsxRuntime.jsx("polygon", { points: "5,3 19,12 5,21", fill: "currentColor" }) }), "Resume"] })) })] })), showFilters && (jsxRuntime.jsx(ActivityFeedFilters, { client: client, filters: filters, timeRange: timeRange, onFiltersChange: handleFiltersChange, onTimeRangeChange: handleTimeRangeChange, disabled: isLoading, hiddenFilters: hiddenFilters })), jsxRuntime.jsx(ApiErrorAlert, { error: error, onRetry: refresh, className: "mb-4", errorFormatter: errorFormatter }), jsxRuntime.jsx(ApiErrorAlert, { error: watchError, onRetry: startStreaming, className: "mb-4", errorFormatter: errorFormatter }), !policiesLoading && hasPolicies === false && (jsxRuntime.jsxs("div", { className: "flex flex-col items-center py-12 px-8 text-center bg-muted border border-dashed border-border rounded-xl mb-4", children: [jsxRuntime.jsx("div", { className: "flex justify-center mb-4 text-muted-foreground", children: jsxRuntime.jsxs("svg", { width: "56", height: "56", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [jsxRuntime.jsx("path", { d: "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2" }), jsxRuntime.jsx("rect", { x: "9", y: "3", width: "6", height: "4", rx: "1" }), jsxRuntime.jsx("path", { d: "M9 12h6" }), jsxRuntime.jsx("path", { d: "M9 16h6" })] }) }), jsxRuntime.jsx("h3", { className: "m-0 mb-2 text-lg font-semibold text-foreground leading-snug", children: "Get started with activity logging" }), jsxRuntime.jsx("p", { className: "m-0 mb-6 text-sm leading-relaxed text-muted-foreground max-w-[400px]", children: "Activity policies define which resources to track and how to summarize changes. Create your first policy to start seeing activity logs here." }), onCreatePolicy && (jsxRuntime.jsx(Button, { onClick: onCreatePolicy, children: "Create Policy" }))] })), jsxRuntime.jsxs("div", { className: listClasses, ref: scrollContainerRef, style: { gap: compact ? '0.25rem' : '0.5rem', ...(effectiveMaxHeight ? { maxHeight: effectiveMaxHeight } : {}) }, children: [isLoading && activities.length === 0 && (jsxRuntime.jsx(jsxRuntime.Fragment, { children: Array.from({ length: 8 }).map((_, index) => (jsxRuntime.jsx(ActivityFeedItemSkeleton, { compact: compact }, index))) })), !isLoading && activities.length === 0 && hasPolicies !== false && (jsxRuntime.jsxs("div", { className: "py-12 text-center text-muted-foreground", children: [jsxRuntime.jsx("p", { className: "m-0", children: "No activities found" }), jsxRuntime.jsx("p", { className: "text-sm text-muted-foreground mt-2 m-0", children: "Try adjusting your filters or time range" })] })), activities.map((activity, index) => (jsxRuntime.jsx(ActivityFeedItem, { activity: activity, onResourceClick: onResourceClick, resourceLinkResolver: resourceLinkResolver, tenantLinkResolver: tenantLinkResolver, tenantRenderer: tenantRenderer, onActorClick: handleActorClick, onActivityClick: onActivityClick, compact: compact, isNew: enableStreaming && index < newActivitiesCount, variant: variant, isLast: index === activities.length - 1 }, activity.metadata?.uid || activity.metadata?.name))), infiniteScroll && hasMore && (jsxRuntime.jsx("div", { ref: loadMoreTriggerRef, className: "h-px mt-4" })), !infiniteScroll && hasMore && !isLoading && (jsxRuntime.jsx("div", { className: "flex justify-center p-4 mt-4", children: jsxRuntime.jsx(Button, { onClick: handleLoadMoreClick, children: "Load more" }) })), !hasMore && activities.length > 0 && !isLoading && (jsxRuntime.jsx("div", { className: "text-center py-6 text-muted-foreground text-sm border-t border-border mt-4", children: "No more activities to load" }))] })] }));
|
|
10969
11053
|
}
|
|
10970
11054
|
|
|
10971
11055
|
/**
|
|
@@ -11052,7 +11136,7 @@ function ResourceHistoryView({ client, resourceFilter, startTime = 'now-30d', li
|
|
|
11052
11136
|
resourceFilter.name;
|
|
11053
11137
|
return (jsxRuntime.jsxs(Card, { className: cn(compact ? 'p-0 shadow-none border-0' : '', className), children: [showHeader && (jsxRuntime.jsx(CardHeader, { className: cn(compact ? 'px-0 pt-0 pb-3' : 'pb-4'), children: jsxRuntime.jsxs(CardTitle, { className: "text-base font-semibold text-foreground flex items-center gap-2", children: [jsxRuntime.jsx("svg", { className: "w-4 h-4 text-muted-foreground", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: jsxRuntime.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" }) }), headerTitle] }) })), jsxRuntime.jsxs(CardContent, { className: cn(compact ? 'p-0' : ''), children: [!hasValidFilter && (jsxRuntime.jsxs("div", { className: "py-12 text-center text-muted-foreground", children: [jsxRuntime.jsx("svg", { className: "w-12 h-12 mx-auto mb-3 text-muted-foreground/50", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: jsxRuntime.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" }) }), jsxRuntime.jsx("p", { className: "m-0 text-sm", children: "No resource filter specified" }), jsxRuntime.jsx("p", { className: "text-xs text-muted-foreground mt-1 m-0", children: "Provide at least one filter criterion to view resource history" })] })), hasValidFilter && jsxRuntime.jsx(ApiErrorAlert, { error: error, onRetry: refresh, className: "mb-4", errorFormatter: errorFormatter }), hasValidFilter && isLoading && activities.length === 0 && (jsxRuntime.jsxs("div", { className: "flex items-center justify-center gap-3 py-12 text-muted-foreground text-sm", children: [jsxRuntime.jsx("div", { className: "w-5 h-5 border-[3px] border-muted border-t-primary rounded-full animate-spin" }), jsxRuntime.jsx("span", { children: "Loading history..." })] })), hasValidFilter && !isLoading && activities.length === 0 && !error && (jsxRuntime.jsxs("div", { className: "py-12 text-center text-muted-foreground", children: [jsxRuntime.jsx("svg", { className: "w-12 h-12 mx-auto mb-3 text-muted-foreground/50", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: jsxRuntime.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" }) }), jsxRuntime.jsx("p", { className: "m-0 text-sm", children: "No history found for this resource" }), jsxRuntime.jsx("p", { className: "text-xs text-muted-foreground mt-1 m-0", children: "Changes will appear here once activity policies are configured" })] })), hasValidFilter && activities.length > 0 && (jsxRuntime.jsxs("div", { className: "relative", children: [activities.map((activity, index) => {
|
|
11054
11138
|
const activityId = activity.metadata?.uid || activity.metadata?.name || String(index);
|
|
11055
|
-
return (jsxRuntime.jsx(ActivityFeedItem, { activity: activity, variant: "timeline", compact: compact,
|
|
11139
|
+
return (jsxRuntime.jsx(ActivityFeedItem, { activity: activity, variant: "timeline", compact: compact, isLast: index === activities.length - 1 && !hasMore, onActivityClick: onActivityClick, onResourceClick: onResourceClick, resourceLinkResolver: resourceLinkResolver, onActorClick: onActorClick }, activityId));
|
|
11056
11140
|
}), isLoading && activities.length > 0 && (jsxRuntime.jsx("div", { className: cn('relative', compact ? 'pl-8' : 'pl-10'), children: jsxRuntime.jsxs("div", { className: "flex items-center gap-3 py-4 text-muted-foreground text-sm", children: [jsxRuntime.jsx("div", { className: "w-4 h-4 border-2 border-muted border-t-primary rounded-full animate-spin" }), jsxRuntime.jsx("span", { children: "Loading more..." })] }) })), hasMore && !isLoading && (jsxRuntime.jsxs("div", { className: cn('relative', compact ? 'pl-8' : 'pl-10'), children: [jsxRuntime.jsx("div", { className: cn('absolute w-0.5 bg-border', compact ? 'left-[11px] top-0 h-4' : 'left-[15px] top-0 h-5') }), jsxRuntime.jsx(Button, { variant: "ghost", size: "sm", onClick: handleLoadMore, className: "text-muted-foreground hover:text-foreground mt-2", children: "Load more history" })] }))] })), hasValidFilter && activities.length > 0 && (jsxRuntime.jsxs("div", { className: cn('text-xs text-muted-foreground mt-4 pt-3 border-t border-border', compact ? '' : ''), children: ["Showing ", activities.length, " event", activities.length !== 1 ? 's' : '', hasMore && ' (more available)'] }))] })] }));
|
|
11057
11141
|
}
|
|
11058
11142
|
|