foreman_remote_execution 15.0.1 → 16.0.0

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.
Files changed (100) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +12 -12
  3. data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +3 -3
  4. data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +11 -11
  5. data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +82 -82
  6. data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +82 -82
  7. data/app/assets/javascripts/foreman_remote_execution/locale/ka/foreman_remote_execution.js +13 -13
  8. data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +79 -79
  9. data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +10 -10
  10. data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +12 -12
  11. data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +73 -73
  12. data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +10 -10
  13. data/app/controllers/api/v2/job_templates_controller.rb +3 -0
  14. data/app/views/api/v2/job_invocations/main.json.rabl +1 -1
  15. data/app/views/job_invocations/_form.html.erb +2 -2
  16. data/app/views/template_invocations/_refresh.js.erb +2 -2
  17. data/lib/foreman_remote_execution/engine.rb +2 -2
  18. data/lib/foreman_remote_execution/version.rb +1 -1
  19. data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  20. data/locale/de/foreman_remote_execution.po +12 -12
  21. data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  22. data/locale/en_GB/foreman_remote_execution.po +3 -3
  23. data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  24. data/locale/es/foreman_remote_execution.po +11 -11
  25. data/locale/foreman_remote_execution.pot +138 -135
  26. data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  27. data/locale/fr/foreman_remote_execution.po +82 -82
  28. data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  29. data/locale/ja/foreman_remote_execution.po +82 -82
  30. data/locale/ka/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  31. data/locale/ka/foreman_remote_execution.po +13 -13
  32. data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  33. data/locale/ko/foreman_remote_execution.po +79 -79
  34. data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  35. data/locale/pt_BR/foreman_remote_execution.po +10 -10
  36. data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  37. data/locale/ru/foreman_remote_execution.po +12 -12
  38. data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  39. data/locale/zh_CN/foreman_remote_execution.po +73 -73
  40. data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  41. data/locale/zh_TW/foreman_remote_execution.po +10 -10
  42. data/package.json +8 -7
  43. data/webpack/JobInvocationDetail/JobAdditionInfo.js +4 -4
  44. data/webpack/JobInvocationDetail/JobInvocationDetail.scss +5 -5
  45. data/webpack/JobInvocationDetail/JobInvocationHostTable.js +7 -4
  46. data/webpack/JobInvocationDetail/JobInvocationHostTableToolbar.js +8 -3
  47. data/webpack/JobInvocationDetail/JobInvocationToolbarButtons.js +3 -5
  48. data/webpack/JobInvocationDetail/TemplateInvocationComponents/OutputToggleGroup.js +1 -1
  49. data/webpack/JobInvocationDetail/TemplateInvocationComponents/PreviewTemplate.js +3 -10
  50. data/webpack/JobInvocationDetail/TemplateInvocationComponents/TemplateActionButtons.js +11 -12
  51. data/webpack/JobInvocationDetail/TemplateInvocationComponents/index.scss +3 -0
  52. data/webpack/JobInvocationDetail/__tests__/MainInformation.test.js +6 -6
  53. data/webpack/JobInvocationDetail/__tests__/TemplateInvocation.test.js +1 -1
  54. data/webpack/JobInvocationDetail/__tests__/fixtures.js +1 -0
  55. data/webpack/JobInvocationDetail/index.js +14 -13
  56. data/webpack/JobWizard/Footer.js +2 -4
  57. data/webpack/JobWizard/JobWizard.js +1 -1
  58. data/webpack/JobWizard/JobWizard.scss +19 -19
  59. data/webpack/JobWizard/JobWizardPageRerun.js +22 -16
  60. data/webpack/JobWizard/PermissionDenied.js +15 -11
  61. data/webpack/JobWizard/__tests__/integration.test.js +10 -8
  62. data/webpack/JobWizard/steps/AdvancedFields/DescriptionField.js +26 -14
  63. data/webpack/JobWizard/steps/AdvancedFields/Fields.js +6 -6
  64. data/webpack/JobWizard/steps/AdvancedFields/__tests__/AdvancedFields.test.js +14 -12
  65. data/webpack/JobWizard/steps/HostsAndInputs/SelectAPI.js +1 -1
  66. data/webpack/JobWizard/steps/HostsAndInputs/SelectGQL.js +1 -1
  67. data/webpack/JobWizard/steps/HostsAndInputs/__tests__/HostsAndInputs.test.js +5 -5
  68. data/webpack/JobWizard/steps/HostsAndInputs/index.js +41 -36
  69. data/webpack/JobWizard/steps/ReviewDetails/ReviewDetails.test.js +3 -3
  70. data/webpack/JobWizard/steps/ReviewDetails/index.js +1 -1
  71. data/webpack/JobWizard/steps/Schedule/PurposeField.js +1 -1
  72. data/webpack/JobWizard/steps/Schedule/QueryType.js +3 -3
  73. data/webpack/JobWizard/steps/Schedule/RepeatCron.js +1 -1
  74. data/webpack/JobWizard/steps/Schedule/RepeatDaily.js +1 -1
  75. data/webpack/JobWizard/steps/Schedule/RepeatHour.js +6 -4
  76. data/webpack/JobWizard/steps/Schedule/RepeatMonth.js +1 -1
  77. data/webpack/JobWizard/steps/Schedule/RepeatWeek.js +1 -1
  78. data/webpack/JobWizard/steps/Schedule/ScheduleFuture.js +10 -3
  79. data/webpack/JobWizard/steps/Schedule/ScheduleRecurring.js +29 -19
  80. data/webpack/JobWizard/steps/form/DateTimePicker.js +1 -1
  81. data/webpack/JobWizard/steps/form/FormHelpers.js +7 -4
  82. data/webpack/JobWizard/steps/form/Formatter.js +3 -1
  83. data/webpack/JobWizard/steps/form/GroupedSelectField.js +3 -3
  84. data/webpack/JobWizard/steps/form/NumberInput.js +17 -7
  85. data/webpack/JobWizard/steps/form/ResourceSelect.js +8 -4
  86. data/webpack/JobWizard/steps/form/SearchSelect.js +6 -2
  87. data/webpack/JobWizard/steps/form/SelectField.js +3 -2
  88. data/webpack/react_app/components/FeaturesDropdown/index.js +1 -1
  89. data/webpack/react_app/components/FeaturesDropdown/index.scss +2 -2
  90. data/webpack/react_app/components/HostKebab/KebabItems.js +1 -1
  91. data/webpack/react_app/components/RecentJobsCard/RecentJobsCard.js +2 -1
  92. data/webpack/react_app/components/RecentJobsCard/RecentJobsTable.js +3 -3
  93. data/webpack/react_app/components/RecentJobsCard/styles.scss +3 -3
  94. data/webpack/react_app/components/RegistrationExtension/RexInterface.js +5 -3
  95. data/webpack/react_app/components/RegistrationExtension/RexPull.js +1 -1
  96. data/webpack/react_app/components/RegistrationExtension/__tests__/__snapshots__/RexInterface.test.js.snap +6 -6
  97. metadata +3 -5
  98. data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +0 -1842
  99. data/locale/en/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  100. data/locale/en/foreman_remote_execution.po +0 -1840
