@rh-support/troubleshoot 2.2.151 → 2.2.153
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/lib/esm/components/CaseInformation/Description.d.ts.map +1 -1
- package/lib/esm/components/CaseInformation/Description.js +36 -17
- package/lib/esm/components/CaseInformation/OpenCaseIssue.js +2 -2
- package/lib/esm/components/EditDescription/EditDescription.d.ts.map +1 -1
- package/lib/esm/components/EditDescription/EditDescription.js +1 -6
- package/lib/esm/components/ImproveCase/KtQuestions.d.ts.map +1 -1
- package/lib/esm/components/ImproveCase/KtQuestions.js +4 -9
- package/lib/esm/components/Recommendations/RecommendationInfoBox.d.ts.map +1 -1
- package/lib/esm/components/Recommendations/RecommendationInfoBox.js +9 -12
- package/lib/esm/components/TroubleshootSection/TroubleshootSection.d.ts.map +1 -1
- package/lib/esm/components/TroubleshootSection/TroubleshootSection.js +1 -1
- package/lib/esm/components/shared/useIsSectionValid.d.ts.map +1 -1
- package/lib/esm/components/shared/useIsSectionValid.js +12 -4
- package/lib/esm/css/app.css +2 -2
- package/lib/esm/hooks/useWizard.js +1 -1
- package/lib/esm/reducers/CaseConstNTypes.d.ts +5 -5
- package/lib/esm/reducers/CaseConstNTypes.d.ts.map +1 -1
- package/lib/esm/reducers/CaseConstNTypes.js +5 -5
- package/lib/esm/reducers/CaseHelpers.d.ts.map +1 -1
- package/lib/esm/reducers/CaseHelpers.js +2 -3
- package/lib/esm/scss/_pf-overrides.scss +20 -0
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Description.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseInformation/Description.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Description.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseInformation/Description.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAQxC,UAAU,MAAM;IACZ,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAChC;AAED,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,KAAK,EAAE,MAAM,qBAgLhD"}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
import { TextArea } from '@patternfly/react-core';
|
|
2
|
-
import
|
|
1
|
+
import { Badge, Button, Popover, Split, SplitItem, TextArea } from '@patternfly/react-core';
|
|
2
|
+
import HelpIcon from '@patternfly/react-icons/dist/js/icons/help-icon';
|
|
3
|
+
// import ArrowRightIcon from '@patternfly/react-icons/dist/js/icons/arrow-right-icon'; This will be used for the Learn More button
|
|
4
|
+
import StarIcon from '@patternfly/react-icons/dist/js/icons/star-icon';
|
|
5
|
+
import { InlineEdit, useBreakpoint } from '@rh-support/components';
|
|
3
6
|
import isEmpty from 'lodash/isEmpty';
|
|
4
7
|
import isEqual from 'lodash/isEqual';
|
|
5
8
|
import React, { useState } from 'react';
|
|
6
9
|
import { Trans, useTranslation } from 'react-i18next';
|
|
7
10
|
import { useCaseDispatch, useCaseSelector } from '../../context/CaseContext';
|
|
8
|
-
import {
|
|
11
|
+
import { CASE_DETAILS_ISSUE_LIMIT } from '../../reducers/CaseConstNTypes';
|
|
9
12
|
import { getUpdatedDescription } from '../../reducers/CaseHelpers';
|
|
10
13
|
import { setCaseDetails } from '../../reducers/CaseReducer';
|
|
11
14
|
export default function Description(props) {
|
|
@@ -22,10 +25,8 @@ export default function Description(props) {
|
|
|
22
25
|
v3ClusterName: state.v3ClusterName,
|
|
23
26
|
}), isEqual);
|
|
24
27
|
const caseDispatch = useCaseDispatch();
|
|
25
|
-
const
|
|
26
|
-
const
|
|
27
|
-
setIssueTextAreaFocused(e.type === 'focus');
|
|
28
|
-
};
|
|
28
|
+
const breakPoint = useBreakpoint();
|
|
29
|
+
const isLgScreenHeight = breakPoint.lgh; // min-height: 1100px
|
|
29
30
|
const onCaseDetailsChange = (caseDetails) => {
|
|
30
31
|
setCaseDetails(caseDispatch, caseDetails);
|
|
31
32
|
};
|
|
@@ -35,14 +36,32 @@ export default function Description(props) {
|
|
|
35
36
|
onCaseDetailsChange({ issue: ktQ1Local, description: newDescription });
|
|
36
37
|
};
|
|
37
38
|
const isKT1Required = true;
|
|
38
|
-
|
|
39
|
-
const
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
39
|
+
const [isOpen, setIsOpen] = useState(false);
|
|
40
|
+
const handleToggle = () => {
|
|
41
|
+
setIsOpen(!isOpen);
|
|
42
|
+
};
|
|
43
|
+
const handleClose = () => {
|
|
44
|
+
setIsOpen(false);
|
|
45
|
+
};
|
|
46
|
+
return (React.createElement(InlineEdit, { labelContent: React.createElement(React.Fragment, null, props.customTitle ? (props.customTitle) : (React.createElement(React.Fragment, null,
|
|
47
|
+
React.createElement(Trans, null, "Describe your problem. Include specific actions and error messages."),
|
|
48
|
+
isKT1Required && (React.createElement("span", { className: "form-required", "aria-hidden": true }, "*")),
|
|
49
|
+
React.createElement(Popover, { hasAutoWidth: true, position: 'right', isVisible: isOpen, shouldClose: handleClose, headerContent: React.createElement("div", null,
|
|
50
|
+
React.createElement("div", null, "Describe your problem clearly for faster solutions"),
|
|
51
|
+
React.createElement("div", null,
|
|
52
|
+
React.createElement(Badge, { isRead: true, className: 'badge-icon-info' },
|
|
53
|
+
React.createElement(StarIcon, { className: "star-icon-info" }),
|
|
54
|
+
" New"))), bodyContent: React.createElement("div", { className: "popover-body-info-description" },
|
|
55
|
+
React.createElement("p", null, "Providing a detailed problem description helps us suggest the most relevant solutions quickly. Please include specific actions, error messages, and any relevant screenshots."),
|
|
56
|
+
React.createElement("p", null,
|
|
57
|
+
React.createElement("strong", null, "Maximum input will help us recommend articles that might solve your issue without creating a ticket.")),
|
|
58
|
+
React.createElement("p", null, "For tips on crafting an effective problem description, refer to our \"Tips for describing your problem\" guide.")), footerContent: React.createElement(Split, { hasGutter: true },
|
|
59
|
+
React.createElement(SplitItem, null,
|
|
60
|
+
React.createElement(Button, { variant: "primary", onClick: handleClose }, "Got it"))) },
|
|
61
|
+
React.createElement(Button, { variant: "plain", "aria-label": "More info for problem description", onClick: handleToggle },
|
|
62
|
+
React.createElement(HelpIcon, null)))))), labelProps: { htmlFor: 'get-support-ktQ1-issue' }, content: issue, allowInlineEdit: !!props.inlineEditable, hideSaveCancel: !!props.hideSaveCancel, initialIsEditing: isEmpty(issue), usePreformattedTag: true, saveOnBlur: true },
|
|
63
|
+
React.createElement(TextArea, { id: "get-support-ktQ1-issue", name: "get-support-ktQ1-issue", className: (isEmpty(summary) || isEmpty(version)) && isEmpty(issue) ? 'kt1-disabled' : '', "aria-invalid": (issue === null || issue === void 0 ? void 0 : issue.length) > CASE_DETAILS_ISSUE_LIMIT ? 'true' : 'false', "aria-required": isKT1Required, isRequired: isKT1Required, value: issue, disabled: (isEmpty(summary) || isEmpty(version)) && isEmpty(issue), isDisabled: hasLargeCaseDescription && isEmpty(issue), onChange: (e, value) => onKTQ1IssueChange(value, e), "data-tracking-id": "get-support-ktQ1-issue", placeholder: t(`The more detail that you include, the easier it is for us to help you. \nExample: \nI’m unable to start the SSHD service and am receiving the error message “Bad yes/no \nargument for ShowPatchLevel parameter”`), resizeOrientation: "vertical", validated: props.isSummarizeInvalid ? 'error' : 'default', rows: isLgScreenHeight ? 10 : 4 }),
|
|
64
|
+
React.createElement("p", { className: "form-instructions pf-v5-u-danger-color-100", "data-tracking-id": "large-20k-warning-ktQ1-environment" }, `${(issue === null || issue === void 0 ? void 0 : issue.length) > CASE_DETAILS_ISSUE_LIMIT
|
|
65
|
+
? `This description exceeds ${CASE_DETAILS_ISSUE_LIMIT}. Try shortening it.`
|
|
66
|
+
: ''}`)));
|
|
48
67
|
}
|
|
@@ -84,8 +84,8 @@ function OpenCaseIssue(props) {
|
|
|
84
84
|
? t('i18nkeySummarizeIdea', "Summarize what you're experiencing today")
|
|
85
85
|
: t('i18nkeySummarizeExperience', 'Create a heading that summarizes your issue'), value: summary, onChange: onSummaryChange, onBlur: onSummaryBlur, autoFocus: !!props.autoFocus, "data-tracking-id": isIdea() ? 'get-support-title' : 'get-support-summary', rows: 1, disabled: isEmpty(version) }),
|
|
86
86
|
React.createElement(React.Fragment, null, hasLargeTitleSummary && (React.createElement("div", null,
|
|
87
|
-
React.createElement("p", { className: "form-instructions form-invalid" }, isIdea()
|
|
88
|
-
? t(`
|
|
87
|
+
React.createElement("p", { className: "form-instructions form-invalid pf-v5-u-danger-color-100 title-summary-error" }, isIdea()
|
|
88
|
+
? t(`This title exceeds ${TITLE_SUMMARY_LENGTH_LIMIT}. Try shortening it.`)
|
|
89
89
|
: t(`The title cannot be more than ${TITLE_SUMMARY_LENGTH_LIMIT} characters.`))))),
|
|
90
90
|
React.createElement(Description, { isSummarizeInvalid: getIssueSummaryInvalid() }),
|
|
91
91
|
React.createElement(Progress, { value: issue === null || issue === void 0 ? void 0 : issue.length, min: 0, max: ISSUE_SUMMARY_LENGTH_LIMIT, size: ProgressSize.sm, label: `${issue === null || issue === void 0 ? void 0 : issue.length} / ${ISSUE_SUMMARY_LENGTH_LIMIT}`, valueText: `${issue === null || issue === void 0 ? void 0 : issue.length} / ${ISSUE_SUMMARY_LENGTH_LIMIT}`, measureLocation: ProgressMeasureLocation.top, "aria-label": `Progress - ${issue === null || issue === void 0 ? void 0 : issue.length} / ${ISSUE_SUMMARY_LENGTH_LIMIT}`, variant: getVariant(), title: ' ', className: `pf-v5-u-mt-md ${!isNextBtnClickedToShowValidationError && isEmpty(issue) ? 'gray' : ''}`, id: "summary-progress-bar" }))));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditDescription.d.ts","sourceRoot":"","sources":["../../../../src/components/EditDescription/EditDescription.tsx"],"names":[],"mappings":"AAMA,OAAO,KAA+B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"EditDescription.d.ts","sourceRoot":"","sources":["../../../../src/components/EditDescription/EditDescription.tsx"],"names":[],"mappings":"AAMA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAQpD,UAAU,MAAM;IACZ,cAAc,EAAE,OAAO,CAAC;CAC3B;AAUD,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,KAAK,EAAE,MAAM,qBAgEpD"}
|
|
@@ -16,7 +16,6 @@ import React, { useContext, useState } from 'react';
|
|
|
16
16
|
import { Trans, useTranslation } from 'react-i18next';
|
|
17
17
|
import { useParams } from 'react-router-dom';
|
|
18
18
|
import { useCaseDispatch, useCaseSelector } from '../../context/CaseContext';
|
|
19
|
-
import { DESCRIPTION_LENGTH_LIMIT, LargeDescriptionErrorMessage } from '../../reducers/CaseConstNTypes';
|
|
20
19
|
import { setCaseDetails } from '../../reducers/CaseReducer';
|
|
21
20
|
import { PDFContext } from '../CaseEditView/PDFContainer';
|
|
22
21
|
const linkifiedDescription = (text) => {
|
|
@@ -36,9 +35,7 @@ export default function EditDescription(props) {
|
|
|
36
35
|
const [localDescription, setLocalDescription] = useState(description);
|
|
37
36
|
const [isUpdating, setIsUpdating] = useState(false);
|
|
38
37
|
const { isExportingPDF } = useContext(PDFContext);
|
|
39
|
-
const [isDescriptionTextAreaFocused, setDescriptionTextAreaFocused] = useState(false);
|
|
40
38
|
const onDescriptionSave = () => __awaiter(this, void 0, void 0, function* () {
|
|
41
|
-
setDescriptionTextAreaFocused(false);
|
|
42
39
|
if (localDescription === description)
|
|
43
40
|
return;
|
|
44
41
|
try {
|
|
@@ -59,9 +56,7 @@ export default function EditDescription(props) {
|
|
|
59
56
|
const onDescriptionChange = (event) => {
|
|
60
57
|
setLocalDescription(event.target.value);
|
|
61
58
|
};
|
|
62
|
-
const descriptionErrorMessage = t(LargeDescriptionErrorMessage, { limit: DESCRIPTION_LENGTH_LIMIT });
|
|
63
59
|
return (React.createElement(InlineEdit, { labelContent: React.createElement(React.Fragment, null,
|
|
64
60
|
React.createElement(Trans, null, "Description")), loadingIndicator: isUpdating ? React.createElement(LoadingIndicator, { size: "xs" }) : null, labelProps: { htmlFor: 'edit-description' }, content: React.createElement("div", { dangerouslySetInnerHTML: { __html: linkifiedDescription(localDescription) } }), allowInlineEdit: !!props.inlineEditable, saveDisabled: localDescription === description || isUpdating, usePreformattedTag: true, onSave: onDescriptionSave, isExportingPDF: isExportingPDF },
|
|
65
|
-
React.createElement(TextAreaAutosize, { id: "edit-description", name: "edit-description", className: `form-control${hasLargeCaseDescription ? ' form-invalid' : ''}`, value: localDescription, disabled: isUpdating, onChange: onDescriptionChange, "data-tracking-id": "edit-description" })
|
|
66
|
-
React.createElement("p", { className: "form-instructions" }, `${hasLargeCaseDescription && isDescriptionTextAreaFocused ? descriptionErrorMessage : ''}`)));
|
|
61
|
+
React.createElement(TextAreaAutosize, { id: "edit-description", name: "edit-description", className: `form-control${hasLargeCaseDescription ? ' form-invalid' : ''}`, value: localDescription, disabled: isUpdating, onChange: onDescriptionChange, "data-tracking-id": "edit-description" })));
|
|
67
62
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KtQuestions.d.ts","sourceRoot":"","sources":["../../../../src/components/ImproveCase/KtQuestions.tsx"],"names":[],"mappings":"AAKA,OAAO,KAA0C,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"KtQuestions.d.ts","sourceRoot":"","sources":["../../../../src/components/ImproveCase/KtQuestions.tsx"],"names":[],"mappings":"AAKA,OAAO,KAA0C,MAAM,OAAO,CAAC;AAkB/D,UAAU,MAAM;IACZ,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AAGD,iBAAS,WAAW,CAAC,KAAK,EAAE,MAAM,qBAsWjC;kBAtWQ,WAAW;;;AAwWpB,eAAe,WAAW,CAAC"}
|
|
@@ -6,7 +6,7 @@ import React, { useContext, useEffect, useState } from 'react';
|
|
|
6
6
|
import { useTranslation } from 'react-i18next';
|
|
7
7
|
import { useCaseDispatch, useCaseSelector } from '../../context/CaseContext';
|
|
8
8
|
import { RouteContext } from '../../context/RouteContext';
|
|
9
|
-
import { CASE_DEATILS_ENVIRONMENT_LIMIT, CASE_DEATILS_PERIODICITYOFISSUE_LIMIT, CASE_DETAILS_TIMEFRAMESANDURGENCY_LIMIT, KTQ2LengthError, KTQ3LengthError, KTQ4LengthError, KTQUESTION_MAX_LIMIT, KtQuestionConstant,
|
|
9
|
+
import { CASE_DEATILS_ENVIRONMENT_LIMIT, CASE_DEATILS_PERIODICITYOFISSUE_LIMIT, CASE_DETAILS_TIMEFRAMESANDURGENCY_LIMIT, KTQ2LengthError, KTQ3LengthError, KTQ4LengthError, KTQUESTION_MAX_LIMIT, KtQuestionConstant, } from '../../reducers/CaseConstNTypes';
|
|
10
10
|
import { getUpdatedDescription } from '../../reducers/CaseHelpers';
|
|
11
11
|
import { setCaseDetails } from '../../reducers/CaseReducer';
|
|
12
12
|
const defaultProps = { inlineEditable: false, hideSaveCancel: false, onlyShowKT4: false };
|
|
@@ -73,8 +73,6 @@ function KtQuestions(props) {
|
|
|
73
73
|
const isKT2Required = false;
|
|
74
74
|
const isKT3Required = false;
|
|
75
75
|
const isKT4Required = true;
|
|
76
|
-
//changing limit to 31000 to account for extra chars added during description combination to backend
|
|
77
|
-
const descriptionErrorMessage = t(LargeDescriptionErrorMessage, { limit: MODIFIED_DESCRIPTION_LENGTH_LIMIT });
|
|
78
76
|
const invalidateQT4 = (value) => {
|
|
79
77
|
return isEmpty(value) && hasFocusedLostKT4;
|
|
80
78
|
};
|
|
@@ -145,8 +143,7 @@ function KtQuestions(props) {
|
|
|
145
143
|
? 'true'
|
|
146
144
|
: 'false', id: "ktQ4-timeFramesAndUrgency", value: timeFramesAndUrgency, isDisabled: isEmpty(timeFramesAndUrgency) && hasLargeCaseDescription && !isKTQ4TextAreaActive, onChange: (e, value) => onKtQ4Change(value, e), onFocus: onKTQ4FocusChange, onBlur: onKTQ4FocusChange, "aria-required": isKT4Required, "data-tracking-id": "get-support-ktQ4-timeFramesAndUrgency", placeholder: t('Describe the user or financial impact. Tell us about any legal, national, or medical urgency.'), isRequired: isKT4Required, resizeOrientation: "vertical", rows: 5 }),
|
|
147
145
|
React.createElement(Progress, { value: timeFramesAndUrgency === null || timeFramesAndUrgency === void 0 ? void 0 : timeFramesAndUrgency.length, min: 0, max: KTQUESTION_MAX_LIMIT, size: ProgressSize.sm, label: `${timeFramesAndUrgency === null || timeFramesAndUrgency === void 0 ? void 0 : timeFramesAndUrgency.length} / ${KTQUESTION_MAX_LIMIT}`, valueText: `${timeFramesAndUrgency === null || timeFramesAndUrgency === void 0 ? void 0 : timeFramesAndUrgency.length} / ${KTQUESTION_MAX_LIMIT}`, measureLocation: ProgressMeasureLocation.top, "aria-label": `Progress - ${timeFramesAndUrgency === null || timeFramesAndUrgency === void 0 ? void 0 : timeFramesAndUrgency.length} / ${KTQUESTION_MAX_LIMIT}`, variant: getVariantQ4(), title: ' ', className: `pf-v5-u-mt-md ${!isNextBtnClickedToShowValidationError && isEmpty(timeFramesAndUrgency) ? 'gray' : ''} kt-progress-bar`, id: "summary-progress-bar" }),
|
|
148
|
-
React.createElement("p", { className: "form-instructions", "data-tracking-id": "large-4k-warning-ktQ4-environment" }, `${(timeFramesAndUrgency === null || timeFramesAndUrgency === void 0 ? void 0 : timeFramesAndUrgency.length) > CASE_DETAILS_TIMEFRAMESANDURGENCY_LIMIT ? KTQ4LengthError : ''}`),
|
|
149
|
-
React.createElement("p", { className: "form-instructions", "data-tracking-id": "large-warning-ktQ4-timeFramesAndUrgency" }, `${hasLargeCaseDescription && isKTQ4TextAreaActive ? descriptionErrorMessage : ''}`)),
|
|
146
|
+
React.createElement("p", { className: "form-instructions pf-v5-u-danger-color-100", "data-tracking-id": "large-4k-warning-ktQ4-environment" }, `${(timeFramesAndUrgency === null || timeFramesAndUrgency === void 0 ? void 0 : timeFramesAndUrgency.length) > CASE_DETAILS_TIMEFRAMESANDURGENCY_LIMIT ? KTQ4LengthError : ''}`)),
|
|
150
147
|
!props.onlyShowKT4 && (React.createElement(React.Fragment, null,
|
|
151
148
|
React.createElement(InlineEdit, { labelProps: { htmlFor: 'ktQ2-environment' }, labelContent: React.createElement(React.Fragment, null,
|
|
152
149
|
t(KtQuestionConstant.environment),
|
|
@@ -154,8 +151,7 @@ function KtQuestions(props) {
|
|
|
154
151
|
isKT2Required && (React.createElement("span", { className: "form-required", "aria-hidden": true }, "*"))), allowInlineEdit: props.inlineEditable, hideSaveCancel: props.hideSaveCancel, initialIsEditing: isEmpty(environment), usePreformattedTag: true, saveOnBlur: true, content: environment },
|
|
155
152
|
React.createElement(TextArea, { id: "ktQ2-environment", value: environment, isDisabled: isEmpty(environment) && hasLargeCaseDescription && !isKTQ2TextAreaActive, onChange: (e, value) => onKtQ2Change(value, e), onFocus: onKTQ2FocusChange, onBlur: onKTQ2FocusChange, "aria-required": isKT2Required, isRequired: isKT2Required, "data-tracking-id": "get-support-ktQ2-environment", "aria-invalid": environment && (environment === null || environment === void 0 ? void 0 : environment.length) > CASE_DEATILS_ENVIRONMENT_LIMIT ? 'true' : 'false', resizeOrientation: "vertical", placeholder: t('Please provide details about the location, device, software version, etc. where you encounter this issue'), rows: 5 }),
|
|
156
153
|
React.createElement(Progress, { value: environment === null || environment === void 0 ? void 0 : environment.length, min: 0, max: KTQUESTION_MAX_LIMIT, size: ProgressSize.sm, label: `${environment === null || environment === void 0 ? void 0 : environment.length} / ${KTQUESTION_MAX_LIMIT}`, valueText: `${environment === null || environment === void 0 ? void 0 : environment.length} / ${KTQUESTION_MAX_LIMIT}`, measureLocation: ProgressMeasureLocation.top, "aria-label": `Progress - ${environment === null || environment === void 0 ? void 0 : environment.length} / ${KTQUESTION_MAX_LIMIT}`, variant: getVariantQ2(), title: ' ', className: `pf-v5-u-mt-md ${!isNextBtnClickedToShowValidationError && isEmpty(environment) ? 'gray' : ''} kt-progress-bar`, id: "summary-progress-bar" }),
|
|
157
|
-
React.createElement("p", { className: "form-instructions", "data-tracking-id": "large-4k-warning-ktQ2-environment" }, `${(environment === null || environment === void 0 ? void 0 : environment.length) > KTQUESTION_MAX_LIMIT ? KTQ2LengthError : ''}`),
|
|
158
|
-
React.createElement("p", { className: "form-instructions", "data-tracking-id": "large-warning-ktQ2-environment" }, `${hasLargeCaseDescription && isKTQ2TextAreaActive ? descriptionErrorMessage : ''}`)),
|
|
154
|
+
React.createElement("p", { className: "form-instructions pf-v5-u-danger-color-100", "data-tracking-id": "large-4k-warning-ktQ2-environment" }, `${(environment === null || environment === void 0 ? void 0 : environment.length) > KTQUESTION_MAX_LIMIT ? KTQ2LengthError : ''}`)),
|
|
159
155
|
React.createElement(InlineEdit, { labelProps: { htmlFor: 'ktQ3-periodicityOfIssue' }, labelContent: React.createElement(React.Fragment, null,
|
|
160
156
|
t(KtQuestionConstant.periodicityOfIssue),
|
|
161
157
|
' ',
|
|
@@ -164,8 +160,7 @@ function KtQuestions(props) {
|
|
|
164
160
|
? 'true'
|
|
165
161
|
: 'false', resizeOrientation: "vertical", placeholder: t('Describe when and how often the problem occurs, e.g., daily, after specific actions, at particular times of day, etc.'), rows: 5 }),
|
|
166
162
|
React.createElement(Progress, { value: periodicityOfIssue === null || periodicityOfIssue === void 0 ? void 0 : periodicityOfIssue.length, min: 0, max: KTQUESTION_MAX_LIMIT, size: ProgressSize.sm, label: `${periodicityOfIssue === null || periodicityOfIssue === void 0 ? void 0 : periodicityOfIssue.length} / ${KTQUESTION_MAX_LIMIT}`, valueText: `${periodicityOfIssue === null || periodicityOfIssue === void 0 ? void 0 : periodicityOfIssue.length} / ${KTQUESTION_MAX_LIMIT}`, measureLocation: ProgressMeasureLocation.top, "aria-label": `Progress - ${periodicityOfIssue === null || periodicityOfIssue === void 0 ? void 0 : periodicityOfIssue.length} / ${KTQUESTION_MAX_LIMIT}`, variant: getVariantQ3(), title: ' ', className: `pf-v5-u-mt-md ${!isNextBtnClickedToShowValidationError && isEmpty(periodicityOfIssue) ? 'gray' : ''} kt-progress-bar`, id: "summary-progress-bar" }),
|
|
167
|
-
React.createElement("p", { className: "form-instructions", "data-tracking-id": "large-4k-warning-ktQ3-environment" }, `${(periodicityOfIssue === null || periodicityOfIssue === void 0 ? void 0 : periodicityOfIssue.length) > CASE_DEATILS_PERIODICITYOFISSUE_LIMIT ? KTQ3LengthError : ''}`)
|
|
168
|
-
React.createElement("p", { className: "form-instructions", "data-tracking-id": "large-warning-ktQ3-periodicityOfIssue" }, `${hasLargeCaseDescription && isKTQ3TextAreaActive ? descriptionErrorMessage : ''}`))))));
|
|
163
|
+
React.createElement("p", { className: "form-instructions pf-v5-u-danger-color-100", "data-tracking-id": "large-4k-warning-ktQ3-environment" }, `${(periodicityOfIssue === null || periodicityOfIssue === void 0 ? void 0 : periodicityOfIssue.length) > CASE_DEATILS_PERIODICITYOFISSUE_LIMIT ? KTQ3LengthError : ''}`))))));
|
|
169
164
|
}
|
|
170
165
|
KtQuestions.defaultProps = defaultProps;
|
|
171
166
|
export default KtQuestions;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecommendationInfoBox.d.ts","sourceRoot":"","sources":["../../../../src/components/Recommendations/RecommendationInfoBox.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAGxC,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"RecommendationInfoBox.d.ts","sourceRoot":"","sources":["../../../../src/components/Recommendations/RecommendationInfoBox.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAGxC,eAAO,MAAM,qBAAqB,yBA4CjC,CAAC"}
|
|
@@ -7,25 +7,22 @@ export const RecommendationInfoBox = () => {
|
|
|
7
7
|
return (React.createElement(React.Fragment, null,
|
|
8
8
|
React.createElement(Accordion, { isBordered: true, asDefinitionList: false, className: "pf-v5-u-mb-md" },
|
|
9
9
|
React.createElement(AccordionItem, null,
|
|
10
|
-
React.createElement(AccordionToggle, { id: "recommendation-tips", isExpanded: isExpanded, onClick: () => setIsExpanded(!isExpanded) }, t('Tips for
|
|
10
|
+
React.createElement(AccordionToggle, { id: "recommendation-tips", isExpanded: isExpanded, onClick: () => setIsExpanded(!isExpanded) }, t('Tips for describing your problem')),
|
|
11
11
|
React.createElement(AccordionContent, { isHidden: !isExpanded },
|
|
12
12
|
React.createElement("span", { className: "pf-v5-u-color-100" },
|
|
13
|
-
React.createElement(Trans, null, "
|
|
13
|
+
React.createElement(Trans, null, "To expedite your case, include these details: ")),
|
|
14
14
|
React.createElement(List, { className: "pf-v5-u-ml-lg", style: { listStyleType: 'disc' } },
|
|
15
15
|
React.createElement(ListItem, null,
|
|
16
16
|
React.createElement(Trans, null, "Problem")),
|
|
17
17
|
React.createElement(ListItem, null,
|
|
18
|
-
React.createElement(Trans, null, "Steps you
|
|
18
|
+
React.createElement(Trans, null, "Steps you've taken")),
|
|
19
19
|
React.createElement(ListItem, null,
|
|
20
20
|
React.createElement(Trans, null, "Error Messages"))),
|
|
21
21
|
React.createElement("span", { className: "pf-v5-u-color-100" },
|
|
22
|
-
React.createElement(Trans, null, "
|
|
23
|
-
React.createElement(
|
|
24
|
-
React.createElement(
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"I\u2019m unable to start the SSHD service receiving the error message ",
|
|
29
|
-
React.createElement("br", null),
|
|
30
|
-
"\"Bad yes/no argument for ShowPatchLevel parameter\u201D"))))))));
|
|
22
|
+
React.createElement(Trans, null, "Example:")),
|
|
23
|
+
React.createElement("span", { className: "extra-tips-for-describing" },
|
|
24
|
+
React.createElement(Trans, null,
|
|
25
|
+
"I\u2019m unable to start the SSHD service receiving the error message ",
|
|
26
|
+
React.createElement("br", null),
|
|
27
|
+
"\"Bad yes/no argument for ShowPatchLevel parameter\u201D")))))));
|
|
31
28
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TroubleshootSection.d.ts","sourceRoot":"","sources":["../../../../src/components/TroubleshootSection/TroubleshootSection.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAU1C,UAAU,MAAM;IACZ,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC5B;AASD,iBAAS,mBAAmB,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"TroubleshootSection.d.ts","sourceRoot":"","sources":["../../../../src/components/TroubleshootSection/TroubleshootSection.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAU1C,UAAU,MAAM;IACZ,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC5B;AASD,iBAAS,mBAAmB,CAAC,KAAK,EAAE,MAAM,qBA2EzC;kBA3EQ,mBAAmB;;;AA8E5B,eAAe,mBAAmB,CAAC"}
|
|
@@ -44,7 +44,7 @@ function TroubleshootSection(props) {
|
|
|
44
44
|
' ',
|
|
45
45
|
version),
|
|
46
46
|
React.createElement("div", { className: "pf-v5-u-font-family-heading" }, "Title"),
|
|
47
|
-
React.createElement("p",
|
|
47
|
+
React.createElement("p", null, summary),
|
|
48
48
|
React.createElement("div", { className: "pf-v5-u-font-family-heading" }, "Problem description"),
|
|
49
49
|
React.createElement("p", { className: "pf-v5-u-mb-xl" },
|
|
50
50
|
React.createElement(MoreOrLess, { maxHeight: 93 }, issue))),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useIsSectionValid.d.ts","sourceRoot":"","sources":["../../../../src/components/shared/useIsSectionValid.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAqB,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"useIsSectionValid.d.ts","sourceRoot":"","sources":["../../../../src/components/shared/useIsSectionValid.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAsB1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AAInE,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,gBAAgB;;;;;EA2M9D"}
|
|
@@ -8,13 +8,13 @@ import { useCaseSelector } from '../../context/CaseContext';
|
|
|
8
8
|
import { RecommendationStateContext } from '../../context/RecommendationContext';
|
|
9
9
|
import { RouteContext } from '../../context/RouteContext';
|
|
10
10
|
import { TCStateContext } from '../../context/TopContentContext';
|
|
11
|
-
import { CASE_REFERENCE_NUMBER_LIMIT, CONTACT_INFO_24X7_LIMIT, HOSTNAME_LENGTH_LIMIT, ISSUE_SUMMARY_LENGTH_LIMIT, TITLE_SUMMARY_LENGTH_LIMIT, } from '../../reducers/CaseConstNTypes';
|
|
11
|
+
import { CASE_REFERENCE_NUMBER_LIMIT, CONTACT_INFO_24X7_LIMIT, HOSTNAME_LENGTH_LIMIT, ISSUE_SUMMARY_LENGTH_LIMIT, KTQUESTION_MAX_LIMIT, TITLE_SUMMARY_LENGTH_LIMIT, } from '../../reducers/CaseConstNTypes';
|
|
12
12
|
import { isCaseInformationSectionValid, isCaseManagementStateValid, isCaseStateValid, isClusterIDValid, isIdeaCaseStateValid, } from '../../reducers/CaseHelpers';
|
|
13
13
|
import { AppRouteSections } from '../../reducers/RouteConstNTypes';
|
|
14
14
|
import { AttachmentStateContext } from './fileUpload/reducer/AttachmentReducerContext';
|
|
15
15
|
export function useIsSectionValid(sectionName) {
|
|
16
16
|
var _a, _b;
|
|
17
|
-
const { caseState, caseType, product, version, contactSSOName, accountNumber, summary, hostname, contactInfo24x7, alternateId, selectedAccountDetails, issue, } = useCaseSelector((state) => ({
|
|
17
|
+
const { caseState, caseType, product, version, contactSSOName, accountNumber, summary, hostname, contactInfo24x7, alternateId, selectedAccountDetails, issue, environment, timeFramesAndUrgency, periodicityOfIssue, } = useCaseSelector((state) => ({
|
|
18
18
|
caseState: state,
|
|
19
19
|
caseType: state.caseDetails.caseType,
|
|
20
20
|
product: state.caseDetails.product,
|
|
@@ -27,6 +27,9 @@ export function useIsSectionValid(sectionName) {
|
|
|
27
27
|
alternateId: state.caseDetails.alternateId,
|
|
28
28
|
selectedAccountDetails: state.selectedAccountDetails,
|
|
29
29
|
issue: state.caseDetails.issue,
|
|
30
|
+
environment: state.caseDetails.environment,
|
|
31
|
+
timeFramesAndUrgency: state.caseDetails.timeFramesAndUrgency,
|
|
32
|
+
periodicityOfIssue: state.caseDetails.periodicityOfIssue,
|
|
30
33
|
}), isEqual);
|
|
31
34
|
const { globalMetadataState: { allProducts, loggedInUserJwtToken }, } = useContext(GlobalMetadataStateContext);
|
|
32
35
|
const { topContentState: { topContent }, } = useContext(TCStateContext);
|
|
@@ -84,7 +87,9 @@ export function useIsSectionValid(sectionName) {
|
|
|
84
87
|
var _a;
|
|
85
88
|
return (isEntitledProduct &&
|
|
86
89
|
isCaseStateValid(caseState, loggedInUserJwtToken) &&
|
|
87
|
-
isClusterIDValid(caseState, (_a = allProducts.data) === null || _a === void 0 ? void 0 : _a.productsResult)
|
|
90
|
+
isClusterIDValid(caseState, (_a = allProducts.data) === null || _a === void 0 ? void 0 : _a.productsResult) &&
|
|
91
|
+
isSummarizeSectionValid() &&
|
|
92
|
+
isCaseDescribeMoreSectionValidLocal());
|
|
88
93
|
};
|
|
89
94
|
const isDescribeIdeaSectionValid = () => {
|
|
90
95
|
return (isCaseManagementStateValid(caseState, loggedInUserJwtToken) &&
|
|
@@ -98,7 +103,10 @@ export function useIsSectionValid(sectionName) {
|
|
|
98
103
|
return (!caseState.hasInvalidEntitlements &&
|
|
99
104
|
isClusterIDValid(caseState, (_a = allProducts.data) === null || _a === void 0 ? void 0 : _a.productsResult) &&
|
|
100
105
|
isCaseInformationSectionValid(caseState, loggedInUserJwtToken) &&
|
|
101
|
-
hostnameIsValid
|
|
106
|
+
hostnameIsValid &&
|
|
107
|
+
environment.length <= KTQUESTION_MAX_LIMIT &&
|
|
108
|
+
timeFramesAndUrgency.length <= KTQUESTION_MAX_LIMIT &&
|
|
109
|
+
periodicityOfIssue.length <= KTQUESTION_MAX_LIMIT);
|
|
102
110
|
};
|
|
103
111
|
const isSectionValid = (sectionNameLocal) => {
|
|
104
112
|
if (!sectionNameLocal)
|
package/lib/esm/css/app.css
CHANGED
|
@@ -297,14 +297,14 @@ input[type='checkbox'] {
|
|
|
297
297
|
margin-bottom: 0;
|
|
298
298
|
}
|
|
299
299
|
|
|
300
|
-
.pf-v5-c-popover .pf-v5-c-button {
|
|
300
|
+
/* .pf-v5-c-popover .pf-v5-c-button {
|
|
301
301
|
position: absolute;
|
|
302
302
|
top: 8px;
|
|
303
303
|
right: 2px;
|
|
304
304
|
color: rgb(114, 118, 123);
|
|
305
305
|
padding: 4px 14px;
|
|
306
306
|
background: none;
|
|
307
|
-
}
|
|
307
|
+
} */
|
|
308
308
|
|
|
309
309
|
.pf-tippy-theme.tippy-tooltip .pf-tippy-theme {
|
|
310
310
|
max-width: calc(20.25rem);
|
|
@@ -58,7 +58,7 @@ export function useWizard(routeProps, props) {
|
|
|
58
58
|
[AppRouteSections.SUMMARIZE]: Object.assign(Object.assign({}, defaultRouteConfiguration), { id: AppRouteSections.SUMMARIZE, name: t('Summarize'), component: (React.createElement(MainSection, { stepNumber: 2, totalSteps: 6, section: AppRouteSections.SUMMARIZE, title: t('What are you having an issue with?') },
|
|
59
59
|
React.createElement(Suspense, { fallback: React.createElement(LoadingIndicator, { size: "sm" }) },
|
|
60
60
|
alertMessage(),
|
|
61
|
-
React.createElement(ProductSelector, { routeProps: routeProps, userSeenRecommendations: props.userSeenRecommendationsfn })))), canJumpTo: isSectionValidFn(AppRouteSections.SUMMARIZE) || activeSection === AppRouteSections.SUMMARIZE, nextButtonLabel: t('
|
|
61
|
+
React.createElement(ProductSelector, { routeProps: routeProps, userSeenRecommendations: props.userSeenRecommendationsfn })))), canJumpTo: isSectionValidFn(AppRouteSections.SUMMARIZE) || activeSection === AppRouteSections.SUMMARIZE, nextButtonLabel: t('Continue') }),
|
|
62
62
|
[AppRouteSections.TROUBLESHOOT]: Object.assign(Object.assign({}, defaultRouteConfiguration), { id: AppRouteSections.TROUBLESHOOT, name: t('Troubleshoot'), component: (React.createElement(MainSection, { stepNumber: 3, totalSteps: 6, section: AppRouteSections.TROUBLESHOOT, title: t('Recommendations') },
|
|
63
63
|
React.createElement(Suspense, { fallback: React.createElement(LoadingIndicator, { size: "sm" }) },
|
|
64
64
|
alertMessage(),
|
|
@@ -9,7 +9,7 @@ import { IAction, IAPIError, IApiResponseDetails } from '@rh-support/types/share
|
|
|
9
9
|
import { Dispatch } from 'react';
|
|
10
10
|
export declare const TITLE_SUMMARY_LENGTH_LIMIT = 255;
|
|
11
11
|
export declare const ISSUE_SUMMARY_LENGTH_LIMIT = 20000;
|
|
12
|
-
export declare const SUMMARY_LENGTH_LIMIT =
|
|
12
|
+
export declare const SUMMARY_LENGTH_LIMIT = 255;
|
|
13
13
|
export declare const KTQUESTION_MAX_LIMIT = 4000;
|
|
14
14
|
export declare const ATTACHMENT_DESCRIPTION_LENGTH_LIMIT = 255;
|
|
15
15
|
export declare const ESCALATION_SUBJECT_LENGTH_LIMIT = 255;
|
|
@@ -32,7 +32,7 @@ export declare const SESSION_NO_CLUSTER_REASON_EXPLANATION_LENGTH_LIMIT = 255;
|
|
|
32
32
|
export declare const SESSION_PHONE_LENGTH_LIMIT = 23;
|
|
33
33
|
export declare const WATSONX_SUMMARY_LIMIT = 255;
|
|
34
34
|
export declare const WATSONX_DESCRIPTION_LIMIT = 4000;
|
|
35
|
-
export declare const
|
|
35
|
+
export declare const CASE_DETAILS_ISSUE_LIMIT = 20000;
|
|
36
36
|
export declare const CASE_DETAILS_TIMEFRAMESANDURGENCY_LIMIT = 4000;
|
|
37
37
|
export declare const CASE_DEATILS_ENVIRONMENT_LIMIT = 3000;
|
|
38
38
|
export declare const CASE_DEATILS_PERIODICITYOFISSUE_LIMIT = 4000;
|
|
@@ -45,9 +45,9 @@ export declare enum KtQuestionConstant {
|
|
|
45
45
|
periodicityOfIssue = "How frequently does this behavior occur? Does it occur repeatedly or at certain times?",
|
|
46
46
|
ideaIssue = "Please describe your request"
|
|
47
47
|
}
|
|
48
|
-
export declare const KTQ2LengthError = "
|
|
49
|
-
export declare const KTQ3LengthError = "
|
|
50
|
-
export declare const KTQ4LengthError = "
|
|
48
|
+
export declare const KTQ2LengthError = "That description exceeds 4000 characters. Try shortening it.";
|
|
49
|
+
export declare const KTQ3LengthError = "That description exceeds 4000 characters. Try shortening it.";
|
|
50
|
+
export declare const KTQ4LengthError = "That description exceeds 4000 characters. Try shortening it.";
|
|
51
51
|
export declare const enum SupportLevelsInternal {
|
|
52
52
|
SELF_SUPPORT = "selfSupport",
|
|
53
53
|
STANDARD = "standard",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseConstNTypes.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseConstNTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAC5E,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,yCAAyC,CAAC;AACjH,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,+CAA+C,CAAC;AACvF,OAAO,EAAE,YAAY,EAAE,MAAM,iDAAiD,CAAC;AAC/E,OAAO,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAClE,OAAO,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAC;AACjF,OAAO,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAClE,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAEnF,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEjC,eAAO,MAAM,0BAA0B,MAAM,CAAC;AAC9C,eAAO,MAAM,0BAA0B,QAAQ,CAAC;AAEhD,eAAO,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"CaseConstNTypes.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseConstNTypes.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getApiResourceObject } from '@rh-support/utils';
|
|
2
2
|
export const TITLE_SUMMARY_LENGTH_LIMIT = 255;
|
|
3
3
|
export const ISSUE_SUMMARY_LENGTH_LIMIT = 20000;
|
|
4
|
-
export const SUMMARY_LENGTH_LIMIT =
|
|
4
|
+
export const SUMMARY_LENGTH_LIMIT = 255; // this the value used when editing title on case details experience
|
|
5
5
|
export const KTQUESTION_MAX_LIMIT = 4000;
|
|
6
6
|
export const ATTACHMENT_DESCRIPTION_LENGTH_LIMIT = 255;
|
|
7
7
|
export const ESCALATION_SUBJECT_LENGTH_LIMIT = 255;
|
|
@@ -26,7 +26,7 @@ export const WATSONX_SUMMARY_LIMIT = 255; // In the UI, we allow only 255 charac
|
|
|
26
26
|
export const WATSONX_DESCRIPTION_LIMIT = 4000;
|
|
27
27
|
//Case detail limits for each individual KT Question in order as they appear on troubleshoot/opencase
|
|
28
28
|
//We are totaling 31k here to allow for the backend to accept response when combined with question copy.
|
|
29
|
-
export const
|
|
29
|
+
export const CASE_DETAILS_ISSUE_LIMIT = 20000; // 1st Q
|
|
30
30
|
export const CASE_DETAILS_TIMEFRAMESANDURGENCY_LIMIT = 4000; //2nd Q
|
|
31
31
|
export const CASE_DEATILS_ENVIRONMENT_LIMIT = 3000; //3rd Q
|
|
32
32
|
export const CASE_DEATILS_PERIODICITYOFISSUE_LIMIT = 4000; //4th Q
|
|
@@ -41,9 +41,9 @@ export var KtQuestionConstant;
|
|
|
41
41
|
KtQuestionConstant["periodicityOfIssue"] = "How frequently does this behavior occur? Does it occur repeatedly or at certain times?";
|
|
42
42
|
KtQuestionConstant["ideaIssue"] = "Please describe your request";
|
|
43
43
|
})(KtQuestionConstant || (KtQuestionConstant = {}));
|
|
44
|
-
export const KTQ2LengthError = '
|
|
45
|
-
export const KTQ3LengthError = '
|
|
46
|
-
export const KTQ4LengthError = '
|
|
44
|
+
export const KTQ2LengthError = 'That description exceeds 4000 characters. Try shortening it.';
|
|
45
|
+
export const KTQ3LengthError = 'That description exceeds 4000 characters. Try shortening it.';
|
|
46
|
+
export const KTQ4LengthError = 'That description exceeds 4000 characters. Try shortening it.';
|
|
47
47
|
export const SupportLevelDisplay = {
|
|
48
48
|
STANDARD: 'Standard',
|
|
49
49
|
PREMIUM: 'Premium',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseHelpers.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseHelpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,qDAAqD,CAAC;AACpG,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,yCAAyC,CAAC;AACvG,OAAO,EAAE,YAAY,EAAE,MAAM,iDAAiD,CAAC;AAC/E,OAAO,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAC/E,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAmB3D,OAAO,EAOH,UAAU,EAiBb,MAAM,mBAAmB,CAAC;AAE3B,eAAO,MAAM,sBAAsB,SAAU,mBAAmB,EAAE,wBAMjE,CAAC;AAEF,eAAO,MAAM,2BAA2B,eAAgB,WAAW,KAAG,MAOrE,CAAC;AAEF,eAAO,MAAM,uBAAuB,QAAS,mBAAmB,SAAS,MAAM,sBAyB9E,CAAC;AAIF,eAAO,MAAM,qBAAqB,UACvB,MAAM,gBACC,MAAM,uBACC,MAAM,yBACJ,MAAM,kBACb,MAAM,YACZ,MAAM,YACN,MAAM,KACjB,MAyBF,CAAC;AAIF,eAAO,MAAM,oBAAoB,UACtB,MAAM,gBACC,MAAM,uBACC,MAAM,yBACJ,MAAM,KAC9B,MAQF,CAAC;AAEF,eAAO,MAAM,uBAAuB,iBAAkB,MAAM,YAAY,MAAM,KAAG,MAQhF,CAAC;AAEF,eAAO,MAAM,uBAAuB,aAAc,MAAM,KAAG,MAM1D,CAAC;AAEF,eAAO,MAAM,uBAAuB,iBAAkB,MAAM,YAAY,MAAM,KAAG,MAQhF,CAAC;AAEF,eAAO,MAAM,sBAAsB,aAAc,MAAM,KAAG,MAKzD,CAAC;AAEF,eAAO,MAAM,gBAAgB,+CAqC5B,CAAC;AAIF,eAAO,MAAM,gBAAgB,cAAe,UAAU,wBAAwB,QAAQ,eAAe,CAAC,KAAG,OA6BxG,CAAC;AAEF,eAAO,MAAM,oBAAoB,cAClB,UAAU,wBACC,QAAQ,eAAe,CAAC,KAC/C,OAyBF,CAAC;AAEF,eAAO,MAAM,0BAA0B,cACxB,UAAU,wBACC,QAAQ,eAAe,CAAC,KAC/C,OAYF,CAAC;AAIF,eAAO,MAAM,6BAA6B,cAC3B,UAAU,wBACC,QAAQ,eAAe,CAAC,KAC/C,
|
|
1
|
+
{"version":3,"file":"CaseHelpers.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseHelpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,qDAAqD,CAAC;AACpG,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,yCAAyC,CAAC;AACvG,OAAO,EAAE,YAAY,EAAE,MAAM,iDAAiD,CAAC;AAC/E,OAAO,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAC/E,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAmB3D,OAAO,EAOH,UAAU,EAiBb,MAAM,mBAAmB,CAAC;AAE3B,eAAO,MAAM,sBAAsB,SAAU,mBAAmB,EAAE,wBAMjE,CAAC;AAEF,eAAO,MAAM,2BAA2B,eAAgB,WAAW,KAAG,MAOrE,CAAC;AAEF,eAAO,MAAM,uBAAuB,QAAS,mBAAmB,SAAS,MAAM,sBAyB9E,CAAC;AAIF,eAAO,MAAM,qBAAqB,UACvB,MAAM,gBACC,MAAM,uBACC,MAAM,yBACJ,MAAM,kBACb,MAAM,YACZ,MAAM,YACN,MAAM,KACjB,MAyBF,CAAC;AAIF,eAAO,MAAM,oBAAoB,UACtB,MAAM,gBACC,MAAM,uBACC,MAAM,yBACJ,MAAM,KAC9B,MAQF,CAAC;AAEF,eAAO,MAAM,uBAAuB,iBAAkB,MAAM,YAAY,MAAM,KAAG,MAQhF,CAAC;AAEF,eAAO,MAAM,uBAAuB,aAAc,MAAM,KAAG,MAM1D,CAAC;AAEF,eAAO,MAAM,uBAAuB,iBAAkB,MAAM,YAAY,MAAM,KAAG,MAQhF,CAAC;AAEF,eAAO,MAAM,sBAAsB,aAAc,MAAM,KAAG,MAKzD,CAAC;AAEF,eAAO,MAAM,gBAAgB,+CAqC5B,CAAC;AAIF,eAAO,MAAM,gBAAgB,cAAe,UAAU,wBAAwB,QAAQ,eAAe,CAAC,KAAG,OA6BxG,CAAC;AAEF,eAAO,MAAM,oBAAoB,cAClB,UAAU,wBACC,QAAQ,eAAe,CAAC,KAC/C,OAyBF,CAAC;AAEF,eAAO,MAAM,0BAA0B,cACxB,UAAU,wBACC,QAAQ,eAAe,CAAC,KAC/C,OAYF,CAAC;AAIF,eAAO,MAAM,6BAA6B,cAC3B,UAAU,wBACC,QAAQ,eAAe,CAAC,KAC/C,OAkBF,CAAC;AAEF,eAAO,MAAM,iBAAiB,cACf,UAAU,gBACP,YAAY,iBACZ,OAAO,KACtB,QAAQ,YAAY,CA6EtB,CAAC;AAEF,eAAO,MAAM,wBAAwB,qBAAsB,YAAY,EAAE,KAAG,YAAY,EAEvF,CAAC;AACF,eAAO,MAAM,yBAAyB,qBAAsB,YAAY,EAAE,KAAG,OAE5E,CAAC;AAEF,eAAO,MAAM,yBAAyB,gBACrB,YAAY,6BACE,MAAM,mBAChB,MAAM,KACxB,QAAQ,YAAY,CAiCtB,CAAC;AACF,eAAO,MAAM,yBAAyB,gBACrB,QAAQ,YAAY,CAAC,gCACJ,QAAQ,EAAE,KACzC,eAiDF,CAAC"}
|
|
@@ -8,7 +8,7 @@ import unionBy from 'lodash/unionBy';
|
|
|
8
8
|
import uniqBy from 'lodash/uniqBy';
|
|
9
9
|
import { isPhoneValid, trimAndReplacePlus } from '../components/shared/utils';
|
|
10
10
|
import { getIsClusterIdInvalid, isClusterIdEnabledForProduct } from '../utils/caseOpenshiftClusterIdUtils';
|
|
11
|
-
import {
|
|
11
|
+
import { CASE_DETAILS_ISSUE_LIMIT, CASE_REFERENCE_NUMBER_LIMIT, CLUSTER_ID_LIMIT, CONTACT_INFO_24X7_LIMIT, DESCRIPTION_LENGTH_LIMIT, HOSTNAME_LENGTH_LIMIT, ITRForSLASeverity, KTQUESTION_MAX_LIMIT, KtQuestionConstant, SESSION_ENVIRONMENT_LIMIT, SESSION_ISSUE_LIMIT, SESSION_NO_CLUSTER_REASON_EXPLANATION_LENGTH_LIMIT, SESSION_NO_CLUSTER_REASON_LENGTH_LIMIT, SESSION_NOTIFIED_USERS_EXTERNAL_LIMIT, SESSION_NOTIFIED_USERS_INTERNAL_LIMIT, SESSION_PERIODICITY_OF_ISSUE_LIMIT, SESSION_PHONE_LENGTH_LIMIT, SESSION_TIME_FRAMES_URGENCY_LIMIT, SeverityDescription, SeverityDescriptionDetails, TITLE_SUMMARY_LENGTH_LIMIT, } from './CaseConstNTypes';
|
|
12
12
|
export const getCaseRecommendations = (docs, oldDocs) => {
|
|
13
13
|
const recs = [];
|
|
14
14
|
docs.forEach((doc, i) => {
|
|
@@ -207,11 +207,10 @@ export const isCaseInformationSectionValid = (caseState, loggedInUserJwtToken) =
|
|
|
207
207
|
!isEmpty(case_details.timeFramesAndUrgency) &&
|
|
208
208
|
case_details.timeFramesAndUrgency.length <= KTQUESTION_MAX_LIMIT &&
|
|
209
209
|
!isEmpty(case_details.issue) &&
|
|
210
|
-
case_details.issue.length <=
|
|
210
|
+
case_details.issue.length <= CASE_DETAILS_ISSUE_LIMIT &&
|
|
211
211
|
case_details.environment.length <= KTQUESTION_MAX_LIMIT &&
|
|
212
212
|
case_details.periodicityOfIssue.length <= KTQUESTION_MAX_LIMIT &&
|
|
213
213
|
!isEmpty(case_details.accountNumberRef) &&
|
|
214
|
-
!isEmpty(case_details.contactSSOName) &&
|
|
215
214
|
canManageCase(loggedInUserJwtToken));
|
|
216
215
|
};
|
|
217
216
|
export const createCasePayload = (caseState, sessionItem, isCaseCreate = false) => {
|
|
@@ -741,3 +741,23 @@ a.case-resource-recommendation-link {
|
|
|
741
741
|
.kt-progress-bar {
|
|
742
742
|
padding-top: 1em;
|
|
743
743
|
}
|
|
744
|
+
|
|
745
|
+
.title-summary-error {
|
|
746
|
+
margin-top: -8px;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.extra-tips-for-describing {
|
|
750
|
+
display: block;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.star-icon-info {
|
|
754
|
+
color: var(--pf-v5-global--palette--blue-400);
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.badge-icon-info {
|
|
758
|
+
background-color: var(--pf-v5-global--palette--blue-50);
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.popover-body-info-description {
|
|
762
|
+
max-width: 494px;
|
|
763
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.153",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"@progress/kendo-licensing": "1.3.5",
|
|
61
61
|
"@progress/kendo-react-pdf": "^5.16.0",
|
|
62
62
|
"@redux-devtools/extension": "^3.3.0",
|
|
63
|
-
"@rh-support/components": "2.1.
|
|
64
|
-
"@rh-support/react-context": "2.1.
|
|
63
|
+
"@rh-support/components": "2.1.77",
|
|
64
|
+
"@rh-support/react-context": "2.1.86",
|
|
65
65
|
"@rh-support/types": "2.0.4",
|
|
66
66
|
"@rh-support/user-permissions": "2.1.49",
|
|
67
67
|
"@rh-support/utils": "2.1.38",
|
|
@@ -131,5 +131,5 @@
|
|
|
131
131
|
"defaults and supports es6-module",
|
|
132
132
|
"maintained node versions"
|
|
133
133
|
],
|
|
134
|
-
"gitHead": "
|
|
134
|
+
"gitHead": "c83dfde6b2b3b941cf947014ae27f94b9581fb61"
|
|
135
135
|
}
|