cdd-cli 3.1.4 → 3.1.5
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/.eslintrc.json +30 -0
- package/.github/workflows/docs.yml +35 -0
- package/CHANGELOG.md +37 -4
- package/README.md +26 -0
- package/dist/App.js +20 -3
- package/dist/components/ContainerCreationPrompt.js +27 -1
- package/dist/components/ContainerList.js +11 -15
- package/dist/components/ContainerRow.js +73 -14
- package/dist/components/ContainerSection.js +16 -2
- package/dist/components/Footer.js +7 -1
- package/dist/components/Header.js +17 -1
- package/dist/components/LogViewer.js +21 -3
- package/dist/components/MessageFeedback.js +15 -1
- package/dist/components/PromptField.js +31 -1
- package/dist/components/StatsBar.js +46 -8
- package/dist/components/UsageMenu.js +30 -1
- package/dist/helpers/actionHelpers.js +17 -6
- package/dist/helpers/constants.js +30 -0
- package/dist/helpers/dockerService/dockerService.js +19 -0
- package/dist/helpers/dockerService/serviceComponents/containerActions.js +194 -35
- package/dist/helpers/dockerService/serviceComponents/containerList.js +45 -8
- package/dist/helpers/dockerService/serviceComponents/containerLogs.js +16 -6
- package/dist/helpers/dockerService/serviceComponents/containerStats.js +28 -9
- package/dist/helpers/exitWithMessage.js +2 -1
- package/dist/helpers/logger.js +112 -0
- package/dist/helpers/safeCall.js +21 -0
- package/dist/helpers/validationHelpers.js +20 -1
- package/dist/hooks/creation/useContainerActions.js +2 -1
- package/dist/hooks/creation/useContainerCreation.js +5 -4
- package/dist/hooks/creation/useLogsViewer.js +3 -2
- package/dist/hooks/useContainers.js +6 -3
- package/dist/hooks/useControls.js +253 -122
- package/dist/hooks/useLogsStream.js +3 -2
- package/dist/index.js +1 -0
- package/docs/components_ContainerCreationPrompt.jsx.html +114 -0
- package/docs/components_ContainerRow.jsx.html +151 -0
- package/docs/components_ContainerSection.jsx.html +75 -0
- package/docs/components_Footer.jsx.html +66 -0
- package/docs/components_Header.jsx.html +84 -0
- package/docs/components_LogViewer.jsx.html +91 -0
- package/docs/components_MessageFeedback.jsx.html +76 -0
- package/docs/components_PromptField.jsx.html +99 -0
- package/docs/components_StatsBar.jsx.html +105 -0
- package/docs/components_UsageMenu.jsx.html +73 -0
- package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
- package/docs/global.html +6145 -0
- package/docs/helpers_actionHelpers.js.html +94 -0
- package/docs/helpers_constants.js.html +81 -0
- package/docs/helpers_dockerService_dockerService.js.html +79 -0
- package/docs/helpers_dockerService_serviceComponents_containerActions.js.html +153 -0
- package/docs/helpers_dockerService_serviceComponents_containerList.js.html +81 -0
- package/docs/helpers_dockerService_serviceComponents_containerLogs.js.html +85 -0
- package/docs/helpers_dockerService_serviceComponents_containerStats.js.html +107 -0
- package/docs/helpers_dockerService_serviceComponents_imageUtils.js.html +82 -0
- package/docs/helpers_exitWithMessage.js.html +77 -0
- package/docs/helpers_safeCall.js.html +68 -0
- package/docs/helpers_validationHelpers.js.html +96 -0
- package/docs/hooks_creation_useContainerActions.js.html +120 -0
- package/docs/hooks_creation_useContainerCreation.js.html +152 -0
- package/docs/hooks_creation_useLogsViewer.js.html +102 -0
- package/docs/hooks_useControls.js.html +298 -0
- package/docs/hooks_useLogsStream.js.html +82 -0
- package/docs/index.html +65 -0
- package/docs/index.js.html +65 -0
- package/docs/module-index.html +171 -0
- package/docs/scripts/linenumber.js +25 -0
- package/docs/scripts/prettify/Apache-License-2.0.txt +202 -0
- package/docs/scripts/prettify/lang-css.js +2 -0
- package/docs/scripts/prettify/prettify.js +28 -0
- package/docs/styles/jsdoc-default.css +358 -0
- package/docs/styles/prettify-jsdoc.css +111 -0
- package/docs/styles/prettify-tomorrow.css +132 -0
- package/fix-imports.cjs +33 -6
- package/jest.config.cjs +2 -1
- package/package.json +19 -9
- package/src/App.jsx +16 -2
- package/src/components/ContainerCreationPrompt.jsx +26 -0
- package/src/components/ContainerList.jsx +12 -13
- package/src/components/ContainerRow.jsx +55 -20
- package/src/components/ContainerSection.jsx +15 -1
- package/src/components/Footer.jsx +6 -1
- package/src/components/Header.jsx +16 -0
- package/src/components/LogViewer.jsx +19 -2
- package/src/components/MessageFeedback.jsx +14 -0
- package/src/components/PromptField.jsx +30 -0
- package/src/components/StatsBar.jsx +47 -8
- package/src/components/UsageMenu.jsx +38 -8
- package/src/helpers/actionHelpers.js +16 -7
- package/src/helpers/constants.js +30 -0
- package/src/helpers/dockerService/dockerService.js +19 -0
- package/src/helpers/dockerService/serviceComponents/containerActions.js +123 -12
- package/src/helpers/dockerService/serviceComponents/containerList.js +61 -23
- package/src/helpers/dockerService/serviceComponents/containerLogs.js +20 -6
- package/src/helpers/dockerService/serviceComponents/containerStats.js +24 -5
- package/src/helpers/dockerService/serviceComponents/imageUtils.js +1 -1
- package/src/helpers/exitWithMessage.js +2 -1
- package/src/helpers/logger.js +113 -0
- package/src/helpers/safeCall.js +18 -0
- package/src/helpers/validationHelpers.js +21 -3
- package/src/hooks/creation/useContainerActions.js +4 -3
- package/src/hooks/creation/useContainerCreation.js +5 -4
- package/src/hooks/creation/useLogsViewer.js +2 -1
- package/src/hooks/useContainers.js +6 -3
- package/src/hooks/useControls.js +244 -91
- package/src/hooks/useLogsStream.js +2 -1
- package/src/index.js +1 -0
- package/test/actionHelpers.test.js +106 -0
- package/test/containerActions.test.js +138 -0
- package/test/containerList.test.js +79 -0
- package/test/jest.setup.js +7 -0
- package/test/safeCall.test.js +25 -0
- package/test/useContainerCreation.dom.test.js +97 -0
- package/test/validationHelpers.test.js +2 -2
- package/dist/cdd.bundle.js +0 -8
- package/dist/components/ContainerCreator.js +0 -81
- package/dist/components/StatsViewer.js +0 -0
- package/dist/helpers/dockerActions.js +0 -64
- package/dist/helpers/dockerService.js +0 -284
- package/dist/hooks/useStatsPolling.js +0 -54
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'Open Sans';
|
|
3
|
+
font-weight: normal;
|
|
4
|
+
font-style: normal;
|
|
5
|
+
src: url('../fonts/OpenSans-Regular-webfont.eot');
|
|
6
|
+
src:
|
|
7
|
+
local('Open Sans'),
|
|
8
|
+
local('OpenSans'),
|
|
9
|
+
url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
|
|
10
|
+
url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
|
|
11
|
+
url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: 'Open Sans Light';
|
|
16
|
+
font-weight: normal;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
src: url('../fonts/OpenSans-Light-webfont.eot');
|
|
19
|
+
src:
|
|
20
|
+
local('Open Sans Light'),
|
|
21
|
+
local('OpenSans Light'),
|
|
22
|
+
url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
|
|
23
|
+
url('../fonts/OpenSans-Light-webfont.woff') format('woff'),
|
|
24
|
+
url('../fonts/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
html
|
|
28
|
+
{
|
|
29
|
+
overflow: auto;
|
|
30
|
+
background-color: #fff;
|
|
31
|
+
font-size: 14px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
body
|
|
35
|
+
{
|
|
36
|
+
font-family: 'Open Sans', sans-serif;
|
|
37
|
+
line-height: 1.5;
|
|
38
|
+
color: #4d4e53;
|
|
39
|
+
background-color: white;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
a, a:visited, a:active {
|
|
43
|
+
color: #0095dd;
|
|
44
|
+
text-decoration: none;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
a:hover {
|
|
48
|
+
text-decoration: underline;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
header
|
|
52
|
+
{
|
|
53
|
+
display: block;
|
|
54
|
+
padding: 0px 4px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
tt, code, kbd, samp {
|
|
58
|
+
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.class-description {
|
|
62
|
+
font-size: 130%;
|
|
63
|
+
line-height: 140%;
|
|
64
|
+
margin-bottom: 1em;
|
|
65
|
+
margin-top: 1em;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.class-description:empty {
|
|
69
|
+
margin: 0;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
#main {
|
|
73
|
+
float: left;
|
|
74
|
+
width: 70%;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
article dl {
|
|
78
|
+
margin-bottom: 40px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
article img {
|
|
82
|
+
max-width: 100%;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
section
|
|
86
|
+
{
|
|
87
|
+
display: block;
|
|
88
|
+
background-color: #fff;
|
|
89
|
+
padding: 12px 24px;
|
|
90
|
+
border-bottom: 1px solid #ccc;
|
|
91
|
+
margin-right: 30px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.variation {
|
|
95
|
+
display: none;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.signature-attributes {
|
|
99
|
+
font-size: 60%;
|
|
100
|
+
color: #aaa;
|
|
101
|
+
font-style: italic;
|
|
102
|
+
font-weight: lighter;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
nav
|
|
106
|
+
{
|
|
107
|
+
display: block;
|
|
108
|
+
float: right;
|
|
109
|
+
margin-top: 28px;
|
|
110
|
+
width: 30%;
|
|
111
|
+
box-sizing: border-box;
|
|
112
|
+
border-left: 1px solid #ccc;
|
|
113
|
+
padding-left: 16px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
nav ul {
|
|
117
|
+
font-family: 'Lucida Grande', 'Lucida Sans Unicode', arial, sans-serif;
|
|
118
|
+
font-size: 100%;
|
|
119
|
+
line-height: 17px;
|
|
120
|
+
padding: 0;
|
|
121
|
+
margin: 0;
|
|
122
|
+
list-style-type: none;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
nav ul a, nav ul a:visited, nav ul a:active {
|
|
126
|
+
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
|
127
|
+
line-height: 18px;
|
|
128
|
+
color: #4D4E53;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
nav h3 {
|
|
132
|
+
margin-top: 12px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
nav li {
|
|
136
|
+
margin-top: 6px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
footer {
|
|
140
|
+
display: block;
|
|
141
|
+
padding: 6px;
|
|
142
|
+
margin-top: 12px;
|
|
143
|
+
font-style: italic;
|
|
144
|
+
font-size: 90%;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
h1, h2, h3, h4 {
|
|
148
|
+
font-weight: 200;
|
|
149
|
+
margin: 0;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
h1
|
|
153
|
+
{
|
|
154
|
+
font-family: 'Open Sans Light', sans-serif;
|
|
155
|
+
font-size: 48px;
|
|
156
|
+
letter-spacing: -2px;
|
|
157
|
+
margin: 12px 24px 20px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
h2, h3.subsection-title
|
|
161
|
+
{
|
|
162
|
+
font-size: 30px;
|
|
163
|
+
font-weight: 700;
|
|
164
|
+
letter-spacing: -1px;
|
|
165
|
+
margin-bottom: 12px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
h3
|
|
169
|
+
{
|
|
170
|
+
font-size: 24px;
|
|
171
|
+
letter-spacing: -0.5px;
|
|
172
|
+
margin-bottom: 12px;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
h4
|
|
176
|
+
{
|
|
177
|
+
font-size: 18px;
|
|
178
|
+
letter-spacing: -0.33px;
|
|
179
|
+
margin-bottom: 12px;
|
|
180
|
+
color: #4d4e53;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
h5, .container-overview .subsection-title
|
|
184
|
+
{
|
|
185
|
+
font-size: 120%;
|
|
186
|
+
font-weight: bold;
|
|
187
|
+
letter-spacing: -0.01em;
|
|
188
|
+
margin: 8px 0 3px 0;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
h6
|
|
192
|
+
{
|
|
193
|
+
font-size: 100%;
|
|
194
|
+
letter-spacing: -0.01em;
|
|
195
|
+
margin: 6px 0 3px 0;
|
|
196
|
+
font-style: italic;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
table
|
|
200
|
+
{
|
|
201
|
+
border-spacing: 0;
|
|
202
|
+
border: 0;
|
|
203
|
+
border-collapse: collapse;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
td, th
|
|
207
|
+
{
|
|
208
|
+
border: 1px solid #ddd;
|
|
209
|
+
margin: 0px;
|
|
210
|
+
text-align: left;
|
|
211
|
+
vertical-align: top;
|
|
212
|
+
padding: 4px 6px;
|
|
213
|
+
display: table-cell;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
thead tr
|
|
217
|
+
{
|
|
218
|
+
background-color: #ddd;
|
|
219
|
+
font-weight: bold;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
th { border-right: 1px solid #aaa; }
|
|
223
|
+
tr > th:last-child { border-right: 1px solid #ddd; }
|
|
224
|
+
|
|
225
|
+
.ancestors, .attribs { color: #999; }
|
|
226
|
+
.ancestors a, .attribs a
|
|
227
|
+
{
|
|
228
|
+
color: #999 !important;
|
|
229
|
+
text-decoration: none;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.clear
|
|
233
|
+
{
|
|
234
|
+
clear: both;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.important
|
|
238
|
+
{
|
|
239
|
+
font-weight: bold;
|
|
240
|
+
color: #950B02;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.yes-def {
|
|
244
|
+
text-indent: -1000px;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.type-signature {
|
|
248
|
+
color: #aaa;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.name, .signature {
|
|
252
|
+
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.details { margin-top: 14px; border-left: 2px solid #DDD; }
|
|
256
|
+
.details dt { width: 120px; float: left; padding-left: 10px; padding-top: 6px; }
|
|
257
|
+
.details dd { margin-left: 70px; }
|
|
258
|
+
.details ul { margin: 0; }
|
|
259
|
+
.details ul { list-style-type: none; }
|
|
260
|
+
.details li { margin-left: 30px; padding-top: 6px; }
|
|
261
|
+
.details pre.prettyprint { margin: 0 }
|
|
262
|
+
.details .object-value { padding-top: 0; }
|
|
263
|
+
|
|
264
|
+
.description {
|
|
265
|
+
margin-bottom: 1em;
|
|
266
|
+
margin-top: 1em;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.code-caption
|
|
270
|
+
{
|
|
271
|
+
font-style: italic;
|
|
272
|
+
font-size: 107%;
|
|
273
|
+
margin: 0;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.source
|
|
277
|
+
{
|
|
278
|
+
border: 1px solid #ddd;
|
|
279
|
+
width: 80%;
|
|
280
|
+
overflow: auto;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.prettyprint.source {
|
|
284
|
+
width: inherit;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.source code
|
|
288
|
+
{
|
|
289
|
+
font-size: 100%;
|
|
290
|
+
line-height: 18px;
|
|
291
|
+
display: block;
|
|
292
|
+
padding: 4px 12px;
|
|
293
|
+
margin: 0;
|
|
294
|
+
background-color: #fff;
|
|
295
|
+
color: #4D4E53;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.prettyprint code span.line
|
|
299
|
+
{
|
|
300
|
+
display: inline-block;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.prettyprint.linenums
|
|
304
|
+
{
|
|
305
|
+
padding-left: 70px;
|
|
306
|
+
-webkit-user-select: none;
|
|
307
|
+
-moz-user-select: none;
|
|
308
|
+
-ms-user-select: none;
|
|
309
|
+
user-select: none;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.prettyprint.linenums ol
|
|
313
|
+
{
|
|
314
|
+
padding-left: 0;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.prettyprint.linenums li
|
|
318
|
+
{
|
|
319
|
+
border-left: 3px #ddd solid;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.prettyprint.linenums li.selected,
|
|
323
|
+
.prettyprint.linenums li.selected *
|
|
324
|
+
{
|
|
325
|
+
background-color: lightyellow;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.prettyprint.linenums li *
|
|
329
|
+
{
|
|
330
|
+
-webkit-user-select: text;
|
|
331
|
+
-moz-user-select: text;
|
|
332
|
+
-ms-user-select: text;
|
|
333
|
+
user-select: text;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.params .name, .props .name, .name code {
|
|
337
|
+
color: #4D4E53;
|
|
338
|
+
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
|
339
|
+
font-size: 100%;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.params td.description > p:first-child,
|
|
343
|
+
.props td.description > p:first-child
|
|
344
|
+
{
|
|
345
|
+
margin-top: 0;
|
|
346
|
+
padding-top: 0;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.params td.description > p:last-child,
|
|
350
|
+
.props td.description > p:last-child
|
|
351
|
+
{
|
|
352
|
+
margin-bottom: 0;
|
|
353
|
+
padding-bottom: 0;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.disabled {
|
|
357
|
+
color: #454545;
|
|
358
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/* JSDoc prettify.js theme */
|
|
2
|
+
|
|
3
|
+
/* plain text */
|
|
4
|
+
.pln {
|
|
5
|
+
color: #000000;
|
|
6
|
+
font-weight: normal;
|
|
7
|
+
font-style: normal;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* string content */
|
|
11
|
+
.str {
|
|
12
|
+
color: #006400;
|
|
13
|
+
font-weight: normal;
|
|
14
|
+
font-style: normal;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* a keyword */
|
|
18
|
+
.kwd {
|
|
19
|
+
color: #000000;
|
|
20
|
+
font-weight: bold;
|
|
21
|
+
font-style: normal;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* a comment */
|
|
25
|
+
.com {
|
|
26
|
+
font-weight: normal;
|
|
27
|
+
font-style: italic;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* a type name */
|
|
31
|
+
.typ {
|
|
32
|
+
color: #000000;
|
|
33
|
+
font-weight: normal;
|
|
34
|
+
font-style: normal;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* a literal value */
|
|
38
|
+
.lit {
|
|
39
|
+
color: #006400;
|
|
40
|
+
font-weight: normal;
|
|
41
|
+
font-style: normal;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* punctuation */
|
|
45
|
+
.pun {
|
|
46
|
+
color: #000000;
|
|
47
|
+
font-weight: bold;
|
|
48
|
+
font-style: normal;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* lisp open bracket */
|
|
52
|
+
.opn {
|
|
53
|
+
color: #000000;
|
|
54
|
+
font-weight: bold;
|
|
55
|
+
font-style: normal;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* lisp close bracket */
|
|
59
|
+
.clo {
|
|
60
|
+
color: #000000;
|
|
61
|
+
font-weight: bold;
|
|
62
|
+
font-style: normal;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/* a markup tag name */
|
|
66
|
+
.tag {
|
|
67
|
+
color: #006400;
|
|
68
|
+
font-weight: normal;
|
|
69
|
+
font-style: normal;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/* a markup attribute name */
|
|
73
|
+
.atn {
|
|
74
|
+
color: #006400;
|
|
75
|
+
font-weight: normal;
|
|
76
|
+
font-style: normal;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/* a markup attribute value */
|
|
80
|
+
.atv {
|
|
81
|
+
color: #006400;
|
|
82
|
+
font-weight: normal;
|
|
83
|
+
font-style: normal;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* a declaration */
|
|
87
|
+
.dec {
|
|
88
|
+
color: #000000;
|
|
89
|
+
font-weight: bold;
|
|
90
|
+
font-style: normal;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/* a variable name */
|
|
94
|
+
.var {
|
|
95
|
+
color: #000000;
|
|
96
|
+
font-weight: normal;
|
|
97
|
+
font-style: normal;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* a function name */
|
|
101
|
+
.fun {
|
|
102
|
+
color: #000000;
|
|
103
|
+
font-weight: bold;
|
|
104
|
+
font-style: normal;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* Specify class=linenums on a pre to get line numbering */
|
|
108
|
+
ol.linenums {
|
|
109
|
+
margin-top: 0;
|
|
110
|
+
margin-bottom: 0;
|
|
111
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/* Tomorrow Theme */
|
|
2
|
+
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
|
3
|
+
/* Pretty printing styles. Used with prettify.js. */
|
|
4
|
+
/* SPAN elements with the classes below are added by prettyprint. */
|
|
5
|
+
/* plain text */
|
|
6
|
+
.pln {
|
|
7
|
+
color: #4d4d4c; }
|
|
8
|
+
|
|
9
|
+
@media screen {
|
|
10
|
+
/* string content */
|
|
11
|
+
.str {
|
|
12
|
+
color: #718c00; }
|
|
13
|
+
|
|
14
|
+
/* a keyword */
|
|
15
|
+
.kwd {
|
|
16
|
+
color: #8959a8; }
|
|
17
|
+
|
|
18
|
+
/* a comment */
|
|
19
|
+
.com {
|
|
20
|
+
color: #8e908c; }
|
|
21
|
+
|
|
22
|
+
/* a type name */
|
|
23
|
+
.typ {
|
|
24
|
+
color: #4271ae; }
|
|
25
|
+
|
|
26
|
+
/* a literal value */
|
|
27
|
+
.lit {
|
|
28
|
+
color: #f5871f; }
|
|
29
|
+
|
|
30
|
+
/* punctuation */
|
|
31
|
+
.pun {
|
|
32
|
+
color: #4d4d4c; }
|
|
33
|
+
|
|
34
|
+
/* lisp open bracket */
|
|
35
|
+
.opn {
|
|
36
|
+
color: #4d4d4c; }
|
|
37
|
+
|
|
38
|
+
/* lisp close bracket */
|
|
39
|
+
.clo {
|
|
40
|
+
color: #4d4d4c; }
|
|
41
|
+
|
|
42
|
+
/* a markup tag name */
|
|
43
|
+
.tag {
|
|
44
|
+
color: #c82829; }
|
|
45
|
+
|
|
46
|
+
/* a markup attribute name */
|
|
47
|
+
.atn {
|
|
48
|
+
color: #f5871f; }
|
|
49
|
+
|
|
50
|
+
/* a markup attribute value */
|
|
51
|
+
.atv {
|
|
52
|
+
color: #3e999f; }
|
|
53
|
+
|
|
54
|
+
/* a declaration */
|
|
55
|
+
.dec {
|
|
56
|
+
color: #f5871f; }
|
|
57
|
+
|
|
58
|
+
/* a variable name */
|
|
59
|
+
.var {
|
|
60
|
+
color: #c82829; }
|
|
61
|
+
|
|
62
|
+
/* a function name */
|
|
63
|
+
.fun {
|
|
64
|
+
color: #4271ae; } }
|
|
65
|
+
/* Use higher contrast and text-weight for printable form. */
|
|
66
|
+
@media print, projection {
|
|
67
|
+
.str {
|
|
68
|
+
color: #060; }
|
|
69
|
+
|
|
70
|
+
.kwd {
|
|
71
|
+
color: #006;
|
|
72
|
+
font-weight: bold; }
|
|
73
|
+
|
|
74
|
+
.com {
|
|
75
|
+
color: #600;
|
|
76
|
+
font-style: italic; }
|
|
77
|
+
|
|
78
|
+
.typ {
|
|
79
|
+
color: #404;
|
|
80
|
+
font-weight: bold; }
|
|
81
|
+
|
|
82
|
+
.lit {
|
|
83
|
+
color: #044; }
|
|
84
|
+
|
|
85
|
+
.pun, .opn, .clo {
|
|
86
|
+
color: #440; }
|
|
87
|
+
|
|
88
|
+
.tag {
|
|
89
|
+
color: #006;
|
|
90
|
+
font-weight: bold; }
|
|
91
|
+
|
|
92
|
+
.atn {
|
|
93
|
+
color: #404; }
|
|
94
|
+
|
|
95
|
+
.atv {
|
|
96
|
+
color: #060; } }
|
|
97
|
+
/* Style */
|
|
98
|
+
/*
|
|
99
|
+
pre.prettyprint {
|
|
100
|
+
background: white;
|
|
101
|
+
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
|
102
|
+
font-size: 12px;
|
|
103
|
+
line-height: 1.5;
|
|
104
|
+
border: 1px solid #ccc;
|
|
105
|
+
padding: 10px; }
|
|
106
|
+
*/
|
|
107
|
+
|
|
108
|
+
/* Specify class=linenums on a pre to get line numbering */
|
|
109
|
+
ol.linenums {
|
|
110
|
+
margin-top: 0;
|
|
111
|
+
margin-bottom: 0; }
|
|
112
|
+
|
|
113
|
+
/* IE indents via margin-left */
|
|
114
|
+
li.L0,
|
|
115
|
+
li.L1,
|
|
116
|
+
li.L2,
|
|
117
|
+
li.L3,
|
|
118
|
+
li.L4,
|
|
119
|
+
li.L5,
|
|
120
|
+
li.L6,
|
|
121
|
+
li.L7,
|
|
122
|
+
li.L8,
|
|
123
|
+
li.L9 {
|
|
124
|
+
/* */ }
|
|
125
|
+
|
|
126
|
+
/* Alternate shading for lines */
|
|
127
|
+
li.L1,
|
|
128
|
+
li.L3,
|
|
129
|
+
li.L5,
|
|
130
|
+
li.L7,
|
|
131
|
+
li.L9 {
|
|
132
|
+
/* */ }
|
package/fix-imports.cjs
CHANGED
|
@@ -2,14 +2,41 @@
|
|
|
2
2
|
const fs = require('fs');
|
|
3
3
|
const path = require('path');
|
|
4
4
|
|
|
5
|
+
function needsExtension(p) {
|
|
6
|
+
// already has a known extension
|
|
7
|
+
return !/\.(js|jsx|mjs|json)$/.test(p);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
function normalizePath(p) {
|
|
11
|
+
return needsExtension(p) ? p + '.js' : p;
|
|
12
|
+
}
|
|
13
|
+
|
|
5
14
|
function addJsExtensionToImports(filePath) {
|
|
6
15
|
let code = fs.readFileSync(filePath, 'utf8');
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
code = code.replace(/
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
16
|
+
|
|
17
|
+
// from '...'
|
|
18
|
+
code = code.replace(/from\s+(['"])(\.{1,2}\/[^'"\)]+?)\1/g, (m, quote, p) => {
|
|
19
|
+
return `from ${quote}${normalizePath(p)}${quote}`;
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
// side-effect imports: import '...';
|
|
23
|
+
code = code.replace(/(^|\n)\s*import\s+(['"])(\.{1,2}\/[^'"\)]+?)\2/gm, (m, pre, quote, p) => {
|
|
24
|
+
return `${pre}import ${quote}${normalizePath(p)}${quote}`;
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
// export ... from '...'
|
|
28
|
+
code = code.replace(/export[\s\S]*?from\s+(['"])(\.{1,2}\/[^'"\)]+?)\1/g, (m, quote, p) => {
|
|
29
|
+
return m.replace(p, normalizePath(p));
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
// dynamic imports import('...')
|
|
33
|
+
code = code.replace(/import\(\s*(['"])(\.{1,2}\/[^'"\)]+?)\1\s*\)/g, (m, quote, p) => {
|
|
34
|
+
return `import(${quote}${normalizePath(p)}${quote})`;
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
// Convert any remaining .jsx import specifiers to .js
|
|
38
|
+
code = code.replace(/(['"])(\.{1,2}\/[^'"\s]+?)\.jsx\1/g, (m, q, p) => `${q}${p}.js${q}`);
|
|
39
|
+
|
|
13
40
|
fs.writeFileSync(filePath, code, 'utf8');
|
|
14
41
|
}
|
|
15
42
|
|
package/jest.config.cjs
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cdd-cli",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.5",
|
|
4
4
|
"description": "CLI Docker Dashboard",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --runInBand",
|
|
8
|
+
"build": "babel src --out-dir dist --extensions .js,.jsx && node fix-imports.cjs",
|
|
9
|
+
"changes": "npm run build && node dist/index.js",
|
|
10
|
+
"lint": "eslint src --ext .js,.jsx",
|
|
11
|
+
"docs": "jsdoc -r -d docs src"
|
|
10
12
|
},
|
|
11
13
|
"keywords": [],
|
|
12
14
|
"author": "",
|
|
@@ -16,19 +18,27 @@
|
|
|
16
18
|
"chalk": "^5.6.2",
|
|
17
19
|
"dockerode": "^4.0.9",
|
|
18
20
|
"ink": "^6.3.1",
|
|
19
|
-
"react": "^19.2.0"
|
|
21
|
+
"react": "^19.2.0",
|
|
22
|
+
"react-dom": "^19.2.0"
|
|
20
23
|
},
|
|
21
24
|
"bin": {
|
|
22
|
-
"cdd": "
|
|
25
|
+
"cdd": "dist/index.js"
|
|
23
26
|
},
|
|
24
27
|
"devDependencies": {
|
|
25
28
|
"@babel/cli": "^7.28.3",
|
|
26
29
|
"@babel/core": "^7.28.4",
|
|
30
|
+
"@babel/preset-env": "^7.22.20",
|
|
31
|
+
"@babel/preset-react": "^7.22.5",
|
|
32
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
33
|
+
"@testing-library/react": "^16.3.0",
|
|
34
|
+
"babel-jest": "^29.6.1",
|
|
27
35
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
28
36
|
"esbuild": "^0.25.11",
|
|
37
|
+
"eslint": "^8.50.0",
|
|
38
|
+
"eslint-plugin-react": "^7.37.5",
|
|
29
39
|
"jest": "^29.6.1",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
40
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
41
|
+
"jsdoc": "^4.0.5",
|
|
42
|
+
"prop-types": "^15.8.1"
|
|
33
43
|
}
|
|
34
44
|
}
|