@@ -5,7 +5,7 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_remote_execution 15.0.0\n"
8
+ "Project-Id-Version: foreman_remote_execution 15.0.1\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "PO-Revision-Date: 2016-02-15 13:54+0000\n"
11
11
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
@@ -233,7 +233,7 @@ msgid "Cockpit URL"
233
233
  msgstr ""
234
234
 
235
235
  msgid "Command"
236
- msgstr ""
236
+ msgstr "指令"
237
237
 
238
238
  msgid "Concurrency level"
239
239
  msgstr "同步等級"
@@ -323,7 +323,7 @@ msgid "Cronline"
323
323
  msgstr ""
324
324
 
325
325
  msgid "Current iteration"
326
- msgstr ""
326
+ msgstr "現有重述"
327
327
 
328
328
  msgid "Current location %s is different from job's location %s. This job may run on different hosts than before."
329
329
  msgstr ""
@@ -674,7 +674,7 @@ msgid "Invocation type, one of %s"
674
674
  msgstr "祈願類型,%s 之一"
675
675
 
676
676
  msgid "Iteration limit"
677
- msgstr ""
677
+ msgstr "重述限制"
678
678
 
679
679
  msgid "Job"
680
680
  msgstr "工作"
@@ -767,7 +767,7 @@ msgid "Last execution succeeded"
767
767
  msgstr "最後的執行成功"
768
768
 
769
769
  msgid "Last occurrence"
770
- msgstr ""
770
+ msgstr "最後一次發生"
771
771
 
