@dovetail-v2/refine 0.0.61-alpha.0 → 0.0.62
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/{MonacoYamlDiffEditor-e5cfbfbd.js → MonacoYamlDiffEditor-a7e5cc24.js} +1 -1
- package/dist/{index-f46a38ea.js → index-3bdfc94a.js} +502 -645
- package/dist/refine.js +158 -175
- package/dist/refine.umd.cjs +345 -488
- package/dist/style.css +4 -4
- package/lib/src/App.js +91 -0
- package/lib/src/Dovetail.js +45 -0
- package/lib/src/components/Breadcrumb/index.js +20 -0
- package/lib/src/components/ConditionsTable/ConditionsTable.js +56 -0
- package/lib/src/components/ConditionsTable/index.js +1 -0
- package/lib/src/components/CreateButton/index.js +10 -0
- package/lib/src/components/CronJobDropdown/index.js +26 -0
- package/lib/src/components/CronjobJobsTable/index.js +49 -0
- package/lib/src/components/DeleteButton/index.js +13 -0
- package/lib/src/components/DeleteManyButton/index.js +16 -0
- package/lib/src/components/DrawerShow/DrawerShow.js +13 -0
- package/lib/src/components/DrawerShow/index.js +1 -0
- package/lib/src/components/EditButton/index.js +13 -0
- package/lib/src/components/EditField/index.js +47 -0
- package/lib/src/components/ErrorContent/index.js +36 -0
- package/lib/src/components/EventsTable/EventsTable.js +59 -0
- package/lib/src/components/EventsTable/index.js +1 -0
- package/lib/src/components/Form/KeyValueListWidget.js +56 -0
- package/lib/src/components/Form/MetadataForm.js +9 -0
- package/lib/src/components/Form/NameInputWidget.js +50 -0
- package/lib/src/components/Form/NamespaceSelectWidget.js +21 -0
- package/lib/src/components/Form/index.js +4 -0
- package/lib/src/components/Form/type.d.ts +3 -4
- package/lib/src/components/Form/useRefineForm.d.ts +4 -1
- package/lib/src/components/Form/widget.js +1 -0
- package/lib/src/components/FormErrorAlert/index.js +8 -0
- package/lib/src/components/FormLayout/index.js +21 -0
- package/lib/src/components/FormModal/index.js +51 -0
- package/lib/src/components/ImageNames/index.js +14 -0
- package/lib/src/components/IngressRulesComponent/index.js +11 -0
- package/lib/src/components/IngressRulesTable/IngressRulesTable.js +51 -0
- package/lib/src/components/IngressRulesTable/index.js +1 -0
- package/lib/src/components/K8sDropdown/index.d.ts +1 -1
- package/lib/src/components/K8sDropdown/index.js +31 -0
- package/lib/src/components/KeyValue/KeyValue.js +27 -0
- package/lib/src/components/KeyValue/index.js +1 -0
- package/lib/src/components/KeyValueData/index.js +50 -0
- package/lib/src/components/Layout/index.js +39 -0
- package/lib/src/components/ListPage/index.js +25 -0
- package/lib/src/components/Menu/index.js +36 -0
- package/lib/src/components/NamespacesFilter/index.js +34 -0
- package/lib/src/components/NetworkPolicyRulesTable/NetworkPolicyRulesTable.d.ts +1 -2
- package/lib/src/components/NetworkPolicyRulesTable/NetworkPolicyRulesTable.js +77 -0
- package/lib/src/components/NetworkPolicyRulesTable/index.js +1 -0
- package/lib/src/components/PageShow/PageShow.js +11 -0
- package/lib/src/components/PageShow/index.js +1 -0
- package/lib/src/components/PodContainersTable/PodContainersTable.js +78 -0
- package/lib/src/components/PodContainersTable/index.js +1 -0
- package/lib/src/components/PodLog/index.js +136 -0
- package/lib/src/components/ReferenceLink/index.js +17 -0
- package/lib/src/components/RefineForm/RefineFormContent.d.ts +10 -0
- package/lib/src/components/RefineForm/RefineFormModal.d.ts +8 -0
- package/lib/src/components/RefineForm/RefineFormPage.d.ts +7 -0
- package/lib/src/components/RefineForm/index.d.ts +3 -0
- package/lib/src/components/RefineForm/type.d.ts +20 -0
- package/lib/src/components/RefineForm/useRefineForm.d.ts +10 -0
- package/lib/src/components/ResourceCRUD/ResourceCRUD.js +15 -0
- package/lib/src/components/ResourceCRUD/create/index.js +13 -0
- package/lib/src/components/ResourceCRUD/index.js +4 -0
- package/lib/src/components/ResourceCRUD/list/index.js +19 -0
- package/lib/src/components/ResourceCRUD/show/index.js +6 -0
- package/lib/src/components/ResourceLink/index.js +21 -0
- package/lib/src/components/ResourceUsageBar/index.js +81 -0
- package/lib/src/components/Separator/index.js +11 -0
- package/lib/src/components/ShowContent/ShowContent.js +157 -0
- package/lib/src/components/ShowContent/fields.js +157 -0
- package/lib/src/components/ShowContent/index.js +2 -0
- package/lib/src/components/StateTag/StateTag.js +22 -0
- package/lib/src/components/StateTag/index.js +1 -0
- package/lib/src/components/Table/ErrorContent.js +36 -0
- package/lib/src/components/Table/TableToolBar.js +14 -0
- package/lib/src/components/Table/TableWidgets.js +28 -0
- package/lib/src/components/Table/index.js +69 -0
- package/lib/src/components/Tags/index.js +22 -0
- package/lib/src/components/Time/index.js +14 -0
- package/lib/src/components/ValueDisplay/index.d.ts +1 -1
- package/lib/src/components/WorkloadDropdown/index.js +24 -0
- package/lib/src/components/WorkloadPodsTable/WorkloadPodsTable.js +39 -0
- package/lib/src/components/WorkloadPodsTable/index.js +1 -0
- package/lib/src/components/WorkloadReplicas/index.js +50 -0
- package/lib/src/components/YamlEditor/MonacoYamlDiffEditor.js +34 -0
- package/lib/src/components/YamlEditor/MonacoYamlEditor.js +149 -0
- package/lib/src/components/YamlEditor/YamlEditorComponent.js +90 -0
- package/lib/src/components/YamlEditor/index.js +1 -0
- package/lib/src/components/YamlEditor/style.js +102 -0
- package/lib/src/components/YamlEditor/yaml.worker.js +1 -0
- package/lib/src/components/YamlForm/index.d.ts +0 -4
- package/lib/src/components/YamlForm/index.js +61 -0
- package/lib/src/components/index.d.ts +0 -2
- package/lib/src/components/index.js +38 -0
- package/lib/src/constants/index.js +2 -0
- package/lib/src/constants/k8s.d.ts +0 -18
- package/lib/src/constants/k8s.js +203 -0
- package/lib/src/constants/state.js +15 -0
- package/lib/src/contexts/component.js +3 -0
- package/lib/src/contexts/configs.js +3 -0
- package/lib/src/contexts/global-store.js +3 -0
- package/lib/src/contexts/index.js +3 -0
- package/lib/src/hooks/index.js +7 -0
- package/lib/src/hooks/useDeleteModal/index.js +1 -0
- package/lib/src/hooks/useDeleteModal/useDeleteManyModal.js +31 -0
- package/lib/src/hooks/useDeleteModal/useDeleteModal.js +38 -0
- package/lib/src/hooks/useDownloadYAML.js +10 -0
- package/lib/src/hooks/useEagleForm.d.ts +1 -2
- package/lib/src/hooks/useEagleForm.js +177 -0
- package/lib/src/hooks/useEagleTable/columns.d.ts +1 -8
- package/lib/src/hooks/useEagleTable/columns.js +246 -0
- package/lib/src/hooks/useEagleTable/index.js +2 -0
- package/lib/src/hooks/useEagleTable/useEagleTable.js +63 -0
- package/lib/src/hooks/useEdit.js +19 -0
- package/lib/src/hooks/useGlobalStore.js +5 -0
- package/lib/src/hooks/useK8sYamlEditor.js +37 -0
- package/lib/src/hooks/useOpenForm.js +43 -0
- package/lib/src/hooks/useSchema.js +37 -0
- package/lib/src/hooks/useSubmitForm.js +42 -0
- package/lib/src/i18n.js +19 -0
- package/lib/src/index.js +13 -0
- package/lib/src/locales/en-US/dovetail.json +18 -0
- package/lib/src/locales/en-US/index.js +4 -0
- package/lib/src/locales/index.js +6 -0
- package/lib/src/locales/zh-CN/dovetail.json +91 -0
- package/lib/src/locales/zh-CN/index.js +4 -0
- package/lib/src/main.js +12 -0
- package/lib/src/models/cronjob-model.js +32 -0
- package/lib/src/models/daemonset-model.js +17 -0
- package/lib/src/models/deployment-model.js +17 -0
- package/lib/src/models/event-model.js +11 -0
- package/lib/src/models/index.d.ts +0 -4
- package/lib/src/models/index.js +14 -0
- package/lib/src/models/ingress-model.d.ts +1 -0
- package/lib/src/models/ingress-model.js +24 -0
- package/lib/src/models/job-model.js +56 -0
- package/lib/src/models/network-policy-model.js +10 -0
- package/lib/src/models/pod-metrics-model.js +34 -0
- package/lib/src/models/pod-model.js +78 -0
- package/lib/src/models/resource-model.js +34 -0
- package/lib/src/models/server-instance-model.d.ts +10 -0
- package/lib/src/models/service-model.js +17 -0
- package/lib/src/models/statefulset-model.js +17 -0
- package/lib/src/models/types/index.js +1 -0
- package/lib/src/models/types/metric.js +1 -0
- package/lib/src/models/workload-base-model.d.ts +2 -2
- package/lib/src/models/workload-base-model.js +22 -0
- package/lib/src/models/workload-model.js +51 -0
- package/lib/src/pages/configmaps/index.js +15 -0
- package/lib/src/pages/cronjobs/create/index.js +6 -0
- package/lib/src/pages/{nodes/index.d.ts → cronjobs/index.js} +1 -0
- package/lib/src/pages/cronjobs/list/index.js +42 -0
- package/lib/src/pages/cronjobs/show/index.js +16 -0
- package/lib/src/pages/daemonsets/create/index.js +6 -0
- package/lib/src/pages/daemonsets/index.js +3 -0
- package/lib/src/pages/daemonsets/list/index.js +32 -0
- package/lib/src/pages/daemonsets/show/index.js +16 -0
- package/lib/src/pages/deployments/create/index.js +7 -0
- package/lib/src/pages/deployments/index.js +3 -0
- package/lib/src/pages/deployments/list/index.js +26 -0
- package/lib/src/pages/deployments/show/index.js +16 -0
- package/lib/src/pages/ingresses/index.js +26 -0
- package/lib/src/pages/jobs/index.js +34 -0
- package/lib/src/pages/networkPolicies/index.js +67 -0
- package/lib/src/pages/pods/create/index.js +6 -0
- package/lib/src/pages/pods/index.js +3 -0
- package/lib/src/pages/pods/list/index.js +81 -0
- package/lib/src/pages/pods/show/index.js +54 -0
- package/lib/src/pages/secrets/index.js +15 -0
- package/lib/src/pages/services/index.js +26 -0
- package/lib/src/pages/statefulsets/create/index.js +6 -0
- package/lib/src/pages/statefulsets/index.js +3 -0
- package/lib/src/pages/statefulsets/list/index.js +26 -0
- package/lib/src/pages/statefulsets/show/index.js +16 -0
- package/lib/src/plugins/index.js +3 -0
- package/lib/src/plugins/model-plugin.js +46 -0
- package/lib/src/plugins/relation-plugin.js +81 -0
- package/lib/src/plugins/type.js +1 -0
- package/lib/src/providers/index.js +1 -0
- package/lib/src/providers/router-provider/index.js +100 -0
- package/lib/src/types/index.js +1 -0
- package/lib/src/types/resource.d.ts +3 -4
- package/lib/src/types/resource.js +12 -0
- package/lib/src/utils/addId.js +8 -0
- package/lib/src/utils/download.js +9 -0
- package/lib/src/utils/error.js +53 -0
- package/lib/src/utils/form.js +9 -0
- package/lib/src/utils/k8s.js +6 -0
- package/lib/src/utils/labels.js +15 -0
- package/lib/src/utils/match-selector.js +12 -0
- package/lib/src/utils/openapi.js +33 -0
- package/lib/src/utils/schema.js +117 -0
- package/lib/src/utils/selector.js +12 -0
- package/lib/src/utils/string.js +6 -0
- package/lib/src/utils/time.js +46 -0
- package/lib/src/utils/unit.js +69 -0
- package/lib/src/utils/yaml.js +44 -0
- package/lib/vite.config.js +60 -0
- package/package.json +1 -1
- package/lib/src/components/ModalContextProvider/index.d.ts +0 -12
- package/lib/src/components/PodDropdown/index.d.ts +0 -9
- package/lib/src/components/PodShellModal/index.d.ts +0 -7
- package/lib/src/components/ResourceSelect/index.d.ts +0 -12
- package/lib/src/hooks/useModal.d.ts +0 -0
- package/lib/src/hooks/useNamespaceFilter.d.ts +0 -5
- package/lib/src/model/cronjob-model.d.ts +0 -9
- package/lib/src/model/index.d.ts +0 -6
- package/lib/src/model/job-model.d.ts +0 -10
- package/lib/src/model/pod-metrics-model.d.ts +0 -7
- package/lib/src/model/pod-model.d.ts +0 -15
- package/lib/src/model/resource-model.d.ts +0 -17
- package/lib/src/model/workload-model.d.ts +0 -17
- package/lib/src/models/node-model.d.ts +0 -15
- package/lib/src/models/persistent-volume-claim.d.ts +0 -10
- package/lib/src/models/persistent-volume.d.ts +0 -10
- package/lib/src/models/storage-class.d.ts +0 -10
- package/lib/src/pages/nodes/hooks/useNodeMetrics.d.ts +0 -17
- package/lib/src/pages/nodes/list/index.d.ts +0 -3
- package/lib/src/pages/nodes/show/index.d.ts +0 -3
- package/lib/src/pages/storageclasses/form/index.d.ts +0 -9
- package/lib/src/pages/storageclasses/index.d.ts +0 -44
- package/lib/src/pages/storageclasses/list/index.d.ts +0 -3
- package/lib/src/pages/storageclasses/show/index.d.ts +0 -3
- package/lib/src/types/metric.d.ts +0 -25
- package/lib/src/utils/shell.d.ts +0 -5
|
@@ -10,7 +10,7 @@ import React__default, { createElement, isValidElement, cloneElement, Children,
|
|
|
10
10
|
import { ResourceContext, matchResourceFromRoute, useResource, useDelete, useNavigation, useBreadcrumb, useList, useParsed, useGo, useCan, useTable, useDeleteMany, CanAccess, useShow, useUpdate, useDataProvider, useRefineContext, useTranslate, useWarnAboutChange, useForm as useForm$2, flattenObjectKeys, pickNotDeprecated, useMenu, Refine } from "@refinedev/core";
|
|
11
11
|
import { parse, stringify } from "qs";
|
|
12
12
|
import { useLocation, useHistory, useParams, matchPath, Link, Route, NavLink, Router } from "react-router-dom";
|
|
13
|
-
import { Typo, Tag, useUIKit, kitContext, OverflowTooltip, Tooltip, StatusCapsule, usePushModal, Icon as Icon$1, Link as Link$1, Button, usePopModal, Loading, Divider, Fields, Space, Form, Modal,
|
|
13
|
+
import { Typo, Tag, useUIKit, kitContext, OverflowTooltip, Tooltip, StatusCapsule, usePushModal, Icon as Icon$1, Link as Link$1, Button, usePopModal, Loading, Divider, Fields, Space, Form, Modal, useMessage, ModalStack, KitStoreProvider } from "@cloudtower/eagle";
|
|
14
14
|
import { EditPen16PrimaryIcon, Download16GradientBlueIcon, TrashBinDelete16Icon, MoreEllipsis324BoldSecondaryIcon, MoreEllipsis324BoldBlueIcon, MoreEllipsis316BoldBlueIcon, PlusAddCreateNew16BoldOntintIcon, ArrowChevronLeft16BoldTertiaryIcon, ArrowChevronLeftSmall16BoldBlueIcon, EditPen16GradientBlueIcon, ViewEye16GradientGrayIcon, EntityFilterIgnoreGradient16GrayIcon, RecoverContinue16GradientBlueIcon, SuspendedPause16GradientBlueIcon, Retry16GradientBlueIcon, HierarchyTriangleRight16GrayIcon, HierarchyTriangleRight16BlueIcon, ClipboardCopy16GradientGrayIcon, ClipboardCopy16GradientBlueIcon, Retry16GradientGrayIcon, EditPen16GradientGrayIcon, Showdiff16GradientGrayIcon, Showdiff16GradientBlueIcon, XmarkFailedSeriousWarningFill16RedIcon, ExclamationErrorCircleFill16RedIcon, Pause16GradientBlueIcon } from "@cloudtower/icons-react";
|
|
15
15
|
import { omit as omit$1, merge, get as get$3, first, debounce, last, isObject as isObject$4, keyBy } from "lodash-es";
|
|
16
16
|
import yaml from "js-yaml";
|
|
@@ -25,301 +25,308 @@ function getDefaultExportFromCjs(x) {
|
|
|
25
25
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
26
26
|
}
|
|
27
27
|
var dayjs_min = { exports: {} };
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
return
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
this.$y = t3.getFullYear(), this.$M = t3.getMonth(), this.$D = t3.getDate(), this.$W = t3.getDay(), this.$H = t3.getHours(), this.$m = t3.getMinutes(), this.$s = t3.getSeconds(), this.$ms = t3.getMilliseconds();
|
|
106
|
-
}, m2.$utils = function() {
|
|
107
|
-
return b;
|
|
108
|
-
}, m2.isValid = function() {
|
|
109
|
-
return !(this.$d.toString() === l);
|
|
110
|
-
}, m2.isSame = function(t3, e3) {
|
|
111
|
-
var n3 = O(t3);
|
|
112
|
-
return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
|
|
113
|
-
}, m2.isAfter = function(t3, e3) {
|
|
114
|
-
return O(t3) < this.startOf(e3);
|
|
115
|
-
}, m2.isBefore = function(t3, e3) {
|
|
116
|
-
return this.endOf(e3) < O(t3);
|
|
117
|
-
}, m2.$g = function(t3, e3, n3) {
|
|
118
|
-
return b.u(t3) ? this[e3] : this.set(n3, t3);
|
|
119
|
-
}, m2.unix = function() {
|
|
120
|
-
return Math.floor(this.valueOf() / 1e3);
|
|
121
|
-
}, m2.valueOf = function() {
|
|
122
|
-
return this.$d.getTime();
|
|
123
|
-
}, m2.startOf = function(t3, e3) {
|
|
124
|
-
var n3 = this, r3 = !!b.u(e3) || e3, f2 = b.p(t3), l2 = function(t4, e4) {
|
|
125
|
-
var i3 = b.w(n3.$u ? Date.UTC(n3.$y, e4, t4) : new Date(n3.$y, e4, t4), n3);
|
|
126
|
-
return r3 ? i3 : i3.endOf(a2);
|
|
127
|
-
}, $2 = function(t4, e4) {
|
|
128
|
-
return b.w(n3.toDate()[t4].apply(n3.toDate("s"), (r3 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e4)), n3);
|
|
129
|
-
}, y2 = this.$W, M3 = this.$M, m3 = this.$D, v2 = "set" + (this.$u ? "UTC" : "");
|
|
130
|
-
switch (f2) {
|
|
131
|
-
case h:
|
|
132
|
-
return r3 ? l2(1, 0) : l2(31, 11);
|
|
133
|
-
case c2:
|
|
134
|
-
return r3 ? l2(1, M3) : l2(0, M3 + 1);
|
|
135
|
-
case o:
|
|
136
|
-
var g2 = this.$locale().weekStart || 0, D2 = (y2 < g2 ? y2 + 7 : y2) - g2;
|
|
137
|
-
return l2(r3 ? m3 - D2 : m3 + (6 - D2), M3);
|
|
138
|
-
case a2:
|
|
139
|
-
case d:
|
|
140
|
-
return $2(v2 + "Hours", 0);
|
|
141
|
-
case u:
|
|
142
|
-
return $2(v2 + "Minutes", 1);
|
|
143
|
-
case s2:
|
|
144
|
-
return $2(v2 + "Seconds", 2);
|
|
145
|
-
case i2:
|
|
146
|
-
return $2(v2 + "Milliseconds", 3);
|
|
147
|
-
default:
|
|
148
|
-
return this.clone();
|
|
149
|
-
}
|
|
150
|
-
}, m2.endOf = function(t3) {
|
|
151
|
-
return this.startOf(t3, false);
|
|
152
|
-
}, m2.$set = function(t3, e3) {
|
|
153
|
-
var n3, o2 = b.p(t3), f2 = "set" + (this.$u ? "UTC" : ""), l2 = (n3 = {}, n3[a2] = f2 + "Date", n3[d] = f2 + "Date", n3[c2] = f2 + "Month", n3[h] = f2 + "FullYear", n3[u] = f2 + "Hours", n3[s2] = f2 + "Minutes", n3[i2] = f2 + "Seconds", n3[r2] = f2 + "Milliseconds", n3)[o2], $2 = o2 === a2 ? this.$D + (e3 - this.$W) : e3;
|
|
154
|
-
if (o2 === c2 || o2 === h) {
|
|
155
|
-
var y2 = this.clone().set(d, 1);
|
|
156
|
-
y2.$d[l2]($2), y2.init(), this.$d = y2.set(d, Math.min(this.$D, y2.daysInMonth())).$d;
|
|
157
|
-
} else
|
|
158
|
-
l2 && this.$d[l2]($2);
|
|
159
|
-
return this.init(), this;
|
|
160
|
-
}, m2.set = function(t3, e3) {
|
|
161
|
-
return this.clone().$set(t3, e3);
|
|
162
|
-
}, m2.get = function(t3) {
|
|
163
|
-
return this[b.p(t3)]();
|
|
164
|
-
}, m2.add = function(r3, f2) {
|
|
165
|
-
var d2, l2 = this;
|
|
166
|
-
r3 = Number(r3);
|
|
167
|
-
var $2 = b.p(f2), y2 = function(t3) {
|
|
168
|
-
var e3 = O(l2);
|
|
169
|
-
return b.w(e3.date(e3.date() + Math.round(t3 * r3)), l2);
|
|
170
|
-
};
|
|
171
|
-
if ($2 === c2)
|
|
172
|
-
return this.set(c2, this.$M + r3);
|
|
173
|
-
if ($2 === h)
|
|
174
|
-
return this.set(h, this.$y + r3);
|
|
175
|
-
if ($2 === a2)
|
|
176
|
-
return y2(1);
|
|
177
|
-
if ($2 === o)
|
|
178
|
-
return y2(7);
|
|
179
|
-
var M3 = (d2 = {}, d2[s2] = e2, d2[u] = n2, d2[i2] = t2, d2)[$2] || 1, m3 = this.$d.getTime() + r3 * M3;
|
|
180
|
-
return b.w(m3, this);
|
|
181
|
-
}, m2.subtract = function(t3, e3) {
|
|
182
|
-
return this.add(-1 * t3, e3);
|
|
183
|
-
}, m2.format = function(t3) {
|
|
184
|
-
var e3 = this, n3 = this.$locale();
|
|
185
|
-
if (!this.isValid())
|
|
186
|
-
return n3.invalidDate || l;
|
|
187
|
-
var r3 = t3 || "YYYY-MM-DDTHH:mm:ssZ", i3 = b.z(this), s3 = this.$H, u2 = this.$m, a3 = this.$M, o2 = n3.weekdays, c3 = n3.months, f2 = n3.meridiem, h2 = function(t4, n4, i4, s4) {
|
|
188
|
-
return t4 && (t4[n4] || t4(e3, r3)) || i4[n4].slice(0, s4);
|
|
189
|
-
}, d2 = function(t4) {
|
|
190
|
-
return b.s(s3 % 12 || 12, t4, "0");
|
|
191
|
-
}, $2 = f2 || function(t4, e4, n4) {
|
|
192
|
-
var r4 = t4 < 12 ? "AM" : "PM";
|
|
193
|
-
return n4 ? r4.toLowerCase() : r4;
|
|
194
|
-
};
|
|
195
|
-
return r3.replace(y, function(t4, r4) {
|
|
196
|
-
return r4 || function(t5) {
|
|
197
|
-
switch (t5) {
|
|
198
|
-
case "YY":
|
|
199
|
-
return String(e3.$y).slice(-2);
|
|
200
|
-
case "YYYY":
|
|
201
|
-
return b.s(e3.$y, 4, "0");
|
|
202
|
-
case "M":
|
|
203
|
-
return a3 + 1;
|
|
204
|
-
case "MM":
|
|
205
|
-
return b.s(a3 + 1, 2, "0");
|
|
206
|
-
case "MMM":
|
|
207
|
-
return h2(n3.monthsShort, a3, c3, 3);
|
|
208
|
-
case "MMMM":
|
|
209
|
-
return h2(c3, a3);
|
|
210
|
-
case "D":
|
|
211
|
-
return e3.$D;
|
|
212
|
-
case "DD":
|
|
213
|
-
return b.s(e3.$D, 2, "0");
|
|
214
|
-
case "d":
|
|
215
|
-
return String(e3.$W);
|
|
216
|
-
case "dd":
|
|
217
|
-
return h2(n3.weekdaysMin, e3.$W, o2, 2);
|
|
218
|
-
case "ddd":
|
|
219
|
-
return h2(n3.weekdaysShort, e3.$W, o2, 3);
|
|
220
|
-
case "dddd":
|
|
221
|
-
return o2[e3.$W];
|
|
222
|
-
case "H":
|
|
223
|
-
return String(s3);
|
|
224
|
-
case "HH":
|
|
225
|
-
return b.s(s3, 2, "0");
|
|
226
|
-
case "h":
|
|
227
|
-
return d2(1);
|
|
228
|
-
case "hh":
|
|
229
|
-
return d2(2);
|
|
230
|
-
case "a":
|
|
231
|
-
return $2(s3, u2, true);
|
|
232
|
-
case "A":
|
|
233
|
-
return $2(s3, u2, false);
|
|
234
|
-
case "m":
|
|
235
|
-
return String(u2);
|
|
236
|
-
case "mm":
|
|
237
|
-
return b.s(u2, 2, "0");
|
|
238
|
-
case "s":
|
|
239
|
-
return String(e3.$s);
|
|
240
|
-
case "ss":
|
|
241
|
-
return b.s(e3.$s, 2, "0");
|
|
242
|
-
case "SSS":
|
|
243
|
-
return b.s(e3.$ms, 3, "0");
|
|
244
|
-
case "Z":
|
|
245
|
-
return i3;
|
|
28
|
+
var hasRequiredDayjs_min;
|
|
29
|
+
function requireDayjs_min() {
|
|
30
|
+
if (hasRequiredDayjs_min)
|
|
31
|
+
return dayjs_min.exports;
|
|
32
|
+
hasRequiredDayjs_min = 1;
|
|
33
|
+
(function(module, exports) {
|
|
34
|
+
!function(t2, e2) {
|
|
35
|
+
module.exports = e2();
|
|
36
|
+
}(commonjsGlobal, function() {
|
|
37
|
+
var t2 = 1e3, e2 = 6e4, n2 = 36e5, r2 = "millisecond", i2 = "second", s2 = "minute", u = "hour", a2 = "day", o = "week", c2 = "month", f = "quarter", h = "year", d = "date", l = "Invalid Date", $ = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(t3) {
|
|
38
|
+
var e3 = ["th", "st", "nd", "rd"], n3 = t3 % 100;
|
|
39
|
+
return "[" + t3 + (e3[(n3 - 20) % 10] || e3[n3] || e3[0]) + "]";
|
|
40
|
+
} }, m = function(t3, e3, n3) {
|
|
41
|
+
var r3 = String(t3);
|
|
42
|
+
return !r3 || r3.length >= e3 ? t3 : "" + Array(e3 + 1 - r3.length).join(n3) + t3;
|
|
43
|
+
}, v = { s: m, z: function(t3) {
|
|
44
|
+
var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60;
|
|
45
|
+
return (e3 <= 0 ? "+" : "-") + m(r3, 2, "0") + ":" + m(i3, 2, "0");
|
|
46
|
+
}, m: function t3(e3, n3) {
|
|
47
|
+
if (e3.date() < n3.date())
|
|
48
|
+
return -t3(n3, e3);
|
|
49
|
+
var r3 = 12 * (n3.year() - e3.year()) + (n3.month() - e3.month()), i3 = e3.clone().add(r3, c2), s3 = n3 - i3 < 0, u2 = e3.clone().add(r3 + (s3 ? -1 : 1), c2);
|
|
50
|
+
return +(-(r3 + (n3 - i3) / (s3 ? i3 - u2 : u2 - i3)) || 0);
|
|
51
|
+
}, a: function(t3) {
|
|
52
|
+
return t3 < 0 ? Math.ceil(t3) || 0 : Math.floor(t3);
|
|
53
|
+
}, p: function(t3) {
|
|
54
|
+
return { M: c2, y: h, w: o, d: a2, D: d, h: u, m: s2, s: i2, ms: r2, Q: f }[t3] || String(t3 || "").toLowerCase().replace(/s$/, "");
|
|
55
|
+
}, u: function(t3) {
|
|
56
|
+
return void 0 === t3;
|
|
57
|
+
} }, g = "en", D = {};
|
|
58
|
+
D[g] = M;
|
|
59
|
+
var p = "$isDayjsObject", S = function(t3) {
|
|
60
|
+
return t3 instanceof _ || !(!t3 || !t3[p]);
|
|
61
|
+
}, w = function t3(e3, n3, r3) {
|
|
62
|
+
var i3;
|
|
63
|
+
if (!e3)
|
|
64
|
+
return g;
|
|
65
|
+
if ("string" == typeof e3) {
|
|
66
|
+
var s3 = e3.toLowerCase();
|
|
67
|
+
D[s3] && (i3 = s3), n3 && (D[s3] = n3, i3 = s3);
|
|
68
|
+
var u2 = e3.split("-");
|
|
69
|
+
if (!i3 && u2.length > 1)
|
|
70
|
+
return t3(u2[0]);
|
|
71
|
+
} else {
|
|
72
|
+
var a3 = e3.name;
|
|
73
|
+
D[a3] = e3, i3 = a3;
|
|
74
|
+
}
|
|
75
|
+
return !r3 && i3 && (g = i3), i3 || !r3 && g;
|
|
76
|
+
}, O = function(t3, e3) {
|
|
77
|
+
if (S(t3))
|
|
78
|
+
return t3.clone();
|
|
79
|
+
var n3 = "object" == typeof e3 ? e3 : {};
|
|
80
|
+
return n3.date = t3, n3.args = arguments, new _(n3);
|
|
81
|
+
}, b = v;
|
|
82
|
+
b.l = w, b.i = S, b.w = function(t3, e3) {
|
|
83
|
+
return O(t3, { locale: e3.$L, utc: e3.$u, x: e3.$x, $offset: e3.$offset });
|
|
84
|
+
};
|
|
85
|
+
var _ = function() {
|
|
86
|
+
function M2(t3) {
|
|
87
|
+
this.$L = w(t3.locale, null, true), this.parse(t3), this.$x = this.$x || t3.x || {}, this[p] = true;
|
|
88
|
+
}
|
|
89
|
+
var m2 = M2.prototype;
|
|
90
|
+
return m2.parse = function(t3) {
|
|
91
|
+
this.$d = function(t4) {
|
|
92
|
+
var e3 = t4.date, n3 = t4.utc;
|
|
93
|
+
if (null === e3)
|
|
94
|
+
return /* @__PURE__ */ new Date(NaN);
|
|
95
|
+
if (b.u(e3))
|
|
96
|
+
return /* @__PURE__ */ new Date();
|
|
97
|
+
if (e3 instanceof Date)
|
|
98
|
+
return new Date(e3);
|
|
99
|
+
if ("string" == typeof e3 && !/Z$/i.test(e3)) {
|
|
100
|
+
var r3 = e3.match($);
|
|
101
|
+
if (r3) {
|
|
102
|
+
var i3 = r3[2] - 1 || 0, s3 = (r3[7] || "0").substring(0, 3);
|
|
103
|
+
return n3 ? new Date(Date.UTC(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3)) : new Date(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3);
|
|
104
|
+
}
|
|
246
105
|
}
|
|
247
|
-
return
|
|
248
|
-
}(
|
|
249
|
-
})
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
106
|
+
return new Date(e3);
|
|
107
|
+
}(t3), this.init();
|
|
108
|
+
}, m2.init = function() {
|
|
109
|
+
var t3 = this.$d;
|
|
110
|
+
this.$y = t3.getFullYear(), this.$M = t3.getMonth(), this.$D = t3.getDate(), this.$W = t3.getDay(), this.$H = t3.getHours(), this.$m = t3.getMinutes(), this.$s = t3.getSeconds(), this.$ms = t3.getMilliseconds();
|
|
111
|
+
}, m2.$utils = function() {
|
|
112
|
+
return b;
|
|
113
|
+
}, m2.isValid = function() {
|
|
114
|
+
return !(this.$d.toString() === l);
|
|
115
|
+
}, m2.isSame = function(t3, e3) {
|
|
116
|
+
var n3 = O(t3);
|
|
117
|
+
return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
|
|
118
|
+
}, m2.isAfter = function(t3, e3) {
|
|
119
|
+
return O(t3) < this.startOf(e3);
|
|
120
|
+
}, m2.isBefore = function(t3, e3) {
|
|
121
|
+
return this.endOf(e3) < O(t3);
|
|
122
|
+
}, m2.$g = function(t3, e3, n3) {
|
|
123
|
+
return b.u(t3) ? this[e3] : this.set(n3, t3);
|
|
124
|
+
}, m2.unix = function() {
|
|
125
|
+
return Math.floor(this.valueOf() / 1e3);
|
|
126
|
+
}, m2.valueOf = function() {
|
|
127
|
+
return this.$d.getTime();
|
|
128
|
+
}, m2.startOf = function(t3, e3) {
|
|
129
|
+
var n3 = this, r3 = !!b.u(e3) || e3, f2 = b.p(t3), l2 = function(t4, e4) {
|
|
130
|
+
var i3 = b.w(n3.$u ? Date.UTC(n3.$y, e4, t4) : new Date(n3.$y, e4, t4), n3);
|
|
131
|
+
return r3 ? i3 : i3.endOf(a2);
|
|
132
|
+
}, $2 = function(t4, e4) {
|
|
133
|
+
return b.w(n3.toDate()[t4].apply(n3.toDate("s"), (r3 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e4)), n3);
|
|
134
|
+
}, y2 = this.$W, M3 = this.$M, m3 = this.$D, v2 = "set" + (this.$u ? "UTC" : "");
|
|
135
|
+
switch (f2) {
|
|
136
|
+
case h:
|
|
137
|
+
return r3 ? l2(1, 0) : l2(31, 11);
|
|
138
|
+
case c2:
|
|
139
|
+
return r3 ? l2(1, M3) : l2(0, M3 + 1);
|
|
140
|
+
case o:
|
|
141
|
+
var g2 = this.$locale().weekStart || 0, D2 = (y2 < g2 ? y2 + 7 : y2) - g2;
|
|
142
|
+
return l2(r3 ? m3 - D2 : m3 + (6 - D2), M3);
|
|
143
|
+
case a2:
|
|
144
|
+
case d:
|
|
145
|
+
return $2(v2 + "Hours", 0);
|
|
146
|
+
case u:
|
|
147
|
+
return $2(v2 + "Minutes", 1);
|
|
148
|
+
case s2:
|
|
149
|
+
return $2(v2 + "Seconds", 2);
|
|
150
|
+
case i2:
|
|
151
|
+
return $2(v2 + "Milliseconds", 3);
|
|
152
|
+
default:
|
|
153
|
+
return this.clone();
|
|
154
|
+
}
|
|
155
|
+
}, m2.endOf = function(t3) {
|
|
156
|
+
return this.startOf(t3, false);
|
|
157
|
+
}, m2.$set = function(t3, e3) {
|
|
158
|
+
var n3, o2 = b.p(t3), f2 = "set" + (this.$u ? "UTC" : ""), l2 = (n3 = {}, n3[a2] = f2 + "Date", n3[d] = f2 + "Date", n3[c2] = f2 + "Month", n3[h] = f2 + "FullYear", n3[u] = f2 + "Hours", n3[s2] = f2 + "Minutes", n3[i2] = f2 + "Seconds", n3[r2] = f2 + "Milliseconds", n3)[o2], $2 = o2 === a2 ? this.$D + (e3 - this.$W) : e3;
|
|
159
|
+
if (o2 === c2 || o2 === h) {
|
|
160
|
+
var y2 = this.clone().set(d, 1);
|
|
161
|
+
y2.$d[l2]($2), y2.init(), this.$d = y2.set(d, Math.min(this.$D, y2.daysInMonth())).$d;
|
|
162
|
+
} else
|
|
163
|
+
l2 && this.$d[l2]($2);
|
|
164
|
+
return this.init(), this;
|
|
165
|
+
}, m2.set = function(t3, e3) {
|
|
166
|
+
return this.clone().$set(t3, e3);
|
|
167
|
+
}, m2.get = function(t3) {
|
|
168
|
+
return this[b.p(t3)]();
|
|
169
|
+
}, m2.add = function(r3, f2) {
|
|
170
|
+
var d2, l2 = this;
|
|
171
|
+
r3 = Number(r3);
|
|
172
|
+
var $2 = b.p(f2), y2 = function(t3) {
|
|
173
|
+
var e3 = O(l2);
|
|
174
|
+
return b.w(e3.date(e3.date() + Math.round(t3 * r3)), l2);
|
|
175
|
+
};
|
|
176
|
+
if ($2 === c2)
|
|
177
|
+
return this.set(c2, this.$M + r3);
|
|
178
|
+
if ($2 === h)
|
|
179
|
+
return this.set(h, this.$y + r3);
|
|
180
|
+
if ($2 === a2)
|
|
181
|
+
return y2(1);
|
|
182
|
+
if ($2 === o)
|
|
183
|
+
return y2(7);
|
|
184
|
+
var M3 = (d2 = {}, d2[s2] = e2, d2[u] = n2, d2[i2] = t2, d2)[$2] || 1, m3 = this.$d.getTime() + r3 * M3;
|
|
185
|
+
return b.w(m3, this);
|
|
186
|
+
}, m2.subtract = function(t3, e3) {
|
|
187
|
+
return this.add(-1 * t3, e3);
|
|
188
|
+
}, m2.format = function(t3) {
|
|
189
|
+
var e3 = this, n3 = this.$locale();
|
|
190
|
+
if (!this.isValid())
|
|
191
|
+
return n3.invalidDate || l;
|
|
192
|
+
var r3 = t3 || "YYYY-MM-DDTHH:mm:ssZ", i3 = b.z(this), s3 = this.$H, u2 = this.$m, a3 = this.$M, o2 = n3.weekdays, c3 = n3.months, f2 = n3.meridiem, h2 = function(t4, n4, i4, s4) {
|
|
193
|
+
return t4 && (t4[n4] || t4(e3, r3)) || i4[n4].slice(0, s4);
|
|
194
|
+
}, d2 = function(t4) {
|
|
195
|
+
return b.s(s3 % 12 || 12, t4, "0");
|
|
196
|
+
}, $2 = f2 || function(t4, e4, n4) {
|
|
197
|
+
var r4 = t4 < 12 ? "AM" : "PM";
|
|
198
|
+
return n4 ? r4.toLowerCase() : r4;
|
|
199
|
+
};
|
|
200
|
+
return r3.replace(y, function(t4, r4) {
|
|
201
|
+
return r4 || function(t5) {
|
|
202
|
+
switch (t5) {
|
|
203
|
+
case "YY":
|
|
204
|
+
return String(e3.$y).slice(-2);
|
|
205
|
+
case "YYYY":
|
|
206
|
+
return b.s(e3.$y, 4, "0");
|
|
207
|
+
case "M":
|
|
208
|
+
return a3 + 1;
|
|
209
|
+
case "MM":
|
|
210
|
+
return b.s(a3 + 1, 2, "0");
|
|
211
|
+
case "MMM":
|
|
212
|
+
return h2(n3.monthsShort, a3, c3, 3);
|
|
213
|
+
case "MMMM":
|
|
214
|
+
return h2(c3, a3);
|
|
215
|
+
case "D":
|
|
216
|
+
return e3.$D;
|
|
217
|
+
case "DD":
|
|
218
|
+
return b.s(e3.$D, 2, "0");
|
|
219
|
+
case "d":
|
|
220
|
+
return String(e3.$W);
|
|
221
|
+
case "dd":
|
|
222
|
+
return h2(n3.weekdaysMin, e3.$W, o2, 2);
|
|
223
|
+
case "ddd":
|
|
224
|
+
return h2(n3.weekdaysShort, e3.$W, o2, 3);
|
|
225
|
+
case "dddd":
|
|
226
|
+
return o2[e3.$W];
|
|
227
|
+
case "H":
|
|
228
|
+
return String(s3);
|
|
229
|
+
case "HH":
|
|
230
|
+
return b.s(s3, 2, "0");
|
|
231
|
+
case "h":
|
|
232
|
+
return d2(1);
|
|
233
|
+
case "hh":
|
|
234
|
+
return d2(2);
|
|
235
|
+
case "a":
|
|
236
|
+
return $2(s3, u2, true);
|
|
237
|
+
case "A":
|
|
238
|
+
return $2(s3, u2, false);
|
|
239
|
+
case "m":
|
|
240
|
+
return String(u2);
|
|
241
|
+
case "mm":
|
|
242
|
+
return b.s(u2, 2, "0");
|
|
243
|
+
case "s":
|
|
244
|
+
return String(e3.$s);
|
|
245
|
+
case "ss":
|
|
246
|
+
return b.s(e3.$s, 2, "0");
|
|
247
|
+
case "SSS":
|
|
248
|
+
return b.s(e3.$ms, 3, "0");
|
|
249
|
+
case "Z":
|
|
250
|
+
return i3;
|
|
251
|
+
}
|
|
252
|
+
return null;
|
|
253
|
+
}(t4) || i3.replace(":", "");
|
|
254
|
+
});
|
|
255
|
+
}, m2.utcOffset = function() {
|
|
256
|
+
return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
|
|
257
|
+
}, m2.diff = function(r3, d2, l2) {
|
|
258
|
+
var $2, y2 = this, M3 = b.p(d2), m3 = O(r3), v2 = (m3.utcOffset() - this.utcOffset()) * e2, g2 = this - m3, D2 = function() {
|
|
259
|
+
return b.m(y2, m3);
|
|
260
|
+
};
|
|
261
|
+
switch (M3) {
|
|
262
|
+
case h:
|
|
263
|
+
$2 = D2() / 12;
|
|
264
|
+
break;
|
|
265
|
+
case c2:
|
|
266
|
+
$2 = D2();
|
|
267
|
+
break;
|
|
268
|
+
case f:
|
|
269
|
+
$2 = D2() / 3;
|
|
270
|
+
break;
|
|
271
|
+
case o:
|
|
272
|
+
$2 = (g2 - v2) / 6048e5;
|
|
273
|
+
break;
|
|
274
|
+
case a2:
|
|
275
|
+
$2 = (g2 - v2) / 864e5;
|
|
276
|
+
break;
|
|
277
|
+
case u:
|
|
278
|
+
$2 = g2 / n2;
|
|
279
|
+
break;
|
|
280
|
+
case s2:
|
|
281
|
+
$2 = g2 / e2;
|
|
282
|
+
break;
|
|
283
|
+
case i2:
|
|
284
|
+
$2 = g2 / t2;
|
|
285
|
+
break;
|
|
286
|
+
default:
|
|
287
|
+
$2 = g2;
|
|
288
|
+
}
|
|
289
|
+
return l2 ? $2 : b.a($2);
|
|
290
|
+
}, m2.daysInMonth = function() {
|
|
291
|
+
return this.endOf(c2).$D;
|
|
292
|
+
}, m2.$locale = function() {
|
|
293
|
+
return D[this.$L];
|
|
294
|
+
}, m2.locale = function(t3, e3) {
|
|
295
|
+
if (!t3)
|
|
296
|
+
return this.$L;
|
|
297
|
+
var n3 = this.clone(), r3 = w(t3, e3, true);
|
|
298
|
+
return r3 && (n3.$L = r3), n3;
|
|
299
|
+
}, m2.clone = function() {
|
|
300
|
+
return b.w(this.$d, this);
|
|
301
|
+
}, m2.toDate = function() {
|
|
302
|
+
return new Date(this.valueOf());
|
|
303
|
+
}, m2.toJSON = function() {
|
|
304
|
+
return this.isValid() ? this.toISOString() : null;
|
|
305
|
+
}, m2.toISOString = function() {
|
|
306
|
+
return this.$d.toISOString();
|
|
307
|
+
}, m2.toString = function() {
|
|
308
|
+
return this.$d.toUTCString();
|
|
309
|
+
}, M2;
|
|
310
|
+
}(), k = _.prototype;
|
|
311
|
+
return O.prototype = k, [["$ms", r2], ["$s", i2], ["$m", s2], ["$H", u], ["$W", a2], ["$M", c2], ["$y", h], ["$D", d]].forEach(function(t3) {
|
|
312
|
+
k[t3[1]] = function(e3) {
|
|
313
|
+
return this.$g(e3, t3[0], t3[1]);
|
|
255
314
|
};
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
case o:
|
|
267
|
-
$2 = (g2 - v2) / 6048e5;
|
|
268
|
-
break;
|
|
269
|
-
case a2:
|
|
270
|
-
$2 = (g2 - v2) / 864e5;
|
|
271
|
-
break;
|
|
272
|
-
case u:
|
|
273
|
-
$2 = g2 / n2;
|
|
274
|
-
break;
|
|
275
|
-
case s2:
|
|
276
|
-
$2 = g2 / e2;
|
|
277
|
-
break;
|
|
278
|
-
case i2:
|
|
279
|
-
$2 = g2 / t2;
|
|
280
|
-
break;
|
|
281
|
-
default:
|
|
282
|
-
$2 = g2;
|
|
283
|
-
}
|
|
284
|
-
return l2 ? $2 : b.a($2);
|
|
285
|
-
}, m2.daysInMonth = function() {
|
|
286
|
-
return this.endOf(c2).$D;
|
|
287
|
-
}, m2.$locale = function() {
|
|
288
|
-
return D[this.$L];
|
|
289
|
-
}, m2.locale = function(t3, e3) {
|
|
290
|
-
if (!t3)
|
|
291
|
-
return this.$L;
|
|
292
|
-
var n3 = this.clone(), r3 = w(t3, e3, true);
|
|
293
|
-
return r3 && (n3.$L = r3), n3;
|
|
294
|
-
}, m2.clone = function() {
|
|
295
|
-
return b.w(this.$d, this);
|
|
296
|
-
}, m2.toDate = function() {
|
|
297
|
-
return new Date(this.valueOf());
|
|
298
|
-
}, m2.toJSON = function() {
|
|
299
|
-
return this.isValid() ? this.toISOString() : null;
|
|
300
|
-
}, m2.toISOString = function() {
|
|
301
|
-
return this.$d.toISOString();
|
|
302
|
-
}, m2.toString = function() {
|
|
303
|
-
return this.$d.toUTCString();
|
|
304
|
-
}, M2;
|
|
305
|
-
}(), k = _.prototype;
|
|
306
|
-
return O.prototype = k, [["$ms", r2], ["$s", i2], ["$m", s2], ["$H", u], ["$W", a2], ["$M", c2], ["$y", h], ["$D", d]].forEach(function(t3) {
|
|
307
|
-
k[t3[1]] = function(e3) {
|
|
308
|
-
return this.$g(e3, t3[0], t3[1]);
|
|
309
|
-
};
|
|
310
|
-
}), O.extend = function(t3, e3) {
|
|
311
|
-
return t3.$i || (t3(e3, _, O), t3.$i = true), O;
|
|
312
|
-
}, O.locale = w, O.isDayjs = S, O.unix = function(t3) {
|
|
313
|
-
return O(1e3 * t3);
|
|
314
|
-
}, O.en = D[g], O.Ls = D, O.p = {}, O;
|
|
315
|
-
});
|
|
316
|
-
})(dayjs_min);
|
|
317
|
-
var dayjs_minExports = dayjs_min.exports;
|
|
315
|
+
}), O.extend = function(t3, e3) {
|
|
316
|
+
return t3.$i || (t3(e3, _, O), t3.$i = true), O;
|
|
317
|
+
}, O.locale = w, O.isDayjs = S, O.unix = function(t3) {
|
|
318
|
+
return O(1e3 * t3);
|
|
319
|
+
}, O.en = D[g], O.Ls = D, O.p = {}, O;
|
|
320
|
+
});
|
|
321
|
+
})(dayjs_min);
|
|
322
|
+
return dayjs_min.exports;
|
|
323
|
+
}
|
|
324
|
+
var dayjs_minExports = requireDayjs_min();
|
|
318
325
|
const dayjs = /* @__PURE__ */ getDefaultExportFromCjs(dayjs_minExports);
|
|
319
326
|
var zh = { exports: {} };
|
|
320
327
|
(function(module, exports) {
|
|
321
328
|
!function(e2, _) {
|
|
322
|
-
module.exports = _(
|
|
329
|
+
module.exports = _(requireDayjs_min());
|
|
323
330
|
}(commonjsGlobal, function(e2) {
|
|
324
331
|
function _(e3) {
|
|
325
332
|
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
@@ -8975,34 +8982,46 @@ class ResourceModel {
|
|
|
8975
8982
|
}
|
|
8976
8983
|
class IngressModel extends ResourceModel {
|
|
8977
8984
|
constructor(_rawYaml, _globalStore) {
|
|
8978
|
-
var _a;
|
|
8979
8985
|
super(_rawYaml, _globalStore);
|
|
8980
|
-
__publicField(this, "flattenedRules");
|
|
8986
|
+
__publicField(this, "flattenedRules", []);
|
|
8981
8987
|
this._rawYaml = _rawYaml;
|
|
8982
8988
|
this._globalStore = _globalStore;
|
|
8983
|
-
|
|
8989
|
+
}
|
|
8990
|
+
async init() {
|
|
8991
|
+
var _a, _b, _c, _d;
|
|
8992
|
+
const services = await this._globalStore.get("services", {
|
|
8993
|
+
resourceBasePath: "/api/v1",
|
|
8994
|
+
kind: "Service"
|
|
8995
|
+
});
|
|
8996
|
+
const protocal = !!this._rawYaml.spec.tls ? "https" : "http";
|
|
8997
|
+
const servicePort = (_c = (_b = (_a = services.items.find((s2) => {
|
|
8998
|
+
var _a2, _b2;
|
|
8999
|
+
return ((_a2 = s2.metadata) == null ? void 0 : _a2.name) === "contour-envoy" && ((_b2 = s2.spec) == null ? void 0 : _b2.type) === "NodePort";
|
|
9000
|
+
})) == null ? void 0 : _a.spec) == null ? void 0 : _b.ports) == null ? void 0 : _c.find((p) => p.name === protocal);
|
|
9001
|
+
this.flattenedRules = ((_d = this._rawYaml.spec.rules) == null ? void 0 : _d.reduce((res, rule2) => {
|
|
8984
9002
|
var _a2;
|
|
8985
9003
|
const paths = (_a2 = rule2.http) == null ? void 0 : _a2.paths.map((p) => {
|
|
8986
|
-
var _a3,
|
|
9004
|
+
var _a3, _b2, _c2, _d2, _e, _f;
|
|
8987
9005
|
return {
|
|
8988
9006
|
resourceName: ((_a3 = p.backend.resource) == null ? void 0 : _a3.name) || "",
|
|
8989
|
-
serviceName: ((
|
|
8990
|
-
fullPath: this.getFullPath(rule2, p.path),
|
|
9007
|
+
serviceName: ((_b2 = p.backend.service) == null ? void 0 : _b2.name) || "",
|
|
9008
|
+
fullPath: this.getFullPath(rule2, p.path, servicePort == null ? void 0 : servicePort.nodePort),
|
|
8991
9009
|
pathType: p.pathType,
|
|
8992
|
-
servicePort: ((
|
|
9010
|
+
servicePort: ((_d2 = (_c2 = p.backend.service) == null ? void 0 : _c2.port) == null ? void 0 : _d2.number) || ((_f = (_e = p.backend.service) == null ? void 0 : _e.port) == null ? void 0 : _f.name),
|
|
8993
9011
|
host: rule2.host
|
|
8994
9012
|
};
|
|
8995
9013
|
});
|
|
8996
9014
|
return [...res, ...paths || []];
|
|
8997
9015
|
}, [])) || [];
|
|
8998
9016
|
}
|
|
8999
|
-
getFullPath(rule2, path2 = "") {
|
|
9017
|
+
getFullPath(rule2, path2 = "", port2) {
|
|
9000
9018
|
if (!rule2.host) {
|
|
9001
9019
|
return path2 || "";
|
|
9002
9020
|
}
|
|
9003
9021
|
const hostValue = rule2.host || "";
|
|
9004
9022
|
const protocal = this._rawYaml.spec.tls ? "https://" : "http://";
|
|
9005
|
-
|
|
9023
|
+
const portText = port2 ? `:${port2}` : "";
|
|
9024
|
+
return `${protocal}${hostValue}${portText}${path2}`;
|
|
9006
9025
|
}
|
|
9007
9026
|
}
|
|
9008
9027
|
class NetworkPolicyModel extends ResourceModel {
|
|
@@ -9532,24 +9551,6 @@ const SECRET_CUSTOM_INIT_VALUE = {
|
|
|
9532
9551
|
"type": "",
|
|
9533
9552
|
"data": {}
|
|
9534
9553
|
};
|
|
9535
|
-
const NODE_INIT_VALUE = {
|
|
9536
|
-
"apiVersion": "v1",
|
|
9537
|
-
"kind": "Node",
|
|
9538
|
-
"metadata": {
|
|
9539
|
-
"name": "example",
|
|
9540
|
-
"namespace": "default"
|
|
9541
|
-
},
|
|
9542
|
-
"spec": {}
|
|
9543
|
-
};
|
|
9544
|
-
const STORAGE_CLASS_INIT_VALUE = {
|
|
9545
|
-
"apiVersion": "storage.k8s.io/v1",
|
|
9546
|
-
"kind": "StorageClass",
|
|
9547
|
-
"metadata": {
|
|
9548
|
-
"name": "example",
|
|
9549
|
-
"namespace": "default"
|
|
9550
|
-
},
|
|
9551
|
-
"spec": {}
|
|
9552
|
-
};
|
|
9553
9554
|
var WorkloadState = /* @__PURE__ */ ((WorkloadState2) => {
|
|
9554
9555
|
WorkloadState2["Terminated"] = "terminated";
|
|
9555
9556
|
WorkloadState2["UPDATING"] = "updating";
|
|
@@ -10035,42 +10036,6 @@ class ServiceModel extends ResourceModel {
|
|
|
10035
10036
|
});
|
|
10036
10037
|
}
|
|
10037
10038
|
}
|
|
10038
|
-
var NodeRole = /* @__PURE__ */ ((NodeRole2) => {
|
|
10039
|
-
NodeRole2["ControlPlane"] = "Control Plane";
|
|
10040
|
-
NodeRole2["Worker"] = "Worker";
|
|
10041
|
-
return NodeRole2;
|
|
10042
|
-
})(NodeRole || {});
|
|
10043
|
-
class NodeModel extends WorkloadBaseModel {
|
|
10044
|
-
constructor(_rawYaml, _globalStore) {
|
|
10045
|
-
super(_rawYaml, _globalStore);
|
|
10046
|
-
this._rawYaml = _rawYaml;
|
|
10047
|
-
this._globalStore = _globalStore;
|
|
10048
|
-
}
|
|
10049
|
-
get role() {
|
|
10050
|
-
return "node-role.kubernetes.io/control-plane" in (this.metadata.labels || {}) ? "Control Plane" : "Worker";
|
|
10051
|
-
}
|
|
10052
|
-
}
|
|
10053
|
-
class StorageClassModel extends ResourceModel {
|
|
10054
|
-
constructor(_rawYaml, _globalStore) {
|
|
10055
|
-
super(_rawYaml, _globalStore);
|
|
10056
|
-
this._rawYaml = _rawYaml;
|
|
10057
|
-
this._globalStore = _globalStore;
|
|
10058
|
-
}
|
|
10059
|
-
}
|
|
10060
|
-
class PersistentVolumeModel extends ResourceModel {
|
|
10061
|
-
constructor(_rawYaml, _globalStore) {
|
|
10062
|
-
super(_rawYaml, _globalStore);
|
|
10063
|
-
this._rawYaml = _rawYaml;
|
|
10064
|
-
this._globalStore = _globalStore;
|
|
10065
|
-
}
|
|
10066
|
-
}
|
|
10067
|
-
class PersistentVolumeClaimModel extends ResourceModel {
|
|
10068
|
-
constructor(_rawYaml, _globalStore) {
|
|
10069
|
-
super(_rawYaml, _globalStore);
|
|
10070
|
-
this._rawYaml = _rawYaml;
|
|
10071
|
-
this._globalStore = _globalStore;
|
|
10072
|
-
}
|
|
10073
|
-
}
|
|
10074
10039
|
const index_1lzkrja = "";
|
|
10075
10040
|
const ServiceInClusterAccessComponent = ({
|
|
10076
10041
|
service
|
|
@@ -10467,8 +10432,6 @@ var RESOURCE_GROUP = /* @__PURE__ */ ((RESOURCE_GROUP2) => {
|
|
|
10467
10432
|
RESOURCE_GROUP2["CLUSTER"] = "CLUSTER";
|
|
10468
10433
|
RESOURCE_GROUP2["SERVICE"] = "SERVICE";
|
|
10469
10434
|
RESOURCE_GROUP2["SERVICE_AND_NETWORK"] = "SERVICE_AND_NETWORK";
|
|
10470
|
-
RESOURCE_GROUP2["CONFIG"] = "CONFIG";
|
|
10471
|
-
RESOURCE_GROUP2["NODE_MANAGEMENT"] = "NODE_MANAGEMENT";
|
|
10472
10435
|
return RESOURCE_GROUP2;
|
|
10473
10436
|
})(RESOURCE_GROUP || {});
|
|
10474
10437
|
var FormType = /* @__PURE__ */ ((FormType2) => {
|
|
@@ -22178,7 +22141,7 @@ function useForm$1(props = {}) {
|
|
|
22178
22141
|
_formControl.current.formState = getProxyFormState(formState, control);
|
|
22179
22142
|
return _formControl.current;
|
|
22180
22143
|
}
|
|
22181
|
-
const
|
|
22144
|
+
const RefineFormContent_1jki0fx = "";
|
|
22182
22145
|
const RefineFormContent = (props) => {
|
|
22183
22146
|
var _a, _b, _c, _d;
|
|
22184
22147
|
const {
|
|
@@ -22277,9 +22240,6 @@ const RefineFormContent = (props) => {
|
|
|
22277
22240
|
children: value2
|
|
22278
22241
|
});
|
|
22279
22242
|
}
|
|
22280
|
-
if (c2 == null ? void 0 : c2.render) {
|
|
22281
|
-
ele = c2.render(value2, onChange, formValue, onBlur, action, control);
|
|
22282
|
-
}
|
|
22283
22243
|
if (c2.helperText) {
|
|
22284
22244
|
ele = /* @__PURE__ */ jsxRuntimeExports.jsxs(Space, {
|
|
22285
22245
|
size: 4,
|
|
@@ -22291,6 +22251,9 @@ const RefineFormContent = (props) => {
|
|
|
22291
22251
|
})]
|
|
22292
22252
|
});
|
|
22293
22253
|
}
|
|
22254
|
+
if (c2 == null ? void 0 : c2.render) {
|
|
22255
|
+
ele = c2.render(value2, onChange, formValue, onBlur, action);
|
|
22256
|
+
}
|
|
22294
22257
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(Form.Item, {
|
|
22295
22258
|
label: c2.label,
|
|
22296
22259
|
colon: false,
|
|
@@ -22947,6 +22910,7 @@ const useForm = ({
|
|
|
22947
22910
|
};
|
|
22948
22911
|
};
|
|
22949
22912
|
const useRefineForm = (props) => {
|
|
22913
|
+
var _a;
|
|
22950
22914
|
const { config, id, refineProps } = props;
|
|
22951
22915
|
const [responseErrorMsg, setResponseErrorMsg] = useState("");
|
|
22952
22916
|
const i18n2 = useTranslation();
|
|
@@ -22976,15 +22940,16 @@ const useRefineForm = (props) => {
|
|
|
22976
22940
|
liveMode: "off",
|
|
22977
22941
|
...refineProps
|
|
22978
22942
|
},
|
|
22979
|
-
defaultValues: config == null ? void 0 : config.initValue
|
|
22943
|
+
defaultValues: config == null ? void 0 : config.initValue,
|
|
22944
|
+
...(_a = config.formConfig) == null ? void 0 : _a.useFormProps
|
|
22980
22945
|
});
|
|
22981
22946
|
useEffect(() => {
|
|
22982
|
-
var
|
|
22983
|
-
const response = (
|
|
22947
|
+
var _a2, _b;
|
|
22948
|
+
const response = (_a2 = result.refineCore.mutationResult.error) == null ? void 0 : _a2.response;
|
|
22984
22949
|
if (response && !(response == null ? void 0 : response.bodyUsed)) {
|
|
22985
22950
|
(_b = response.json) == null ? void 0 : _b.call(response).then((body) => {
|
|
22986
|
-
var
|
|
22987
|
-
setResponseErrorMsg(((_b2 = (
|
|
22951
|
+
var _a3, _b2;
|
|
22952
|
+
setResponseErrorMsg(((_b2 = (_a3 = config.formConfig) == null ? void 0 : _a3.formatError) == null ? void 0 : _b2.call(_a3, body)) || body.message);
|
|
22988
22953
|
});
|
|
22989
22954
|
}
|
|
22990
22955
|
}, [config.formConfig, result]);
|
|
@@ -22998,7 +22963,7 @@ const Separator = () => {
|
|
|
22998
22963
|
});
|
|
22999
22964
|
};
|
|
23000
22965
|
const MonacoYamlEditor = React__default.lazy(() => Promise.resolve().then(() => MonacoYamlEditor$2));
|
|
23001
|
-
const MonacoYamlDiffEditor = React__default.lazy(() => import("./MonacoYamlDiffEditor-
|
|
22966
|
+
const MonacoYamlDiffEditor = React__default.lazy(() => import("./MonacoYamlDiffEditor-a7e5cc24.js"));
|
|
23002
22967
|
const YamlEditorComponent = forwardRef(
|
|
23003
22968
|
function YamlEditorComponent2(props, ref) {
|
|
23004
22969
|
const {
|
|
@@ -23695,13 +23660,13 @@ function YamlForm(props) {
|
|
|
23695
23660
|
})
|
|
23696
23661
|
});
|
|
23697
23662
|
}
|
|
23698
|
-
const
|
|
23699
|
-
const
|
|
23700
|
-
const
|
|
23701
|
-
const
|
|
23663
|
+
const FormModal_5bl3dp = "";
|
|
23664
|
+
const FormDescStyle = "f1nltbcu";
|
|
23665
|
+
const FullscreenModalStyle = "f1qgcca6";
|
|
23666
|
+
const MaxWidthModalStyle = "m1tl3wq2";
|
|
23702
23667
|
const ErrorStyle = "exjt4uc";
|
|
23703
23668
|
function FormModal(props) {
|
|
23704
|
-
var _a, _b, _c, _d, _e
|
|
23669
|
+
var _a, _b, _c, _d, _e;
|
|
23705
23670
|
const {
|
|
23706
23671
|
resource: resourceFromProps,
|
|
23707
23672
|
id,
|
|
@@ -23792,6 +23757,15 @@ function FormModal(props) {
|
|
|
23792
23757
|
resource: config == null ? void 0 : config.kind
|
|
23793
23758
|
});
|
|
23794
23759
|
}, [action, config.formConfig, config == null ? void 0 : config.kind, i18n2, id]);
|
|
23760
|
+
const desc = useMemo(() => {
|
|
23761
|
+
var _a2, _b2, _c2, _d2;
|
|
23762
|
+
if (typeof ((_a2 = config.formConfig) == null ? void 0 : _a2.formDesc) === "string")
|
|
23763
|
+
return (_b2 = config.formConfig) == null ? void 0 : _b2.formDesc;
|
|
23764
|
+
if (typeof ((_c2 = config.formConfig) == null ? void 0 : _c2.formDesc) === "function") {
|
|
23765
|
+
return (_d2 = config.formConfig) == null ? void 0 : _d2.formDesc(action);
|
|
23766
|
+
}
|
|
23767
|
+
return "";
|
|
23768
|
+
}, [action, config.formConfig]);
|
|
23795
23769
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs(Modal, {
|
|
23796
23770
|
className: cx_default(FullscreenModalStyle, isYamlForm ? "" : MaxWidthModalStyle),
|
|
23797
23771
|
width: "calc(100vw - 16px)",
|
|
@@ -23810,9 +23784,9 @@ function FormModal(props) {
|
|
|
23810
23784
|
onCancel,
|
|
23811
23785
|
destroyOnClose: true,
|
|
23812
23786
|
fullscreen: true,
|
|
23813
|
-
children: [
|
|
23787
|
+
children: [desc ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
|
|
23814
23788
|
className: FormDescStyle,
|
|
23815
|
-
children:
|
|
23789
|
+
children: desc
|
|
23816
23790
|
}) : void 0, formEle]
|
|
23817
23791
|
});
|
|
23818
23792
|
}
|
|
@@ -24147,32 +24121,6 @@ const TextTags = (props) => {
|
|
|
24147
24121
|
});
|
|
24148
24122
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("ul", { children: tags });
|
|
24149
24123
|
};
|
|
24150
|
-
function ResourceSelect(props) {
|
|
24151
|
-
const { resource, resourceBasePath, kind, selectProps, value: value2, onChange } = props;
|
|
24152
|
-
const { data: data2, isLoading, isError } = useList({
|
|
24153
|
-
resource,
|
|
24154
|
-
meta: {
|
|
24155
|
-
resourceBasePath,
|
|
24156
|
-
kind
|
|
24157
|
-
},
|
|
24158
|
-
pagination: {
|
|
24159
|
-
mode: "off"
|
|
24160
|
-
}
|
|
24161
|
-
});
|
|
24162
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
24163
|
-
Select,
|
|
24164
|
-
{
|
|
24165
|
-
input: {
|
|
24166
|
-
value: value2,
|
|
24167
|
-
onChange
|
|
24168
|
-
},
|
|
24169
|
-
loading: isLoading,
|
|
24170
|
-
error: isError,
|
|
24171
|
-
...selectProps,
|
|
24172
|
-
children: data2 == null ? void 0 : data2.data.map((namespace2) => /* @__PURE__ */ jsxRuntimeExports.jsx(AntdOption, { value: namespace2.metadata.name, children: namespace2.metadata.name }, namespace2.metadata.name))
|
|
24173
|
-
}
|
|
24174
|
-
);
|
|
24175
|
-
}
|
|
24176
24124
|
const IngressRulesComponent = ({ ingress }) => {
|
|
24177
24125
|
const kit = useUIKit();
|
|
24178
24126
|
const result = ingress.flattenedRules.map((r2) => {
|
|
@@ -24732,76 +24680,6 @@ const PortMappingColumnRenderer = (i18n2, clusterVip) => {
|
|
|
24732
24680
|
}
|
|
24733
24681
|
};
|
|
24734
24682
|
};
|
|
24735
|
-
const ProvisionerColumnRenderer = (i18n2) => {
|
|
24736
|
-
return {
|
|
24737
|
-
key: "provisioner",
|
|
24738
|
-
display: true,
|
|
24739
|
-
dataIndex: ["provisioner"],
|
|
24740
|
-
title: i18n2.t("dovetail.provisioner"),
|
|
24741
|
-
width: 120,
|
|
24742
|
-
sortable: true
|
|
24743
|
-
};
|
|
24744
|
-
};
|
|
24745
|
-
const FsTypeColumnRenderer = (i18n2) => {
|
|
24746
|
-
return {
|
|
24747
|
-
key: "fstype",
|
|
24748
|
-
display: true,
|
|
24749
|
-
dataIndex: ["parameters", "csi.storage.k8s.io/fstype"],
|
|
24750
|
-
title: i18n2.t("dovetail.file_system"),
|
|
24751
|
-
width: 120,
|
|
24752
|
-
sortable: true
|
|
24753
|
-
};
|
|
24754
|
-
};
|
|
24755
|
-
const PVCapacityColumnRenderer = (i18n2) => {
|
|
24756
|
-
return {
|
|
24757
|
-
key: "capacity",
|
|
24758
|
-
display: true,
|
|
24759
|
-
dataIndex: ["spec", "capacity", "storage"],
|
|
24760
|
-
title: i18n2.t("dovetail.capacity"),
|
|
24761
|
-
width: 120,
|
|
24762
|
-
sortable: true
|
|
24763
|
-
};
|
|
24764
|
-
};
|
|
24765
|
-
const PVStorageClassColumnRenderer = (i18n2) => {
|
|
24766
|
-
return {
|
|
24767
|
-
key: "storageClass",
|
|
24768
|
-
display: true,
|
|
24769
|
-
dataIndex: ["spec", "storageClassName"],
|
|
24770
|
-
title: i18n2.t("dovetail.storage_class"),
|
|
24771
|
-
width: 120,
|
|
24772
|
-
sortable: true
|
|
24773
|
-
};
|
|
24774
|
-
};
|
|
24775
|
-
const PVPhaseColumnRenderer = (i18n2) => {
|
|
24776
|
-
return {
|
|
24777
|
-
key: "phase",
|
|
24778
|
-
display: true,
|
|
24779
|
-
dataIndex: ["status", "phase"],
|
|
24780
|
-
title: i18n2.t("dovetail.phase"),
|
|
24781
|
-
width: 120,
|
|
24782
|
-
sortable: true
|
|
24783
|
-
};
|
|
24784
|
-
};
|
|
24785
|
-
const PVModeColumnRenderer = (i18n2) => {
|
|
24786
|
-
return {
|
|
24787
|
-
key: "mode",
|
|
24788
|
-
display: true,
|
|
24789
|
-
dataIndex: ["spec", "volumeMode"],
|
|
24790
|
-
title: i18n2.t("dovetail.volume_mode"),
|
|
24791
|
-
width: 120,
|
|
24792
|
-
sortable: true
|
|
24793
|
-
};
|
|
24794
|
-
};
|
|
24795
|
-
const PVAccessModeColumnRenderer = (i18n2) => {
|
|
24796
|
-
return {
|
|
24797
|
-
key: "accessMode",
|
|
24798
|
-
display: true,
|
|
24799
|
-
dataIndex: ["spec", "accessModes"],
|
|
24800
|
-
title: i18n2.t("dovetail.access_mode"),
|
|
24801
|
-
width: 120,
|
|
24802
|
-
sortable: true
|
|
24803
|
-
};
|
|
24804
|
-
};
|
|
24805
24683
|
const styles = "";
|
|
24806
24684
|
const Dovetail = (props) => {
|
|
24807
24685
|
const {
|
|
@@ -24889,11 +24767,7 @@ const ModelMap = {
|
|
|
24889
24767
|
Event: EventModel,
|
|
24890
24768
|
Ingress: IngressModel,
|
|
24891
24769
|
NetworkPolicy: NetworkPolicyModel,
|
|
24892
|
-
Service: ServiceModel
|
|
24893
|
-
Node: NodeModel,
|
|
24894
|
-
StorageClass: StorageClassModel,
|
|
24895
|
-
PersistentVolume: PersistentVolumeModel,
|
|
24896
|
-
PersistentVolumeClaim: PersistentVolumeClaimModel
|
|
24770
|
+
Service: ServiceModel
|
|
24897
24771
|
};
|
|
24898
24772
|
class ModelPlugin {
|
|
24899
24773
|
constructor() {
|
|
@@ -25019,188 +24893,171 @@ const relationPlugin = new RelationPlugin();
|
|
|
25019
24893
|
const ProviderPlugins = [relationPlugin, modelPlugin];
|
|
25020
24894
|
const dovetailRefineI18n = i18n;
|
|
25021
24895
|
export {
|
|
25022
|
-
|
|
24896
|
+
WorkloadDropdown as $,
|
|
25023
24897
|
AgeColumnRenderer as A,
|
|
25024
|
-
|
|
24898
|
+
useDownloadYAML as B,
|
|
25025
24899
|
CommonSorter as C,
|
|
25026
24900
|
DurationColumnRenderer as D,
|
|
25027
|
-
|
|
25028
|
-
|
|
25029
|
-
|
|
25030
|
-
|
|
24901
|
+
useEdit as E,
|
|
24902
|
+
useGlobalStore as F,
|
|
24903
|
+
useOpenForm as G,
|
|
24904
|
+
Breadcrumb as H,
|
|
25031
24905
|
IngressRulesColumnRenderer as I,
|
|
25032
|
-
|
|
25033
|
-
|
|
25034
|
-
|
|
24906
|
+
NameInputWidget as J,
|
|
24907
|
+
dnsSubDomainRules as K,
|
|
24908
|
+
rfc1123LabelRules as L,
|
|
25035
24909
|
ModalStyle as M,
|
|
25036
24910
|
NameColumnRenderer as N,
|
|
25037
|
-
|
|
24911
|
+
rfc1035LabelRules as O,
|
|
25038
24912
|
PlainTextNameColumnRenderer as P,
|
|
25039
|
-
|
|
24913
|
+
NamespaceSelectWidget as Q,
|
|
25040
24914
|
ReplicasColumnRenderer as R,
|
|
25041
24915
|
StateDisplayColumnRenderer as S,
|
|
25042
|
-
|
|
25043
|
-
|
|
25044
|
-
|
|
24916
|
+
namespaceRules as T,
|
|
24917
|
+
KeyValueListWidget as U,
|
|
24918
|
+
MetadataForm as V,
|
|
25045
24919
|
WorkloadImageColumnRenderer as W,
|
|
25046
|
-
|
|
25047
|
-
|
|
25048
|
-
|
|
25049
|
-
|
|
24920
|
+
PageShow as X,
|
|
24921
|
+
Time as Y,
|
|
24922
|
+
ConditionsTable as Z,
|
|
24923
|
+
PodContainersTable as _,
|
|
25050
24924
|
useSchema as a,
|
|
25051
|
-
|
|
25052
|
-
|
|
25053
|
-
|
|
25054
|
-
|
|
25055
|
-
|
|
25056
|
-
|
|
25057
|
-
|
|
25058
|
-
|
|
25059
|
-
|
|
25060
|
-
|
|
25061
|
-
|
|
25062
|
-
|
|
25063
|
-
|
|
25064
|
-
|
|
25065
|
-
|
|
25066
|
-
|
|
25067
|
-
|
|
25068
|
-
|
|
25069
|
-
|
|
25070
|
-
|
|
25071
|
-
|
|
25072
|
-
|
|
25073
|
-
|
|
25074
|
-
|
|
25075
|
-
|
|
25076
|
-
|
|
25077
|
-
|
|
25078
|
-
|
|
25079
|
-
|
|
25080
|
-
|
|
25081
|
-
|
|
25082
|
-
|
|
25083
|
-
|
|
25084
|
-
|
|
25085
|
-
|
|
25086
|
-
|
|
25087
|
-
|
|
25088
|
-
|
|
25089
|
-
|
|
25090
|
-
|
|
25091
|
-
|
|
25092
|
-
|
|
25093
|
-
|
|
25094
|
-
|
|
25095
|
-
|
|
25096
|
-
|
|
25097
|
-
|
|
25098
|
-
|
|
25099
|
-
|
|
25100
|
-
|
|
25101
|
-
|
|
25102
|
-
|
|
25103
|
-
|
|
25104
|
-
|
|
25105
|
-
|
|
25106
|
-
|
|
25107
|
-
|
|
25108
|
-
|
|
25109
|
-
|
|
25110
|
-
|
|
25111
|
-
|
|
25112
|
-
|
|
25113
|
-
|
|
25114
|
-
|
|
24925
|
+
StateTagStyle as a$,
|
|
24926
|
+
ReplicasDropdown as a0,
|
|
24927
|
+
CreateButton as a1,
|
|
24928
|
+
ImageNames as a2,
|
|
24929
|
+
ResourceList as a3,
|
|
24930
|
+
ResourceShow as a4,
|
|
24931
|
+
ResourceForm as a5,
|
|
24932
|
+
ResourceCRUD as a6,
|
|
24933
|
+
WorkloadPodsTable as a7,
|
|
24934
|
+
CronJobDropdown as a8,
|
|
24935
|
+
ResourceUsageBar as a9,
|
|
24936
|
+
AgeField as aA,
|
|
24937
|
+
LabelsField as aB,
|
|
24938
|
+
AnnotationsField as aC,
|
|
24939
|
+
ServiceInnerClusterAccessField as aD,
|
|
24940
|
+
ServiceOutClusterAccessField as aE,
|
|
24941
|
+
PodSelectorField as aF,
|
|
24942
|
+
PortsTableField as aG,
|
|
24943
|
+
DurationField as aH,
|
|
24944
|
+
EventsTab as aI,
|
|
24945
|
+
PodLogTab as aJ,
|
|
24946
|
+
BasicGroup as aK,
|
|
24947
|
+
PodsGroup as aL,
|
|
24948
|
+
PodContainersGroup as aM,
|
|
24949
|
+
ServicePodsGroup as aN,
|
|
24950
|
+
ConditionsGroup as aO,
|
|
24951
|
+
SecretDataGroup as aP,
|
|
24952
|
+
JobsGroup as aQ,
|
|
24953
|
+
IngressRulesGroup as aR,
|
|
24954
|
+
PodSelectorGroup as aS,
|
|
24955
|
+
PortsGroup as aT,
|
|
24956
|
+
DataGroup as aU,
|
|
24957
|
+
NetworkPolicyIngressRulesGroup as aV,
|
|
24958
|
+
NetworkPolicyEgressRulesGroup as aW,
|
|
24959
|
+
ShowGroupComponent as aX,
|
|
24960
|
+
ShowContent as aY,
|
|
24961
|
+
DeleteManyButton as aZ,
|
|
24962
|
+
ListPage as a_,
|
|
24963
|
+
WorkloadReplicasForm as aa,
|
|
24964
|
+
WorkloadReplicas as ab,
|
|
24965
|
+
CronjobJobsTable as ac,
|
|
24966
|
+
KeyValue as ad,
|
|
24967
|
+
KeyValueAnnotation as ae,
|
|
24968
|
+
KeyValueSecret as af,
|
|
24969
|
+
Separator as ag,
|
|
24970
|
+
YamlEditorComponent as ah,
|
|
24971
|
+
DeleteButton as ai,
|
|
24972
|
+
Layout as aj,
|
|
24973
|
+
AreaType as ak,
|
|
24974
|
+
ImageField as al,
|
|
24975
|
+
ReplicaField as am,
|
|
24976
|
+
ConditionsField as an,
|
|
24977
|
+
PodsField as ao,
|
|
24978
|
+
JobsField as ap,
|
|
24979
|
+
DataField as aq,
|
|
24980
|
+
SecretDataField as ar,
|
|
24981
|
+
StartTimeField as as,
|
|
24982
|
+
ServiceTypeField as at,
|
|
24983
|
+
ClusterIpField as au,
|
|
24984
|
+
SessionAffinityField as av,
|
|
24985
|
+
ServicePodsField as aw,
|
|
24986
|
+
IngressRulesTableTabField as ax,
|
|
24987
|
+
EventsTableTabField as ay,
|
|
24988
|
+
NamespaceField as az,
|
|
25115
24989
|
useDeleteModal as b,
|
|
25116
|
-
|
|
25117
|
-
|
|
25118
|
-
|
|
25119
|
-
|
|
25120
|
-
|
|
25121
|
-
|
|
25122
|
-
|
|
25123
|
-
|
|
25124
|
-
|
|
25125
|
-
|
|
25126
|
-
|
|
25127
|
-
|
|
25128
|
-
|
|
25129
|
-
|
|
25130
|
-
|
|
25131
|
-
|
|
25132
|
-
|
|
25133
|
-
|
|
25134
|
-
|
|
25135
|
-
|
|
25136
|
-
|
|
25137
|
-
|
|
25138
|
-
|
|
25139
|
-
|
|
25140
|
-
|
|
25141
|
-
|
|
25142
|
-
|
|
25143
|
-
|
|
25144
|
-
|
|
25145
|
-
|
|
25146
|
-
|
|
25147
|
-
|
|
25148
|
-
|
|
25149
|
-
|
|
25150
|
-
|
|
25151
|
-
|
|
25152
|
-
|
|
25153
|
-
|
|
25154
|
-
|
|
25155
|
-
|
|
25156
|
-
|
|
25157
|
-
|
|
25158
|
-
|
|
25159
|
-
|
|
25160
|
-
|
|
25161
|
-
|
|
25162
|
-
|
|
25163
|
-
|
|
25164
|
-
|
|
25165
|
-
|
|
25166
|
-
|
|
25167
|
-
|
|
25168
|
-
|
|
25169
|
-
|
|
25170
|
-
|
|
25171
|
-
|
|
25172
|
-
|
|
25173
|
-
|
|
25174
|
-
|
|
25175
|
-
|
|
25176
|
-
|
|
25177
|
-
|
|
25178
|
-
|
|
25179
|
-
|
|
24990
|
+
EventModel as b$,
|
|
24991
|
+
StateTag as b0,
|
|
24992
|
+
DrawerShow as b1,
|
|
24993
|
+
Menu as b2,
|
|
24994
|
+
EditButton as b3,
|
|
24995
|
+
ReferenceLink as b4,
|
|
24996
|
+
ResourceLink as b5,
|
|
24997
|
+
NS_STORE_KEY as b6,
|
|
24998
|
+
ALL_NS as b7,
|
|
24999
|
+
useNamespacesFilter as b8,
|
|
25000
|
+
NamespacesFilter as b9,
|
|
25001
|
+
NETWORK_POLICY_INIT_VALUE as bA,
|
|
25002
|
+
CONFIG_MAP_INIT_VALUE as bB,
|
|
25003
|
+
SERVER_INSTANCE_INIT_VALUE as bC,
|
|
25004
|
+
TIMESTAMP_LABEL as bD,
|
|
25005
|
+
SECRET_OPAQUE_INIT_VALUE as bE,
|
|
25006
|
+
SECRET_IMAGE_REPO_INIT_VALUE as bF,
|
|
25007
|
+
SECRET_BASIC_AUTH_INIT_VALUE as bG,
|
|
25008
|
+
SECRET_SSH_AUTH_INIT_VALUE as bH,
|
|
25009
|
+
SECRET_TLS_INIT_VALUE as bI,
|
|
25010
|
+
SECRET_CUSTOM_INIT_VALUE as bJ,
|
|
25011
|
+
WorkloadState as bK,
|
|
25012
|
+
AccessControlAuth as bL,
|
|
25013
|
+
Dovetail as bM,
|
|
25014
|
+
RESOURCE_GROUP as bN,
|
|
25015
|
+
FormType as bO,
|
|
25016
|
+
ComponentContext as bP,
|
|
25017
|
+
GlobalStoreContext as bQ,
|
|
25018
|
+
ConfigsContext as bR,
|
|
25019
|
+
IngressModel as bS,
|
|
25020
|
+
NetworkPolicyModel as bT,
|
|
25021
|
+
JobModel as bU,
|
|
25022
|
+
WorkloadModel as bV,
|
|
25023
|
+
WorkloadBaseModel as bW,
|
|
25024
|
+
PodModel as bX,
|
|
25025
|
+
PodMetricsModel as bY,
|
|
25026
|
+
ResourceModel as bZ,
|
|
25027
|
+
CronJobModel as b_,
|
|
25028
|
+
FormModal as ba,
|
|
25029
|
+
RefineFormContent as bb,
|
|
25030
|
+
RefineFormPage as bc,
|
|
25031
|
+
SchemaStrategy as bd,
|
|
25032
|
+
YamlForm as be,
|
|
25033
|
+
useRefineForm as bf,
|
|
25034
|
+
ServiceInClusterAccessComponent as bg,
|
|
25035
|
+
ServiceOutClusterAccessComponent as bh,
|
|
25036
|
+
Tags as bi,
|
|
25037
|
+
TextTags as bj,
|
|
25038
|
+
PodLog as bk,
|
|
25039
|
+
NetworkPolicyRulesViewer as bl,
|
|
25040
|
+
Tabs as bm,
|
|
25041
|
+
BASE_INIT_VALUE as bn,
|
|
25042
|
+
DEPLOYMENT_INIT_VALUE as bo,
|
|
25043
|
+
CRONJOB_INIT_VALUE as bp,
|
|
25044
|
+
DAEMONSET_INIT_VALUE as bq,
|
|
25045
|
+
JOB_INIT_VALUE as br,
|
|
25046
|
+
STATEFULSET_INIT_VALUE as bs,
|
|
25047
|
+
POD_INIT_VALUE as bt,
|
|
25048
|
+
SERVICE_CLUSTER_IP_INIT_VALUE as bu,
|
|
25049
|
+
SERVICE_NODE_PORT_INIT_VALUE as bv,
|
|
25050
|
+
SERVICE_LOAD_BALANCER_INIT_VALUE as bw,
|
|
25051
|
+
SERVICE_EXTERNAL_NAME_INIT_VALUE as bx,
|
|
25052
|
+
SERVICE_HEADLESS_INIT_VALUE as by,
|
|
25053
|
+
INGRESS_INIT_VALUE as bz,
|
|
25180
25054
|
NameSpaceColumnRenderer as c,
|
|
25181
|
-
|
|
25182
|
-
|
|
25183
|
-
|
|
25184
|
-
|
|
25185
|
-
|
|
25186
|
-
|
|
25187
|
-
WorkloadBaseModel as c6,
|
|
25188
|
-
PodModel as c7,
|
|
25189
|
-
PodMetricsModel as c8,
|
|
25190
|
-
ResourceModel as c9,
|
|
25191
|
-
CronJobModel as ca,
|
|
25192
|
-
EventModel as cb,
|
|
25193
|
-
DeploymentModel as cc,
|
|
25194
|
-
DaemonSetModel as cd,
|
|
25195
|
-
StatefulSetModel as ce,
|
|
25196
|
-
ServiceTypeEnum as cf,
|
|
25197
|
-
ServiceModel as cg,
|
|
25198
|
-
NodeRole as ch,
|
|
25199
|
-
NodeModel as ci,
|
|
25200
|
-
StorageClassModel as cj,
|
|
25201
|
-
PersistentVolumeModel as ck,
|
|
25202
|
-
PersistentVolumeClaimModel as cl,
|
|
25203
|
-
ProviderPlugins as cm,
|
|
25055
|
+
DeploymentModel as c0,
|
|
25056
|
+
DaemonSetModel as c1,
|
|
25057
|
+
StatefulSetModel as c2,
|
|
25058
|
+
ServiceTypeEnum as c3,
|
|
25059
|
+
ServiceModel as c4,
|
|
25060
|
+
ProviderPlugins as c5,
|
|
25204
25061
|
dovetailRefineI18n as d,
|
|
25205
25062
|
WorkloadRestartsColumnRenderer as e,
|
|
25206
25063
|
NodeNameColumnRenderer as f,
|
|
@@ -25221,7 +25078,7 @@ export {
|
|
|
25221
25078
|
useNamespaceRefineFilter as u,
|
|
25222
25079
|
DataKeysColumnRenderer as v,
|
|
25223
25080
|
PortMappingColumnRenderer as w,
|
|
25224
|
-
|
|
25225
|
-
|
|
25226
|
-
|
|
25081
|
+
ColumnKeys as x,
|
|
25082
|
+
addDefaultRenderToColumns as y,
|
|
25083
|
+
useEagleTable as z
|
|
25227
25084
|
};
|