772
772
  msgid "Latest Jobs"
773
773
  msgstr ""
@@ -845,7 +845,7 @@ msgid "Next"
845
845
  msgstr "下一步"
846
846
 
847
847
  msgid "Next occurrence"
848
- msgstr ""
848
+ msgstr "下次發生"
849
849
 
850
850
  msgid "No (override)"
851
851
  msgstr ""
@@ -1094,7 +1094,7 @@ msgid "Repeat amount can only be a positive number"
1094
1094
  msgstr ""
1095
1095
 
1096
1096
  msgid "Repeat until"
1097
- msgstr ""
1097
+ msgstr "重複直到"
1098
1098
 
1099
1099
  msgid "Repeats"
1100
1100
  msgstr "重複"
@@ -1316,7 +1316,7 @@ msgid "Skip to review step"
1316
1316
  msgstr ""
1317
1317
 
1318
1318
  msgid "Smart proxy"
1319
- msgstr ""
1319
+ msgstr "智慧代理"
1320
1320
 
1321
1321
  msgid "Snippet"
1322
1322
  msgstr "程式碼片段"
@@ -1418,7 +1418,7 @@ msgid "Task cancelled"
1418
1418
  msgstr ""
1419
1419
 
1420
1420
  msgid "Task count"
1421
- msgstr ""
1421
+ msgstr "工作數量"
1422
1422
 
1423
1423
  msgid "Task for the host cancelled succesfully"
1424
1424
  msgstr ""
@@ -1603,7 +1603,7 @@ msgid "Unable to save template. Correct highlighted errors"
1603
1603
  msgstr ""
1604
1604
 
1605
1605
  msgid "Unknown"
1606
- msgstr ""
1606
+ msgstr "不明"
1607
1607
 
1608
1608
  msgid "Unknown execution status"
1609
1609
  msgstr "未知的執行狀態"
data/package.json CHANGED
@@ -19,20 +19,21 @@
19
19
  },
20
20
  "devDependencies": {
21
21
  "@babel/core": "^7.7.0",
22
- "@theforeman/builder": ">= 12.0.1",
23
- "@theforeman/eslint-plugin-foreman": ">= 12.0.1",
24
- "@theforeman/eslint-plugin-rules": ">= 12.0.2",
25
- "@theforeman/test": ">= 12.0.1",
26
- "@theforeman/vendor-dev": ">= 12.0.1",
22
+ "@theforeman/builder": ">= 15.0.1",
23
+ "@theforeman/eslint-plugin-foreman": ">= 15.0.1",
24
+ "@theforeman/eslint-plugin-rules": ">= 15.0.1",
25
+ "@theforeman/test": ">= 15.0.1",
26
+ "@theforeman/vendor-dev": ">= 15.0.1",
27
27
  "babel-eslint": "^10.0.0",
28
28
  "eslint": "^6.8.0",
29
29
  "prettier": "^1.19.1",
30
30
  "redux-mock-store": "^1.2.2",
31
31
  "graphql-tag": "^2.11.0",
32
32
  "graphql": "^15.5.0",
33
- "victory-core": "~36.8.6"
33
+ "victory-core": "~36.8.6",
34
+ "victory-pie": "~36.8.6"
34
35
  },
35
36
  "peerDependencies": {
36
- "@theforeman/vendor": ">= 12.0.1"
37
+ "@theforeman/vendor": ">= 15.0.1"
37
38
  }
38
39
  }
@@ -69,7 +69,7 @@ const Schedule = ({ data }) => {
69
69
  return (
70
70
  <ExpandableSection
71
71
  toggleText={__('Schedule')}
72
- onToggle={setIsExpanded}
72
+ onToggle={(_event, val) => setIsExpanded(val)}
73
73
  isExpanded={isExpanded}
74
74
  >
75
75
  <DataList isCompact>
@@ -107,7 +107,7 @@ const Recurring = ({ data }) => {
107
107
  return (
108
108
  <ExpandableSection
109
109
  toggleText={__('Recurring logic')}
110
- onToggle={setIsExpanded}
110
+ onToggle={(_event, val) => setIsExpanded(val)}
111
111
  isExpanded={isExpanded}
112
112
  >
113
113
  <DataList isCompact>
@@ -149,7 +149,7 @@ const TargetHosts = ({ data }) => {
149
149
  return (
150
150
  <ExpandableSection
151
151
  toggleText={__('Target Hosts')}
152
- onToggle={setIsExpanded}
152
+ onToggle={(_event, val) => setIsExpanded(val)}
153
153
  isExpanded={isExpanded}
154
154
  >
155
155
  <span>{targetingSelectioning}</span>{' '}
@@ -173,7 +173,7 @@ const Inputs = ({ data }) => {
173
173
  return (
174
174
  <ExpandableSection
175
175
  toggleText={__('User Inputs')}
176
- onToggle={setIsExpanded}
176
+ onToggle={(_event, val) => setIsExpanded(val)}
177
177
  isExpanded={isExpanded}
178
178
  >
179
179
  <DataList isCompact>
@@ -15,22 +15,22 @@
15
15
 
16
16
  .legend-title {
17
17
  font-weight: bold;
18
- font-size: var(--pf-global--FontSize--sm);
18
+ font-size: var(--pf-v5-global--FontSize--sm);
19
19
  margin-left: 8px;
20
20
  margin-bottom: 0;
21
21
  }
22
22
 
23
- .pf-c-description-list {
23
+ .pf-v5-c-description-list {
24
24
  margin-left: 8px;
25
25
  margin-top: 8px;
26
26
 
27
- .pf-c-description-list__term .pf-c-description-list__text {
27
+ .pf-v5-c-description-list__term .pf-v5-c-description-list__text {
28
28
  font-weight: normal;
29
29
  }
30
30
  }
31
31
  }
32
32
 
33
- .pf-c-divider {
33
+ .pf-v5-c-divider {
34
34
  max-height: $chart_size;
35
35
  }
36
36
 
@@ -104,7 +104,7 @@
104
104
  margin-top: 10px;
105
105
  }
106
106
 
107
- .pf-c-toggle-group {
107
+ .pf-v5-c-toggle-group {
108
108
  margin-bottom: 10px;
109
109
  }
110
110
  }
@@ -6,10 +6,10 @@ import { translate as __ } from 'foremanReact/common/I18n';
6
6
  import { FormattedMessage } from 'react-intl';
7
7
  import { Tr, Td, Tbody, ExpandableRowContent } from '@patternfly/react-table';
8
8
  import {
9
- Title,
10
9
  EmptyState,
11
10
  EmptyStateVariant,
12
11
  EmptyStateBody,
12
+ EmptyStateHeader,
13
13
  } from '@patternfly/react-core';
14
14
  import { foremanUrl } from 'foremanReact/common/helpers';
15
15
  import { useAPI } from 'foremanReact/common/hooks/API/APIHooks';
@@ -163,9 +163,10 @@ const JobInvocationHostTable = ({
163
163
  <span className="empty-state-icon">
164
164
  <Icon name="add-circle-o" type="pf" size="2x" />
165
165
  </span>
166
- <Title ouiaId="empty-state-header" headingLevel="h5" size="4xl">
167
- {__('No Results')}
168
- </Title>
166
+ <EmptyStateHeader
167
+ titleText={<>{__('No Results')}</>}
168
+ headingLevel="h5"
169
+ />
169
170
  <EmptyStateBody>
170
171
  <div className="empty-state-description">
171
172
  {targeting?.targeting_type === 'dynamic_query' ? (
@@ -217,10 +218,12 @@ const JobInvocationHostTable = ({
217
218
  setShowAlert={setShowAlert}
218
219
  results={results}
219
220
  id={id}
221
+ key="OpenAlInvocations"
220
222
  />,
221
223
  <JobInvocationHostTableToolbar
222
224
  dropdownFilter={selectedFilter}
223
225
  setDropdownFilter={wrapSetSelectedFilter}
226
+ key="JobInvocationHostTableToolbar"
224
227
  />,
225
228
  ]}
226
229
  >
@@ -1,8 +1,13 @@
1
1
  import React from 'react';
2
2
  import PropTypes from 'prop-types';
3
3
  import { translate as __ } from 'foremanReact/common/I18n';
4
- import { Select, SelectOption, SelectList } from '@patternfly/react-core/next'; // remove "/next" after switching to PF5
5
- import { MenuToggle, ToolbarItem } from '@patternfly/react-core';
4
+ import {
5
+ MenuToggle,
6
+ ToolbarItem,
7
+ Select,
8
+ SelectOption,
9
+ SelectList,
10
+ } from '@patternfly/react-core';
6
11
  import { STATUS_TITLES } from './JobInvocationConstants';
7
12
 
8
13
  const JobInvocationHostTableToolbar = ({
@@ -43,7 +48,7 @@ const JobInvocationHostTableToolbar = ({
43
48
  {Object.values(STATUS_TITLES).map(result => (
44
49
  <SelectOption
45
50
  key={result.id}
46
- itemId={result.id}
51
+ value={result.id}
47
52
  isSelected={result.id === dropdownFilter}
48
53
  >
49
54
  {result.title}
@@ -1,16 +1,14 @@
1
1
  import PropTypes from 'prop-types';
2
2
  import React, { useEffect, useState } from 'react';
3
3
  import { useDispatch, useSelector } from 'react-redux';
4
+ import { Button, Split, SplitItem } from '@patternfly/react-core';
4
5
  import {
5
- Button,
6
6
  Dropdown,
7
7
  DropdownItem,
8
8
  DropdownPosition,
9
9
  DropdownSeparator,
10
10
  DropdownToggle,
11
- Split,
12
- SplitItem,
13
- } from '@patternfly/react-core';
11
+ } from '@patternfly/react-core/deprecated';
14
12
  import { translate as __ } from 'foremanReact/common/I18n';
15
13
  import { foremanUrl } from 'foremanReact/common/helpers';
16
14
  import { STATUS as APIStatus } from 'foremanReact/constants';
@@ -242,7 +240,7 @@ const JobInvocationToolbarButtons = ({
242
240
  </Button>,
243
241
  ]}
244
242
  splitButtonVariant="action"
245
- onToggle={setIsActionOpen}
243
+ onToggle={(_event, val) => setIsActionOpen(val)}
246
244
  />
247
245
  }
248
246
  isOpen={isActionOpen}
@@ -97,7 +97,7 @@ export const OutputToggleGroup = ({
97
97
  text={text}
98
98
  buttonId={id}
99
99
  isSelected={isSelected}
100
- onChange={onClick}
100
+ onChange={(_event, val) => onClick(val)}
101
101
  />
102
102
  )
103
103
  )}
@@ -1,18 +1,11 @@
1
1
  import React from 'react';
2
2
  import PropTypes from 'prop-types';
3
- import {
4
- TableComposable,
5
- Thead,
6
- Tr,
7
- Th,
8
- Tbody,
9
- Td,
10
- } from '@patternfly/react-table';
3
+ import { Table, Thead, Tr, Th, Tbody, Td } from '@patternfly/react-table';
11
4
  import { translate as __ } from 'foremanReact/common/I18n';
12
5
 
13
6
  export const PreviewTemplate = ({ inputValues }) =>
14
7
  inputValues.length ? (
15
- <TableComposable
8
+ <Table
16
9
  ouiaId="template-invocation-preview-table"
17
10
  isStriped
18
11
  variant="compact"
@@ -36,7 +29,7 @@ export const PreviewTemplate = ({ inputValues }) =>
36
29
  </Tr>
37
30
  ))}
38
31
  </Tbody>
39
- </TableComposable>
32
+ </Table>
40
33
  ) : (
41
34
  <span>{__('No user input')}</span>
42
35
  );
@@ -7,6 +7,7 @@ import { APIActions } from 'foremanReact/redux/API';
7
7
  import { addToast } from 'foremanReact/components/ToastsList';
8
8
  import { translate as __ } from 'foremanReact/common/I18n';
9
9
  import { selectTemplateInvocation } from '../JobInvocationSelectors';
10
+ import './index.scss';
10
11
 
11
12
  const actions = ({
12
13
  taskID,
@@ -96,17 +97,15 @@ export const RowActions = ({ hostID, jobID }) => {
96
97
  permissions,
97
98
  dispatch,
98
99
  });
100
+
99
101
  const rowActions = Object.values(getActions)
100
- .map(({ text, onClick, href, permission, isDisabled }) =>
102
+ .map(({ text, href, onClick, permission, isDisabled }) =>
101
103
  permission
102
104
  ? {
103
- title: href ? (
104
- <a href={href} target="_blank" rel="noreferrer">
105
- {text}
106
- </a>
107
- ) : (
108
- text
109
- ),
105
+ title: text,
106
+ component: 'a',
107
+ className: 'jobs-table-action-item',
108
+ href,
110
109
  onClick,
111
110
  isDisabled,
112
111
  }
@@ -138,7 +137,7 @@ export const TemplateActionButtons = ({
138
137
  {rerun.permission && (
139
138
  <FlexItem spacer={{ default: 'spacerXs' }}>
140
139
  <Button
141
- isSmall
140
+ size="sm"
142
141
  variant="secondary"
143
142
  isInline
144
143
  ouiaId={rerun.name}
@@ -153,7 +152,7 @@ export const TemplateActionButtons = ({
153
152
  {details.permission && (
154
153
  <FlexItem spacer={{ default: 'spacerXs' }}>
155
154
  <Button
156
- isSmall
155
+ size="sm"
157
156
  variant="secondary"
158
157
  isInline
159
158
  ouiaId={details.name}
@@ -168,7 +167,7 @@ export const TemplateActionButtons = ({
168
167
  {cancel.permission && (
169
168
  <FlexItem spacer={{ default: 'spacerXs' }}>
170
169
  <Button
171
- isSmall
170
+ size="sm"
172
171
  variant="danger"
173
172
  isInline
174
173
  ouiaId={cancel.name}
@@ -182,7 +181,7 @@ export const TemplateActionButtons = ({
182
181
  {abort.permission && (
183
182
  <FlexItem spacer={{ default: 'spacerXs' }}>
184
183
  <Button
185
- isSmall
184
+ size="sm"
186
185
  variant="danger"
187
186
  isInline
188
187
  ouiaId={abort.name}
@@ -0,0 +1,3 @@
1
+ .jobs-table-action-item:hover {
2
+ color: var(--pf-v5-c-dropdown__menu-item--Color);
3
+ }
@@ -97,7 +97,7 @@ describe('JobInvocationDetailPage', () => {
97
97
 
98
98
  expect(screen.getByText('Description')).toBeInTheDocument();
99
99
  expect(
100
- container.querySelector('.chart-donut .pf-c-chart')
100
+ container.querySelector('.chart-donut .pf-c-chart') // todo: change to pf5 once we update @patternfly/react-charts to v7
101
101
  ).toBeInTheDocument();
102
102
  expect(screen.getByText('2/6')).toBeInTheDocument();
103
103
  expect(screen.getByText('Systems')).toBeInTheDocument();
@@ -116,22 +116,22 @@ describe('JobInvocationDetailPage', () => {
116
116
 
117
117
  Object.entries(informationToCheck).forEach(([term, expectedText]) => {
118
118
  const termContainers = container.querySelectorAll(
119
- '.pf-c-description-list__term .pf-c-description-list__text'
119
+ '.pf-v5-c-description-list__term .pf-v5-c-description-list__text'
120
120
  );
121
121
  termContainers.forEach(termContainer => {
122
122
  if (termContainer.textContent.includes(term)) {
123
123
  let descriptionContainer;
124
124
  if (term === 'SSH user:') {
125
125
  descriptionContainer = termContainer
126
- .closest('.pf-c-description-list__group')
126
+ .closest('.pf-v5-c-description-list__group')
127
127
  .querySelector(
128
- '.pf-c-description-list__description .pf-c-description-list__text .disabled-text'
128
+ '.pf-v5-c-description-list__description .pf-v5-c-description-list__text .disabled-text'
129
129
  );
130
130
  } else {
131
131
  descriptionContainer = termContainer
132
- .closest('.pf-c-description-list__group')
132
+ .closest('.pf-v5-c-description-list__group')
133
133
  .querySelector(
134
- '.pf-c-description-list__description .pf-c-description-list__text'
134
+ '.pf-v5-c-description-list__description .pf-v5-c-description-list__text'
135
135
  );
136
136
  }
137
137
  expect(descriptionContainer.textContent).toContain(expectedText);
@@ -126,6 +126,6 @@ describe('TemplateInvocation', () => {
126
126
  />
127
127
  );
128
128
 
129
- expect(document.querySelectorAll('.pf-c-skeleton')).toHaveLength(1);
129
+ expect(document.querySelectorAll('.pf-v5-c-skeleton')).toHaveLength(1);
130
130
  });
131
131
  });
@@ -41,6 +41,7 @@ export const jobInvocationData = {
41
41
  task: {
42
42
  id: '37ad5ead-51de-4798-bc73-a17687c4d5aa',
43
43
  state: 'stopped',
44
+ started_at: '2024-01-01 12:34:56 +0100',
44
45
  },
45
46
  template_invocations: [
46
47
  {
@@ -1,31 +1,33 @@
1
- import PropTypes from 'prop-types';
2
- import React, { useEffect, useState } from 'react';
3
- import { useDispatch, useSelector } from 'react-redux';
4
1
  import {
5
2
  Divider,
6
3
  Flex,
7
4
  PageSection,
8
5
  PageSectionVariants,
9
6
  } from '@patternfly/react-core';
10
- import { translate as __, documentLocale } from 'foremanReact/common/I18n';
11
- import PageLayout from 'foremanReact/routes/common/PageLayout/PageLayout';
12
7
  import { useAPI } from 'foremanReact/common/hooks/API/APIHooks';
8
+ import { translate as __, documentLocale } from 'foremanReact/common/I18n';
13
9
  import { stopInterval } from 'foremanReact/redux/middlewares/IntervalMiddleware';
10
+ import PageLayout from 'foremanReact/routes/common/PageLayout/PageLayout';
11
+ import PropTypes from 'prop-types';
12
+ import React, { useEffect, useState } from 'react';
13
+ import { useDispatch, useSelector } from 'react-redux';
14
+
15
+ import { JobAdditionInfo } from './JobAdditionInfo';
14
16
  import { getJobInvocation, getTask } from './JobInvocationActions';
15
17
  import {
16
18
  CURRENT_PERMISSIONS,
19
+ currentPermissionsUrl,
17
20
  DATE_OPTIONS,
18
21
  JOB_INVOCATION_KEY,
19
22
  STATUS,
20
- currentPermissionsUrl,
21
23
  } from './JobInvocationConstants';
22
- import './JobInvocationDetail.scss';
24
+ import JobInvocationHostTable from './JobInvocationHostTable';
23
25
  import JobInvocationOverview from './JobInvocationOverview';
24
26
  import { selectItems } from './JobInvocationSelectors';
25
27
  import JobInvocationSystemStatusChart from './JobInvocationSystemStatusChart';
26
28
  import JobInvocationToolbarButtons from './JobInvocationToolbarButtons';
27
- import JobInvocationHostTable from './JobInvocationHostTable';
28
- import { JobAdditionInfo } from './JobAdditionInfo';
29
+
30
+ import './JobInvocationDetail.scss';
29
31
 
30
32
  const JobInvocationDetailPage = ({
31
33
  match: {
@@ -60,10 +62,9 @@ const JobInvocationDetailPage = ({
60
62
  let isAlreadyStarted = false;
61
63
  let formattedStartDate;
62
64
  if (startAt) {
63
- // Ensures date string compatibility across browsers
64
- const convertedDate = new Date(startAt.replace(/[-.]/g, '/'));
65
- isAlreadyStarted = convertedDate.getTime() <= new Date().getTime();
66
- formattedStartDate = convertedDate.toLocaleString(
65
+ // eslint-disable-next-line camelcase
66
+ isAlreadyStarted = !!task?.started_at;
67
+ formattedStartDate = new Date(startAt).toLocaleString(
67
68
  documentLocale(),
68
69
  DATE_OPTIONS
69
70
  );
@@ -1,13 +1,11 @@
1
1
  import React from 'react';
2
2
  import { useSelector } from 'react-redux';
3
3
  import PropTypes from 'prop-types';
4
+ import { Button, Tooltip, Spinner } from '@patternfly/react-core';
4
5
  import {
5
- Button,
6
6
  WizardFooter,
7
7
  WizardContextConsumer,
8
- Tooltip,
9
- Spinner,
10
- } from '@patternfly/react-core';
8
+ } from '@patternfly/react-core/deprecated';
11
9
  import { translate as __ } from 'foremanReact/common/I18n';
12
10
  import { WIZARD_TITLES } from './JobWizardConstants';
13
11
  import { selectIsSubmitting } from './JobWizardSelectors';
@@ -3,7 +3,7 @@
3
3
  import React, { useState, useEffect, useCallback } from 'react';
4
4
  import { useDispatch, useSelector } from 'react-redux';
5
5
  import PropTypes from 'prop-types';
6
- import { Wizard } from '@patternfly/react-core';
6
+ import { Wizard } from '@patternfly/react-core/deprecated';
7
7
  import { get } from 'foremanReact/redux/API';
8
8
  import history from 'foremanReact/history';
9
9
 
@@ -1,21 +1,21 @@
1
1
  .job-wizard {
2
- font-size: var(--pf-global--FontSize--md);
2
+ font-size: var(--pf-v5-global--FontSize--md);
3
3
  .wizard-title {
4
4
  margin-bottom: 25px;
5
5
  }
6
6
 
7
- .pf-c-wizard__nav.pf-m-expanded {
7
+ .pf-v5-c-wizard__nav.pf-m-expanded {
8
8
  z-index: calc(
9
- var(--pf-c-wizard__toggle--ZIndex) + 2
9
+ var(--pf-v5-cwizard__toggle--ZIndex) + 2
10
10
  ); // So the small screen navigation can be shown above the select box and wizard body
11
11
  }
12
12
 
13
- .pf-c-wizard__main {
13
+ .pf-v5-c-wizard__main {
14
14
  z-index: calc(
15
- var(--pf-c-wizard__toggle--ZIndex) + 1
15
+ var(--pf-v5-cwizard__toggle--ZIndex) + 1
16
16
  ); // So the select box can be shown above the wizard footer and navigation toggle
17
17
  }
18
- .pf-c-wizard__main-body {
18
+ .pf-v5-c-wizard__main-body {
19
19
  @media (max-width: 600px) {
20
20
  max-width: 100%;
21
21
  }
@@ -34,19 +34,19 @@
34
34
  }
35
35
 
36
36
  .gray-text {
37
- color: var(--pf-global--Color--dark-200);
37
+ color: var(--pf-v5-global--Color--dark-200);
38
38
  }
39
39
 
40
40
  .target-hosts-and-inputs {
41
- .pf-c-chip-group.pf-m-category {
41
+ .pf-v5-c-chip-group.pf-m-category {
42
42
  margin-bottom: 10px;
43
43
  }
44
- .pf-c-select__toggle-typeahead {
44
+ .pf-v5-c-select__toggle-typeahead {
45
45
  border: 0px;
46
46
  }
47
47
 
48
48
  .target-method-select {
49
- .pf-c-select__toggle-wrapper {
49
+ .pf-v5-c-select__toggle-wrapper {
50
50
  flex-wrap: nowrap;
51
51
  }
52
52
  }
@@ -63,8 +63,8 @@
63
63
  display: grid;
64
64
  grid-template-columns: repeat(7, 1fr);
65
65
  }
66
- .pf-l-grid {
67
- gap: var(--pf-c-form--GridGap);
66
+ .pf-v5-l-grid {
67
+ gap: var(--pf-v5-cform--GridGap);
68
68
  }
69
69
  #repeat-on-hourly {
70
70
  max-height: 300px;
@@ -99,14 +99,14 @@
99
99
  .clear-datetime-button {
100
100
  margin-left: 10px;
101
101
  align-self: center;
102
- font-size: var(--pf-global--FontSize--md);
102
+ font-size: var(--pf-v5-global--FontSize--md);
103
103
  }
104
- .pf-c-form__group-control {
104
+ .pf-v5-c-form__group-control {
105
105
  display: flex;
106
106
  flex-wrap: wrap;
107
107
  }
108
108
  }
109
- .pf-c-date-picker {
109
+ .pf-v5-c-date-picker {
110
110
  vertical-align: top;
111
111
  }
112
112
 
@@ -123,7 +123,7 @@
123
123
  min-height: 40px;
124
124
  min-width: 100px;
125
125
  }
126
- .pf-c-modal-box {
126
+ .pf-v5-c-modal-box {
127
127
  width: auto;
128
128
  }
129
129
 
@@ -132,15 +132,15 @@
132
132
  margin-left: 10px;
133
133
  }
134
134
  }
135
- .pf-c-radio__body {
136
- font-size: var(--pf-c-radio__label--FontSize);
135
+ .pf-v5-c-radio__body {
136
+ font-size: var(--pf-v5-cradio__label--FontSize);
137
137
  }
138
138
  .reset-default {
139
139
  padding-bottom: 0;
140
140
  }
141
141
  }
142
142
 
143
- .job-wizard-alert.pf-c-alert.pf-m-warning {
143
+ .job-wizard-alert.pf-v5-c-alert.pf-m-warning {
144
144
  margin-bottom: 10px;
145
145
  margin-top: 10px;
146
146
  }