@rh-support/troubleshoot 1.0.47-beta.51 → 1.0.47-beta.53
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/CaseEditView/CaseDetailsAside.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/CaseDetailsAside.js +2 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDetails/CaseContactPhoneNumber.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDetails/CaseContactPhoneNumber.js +1 -0
- package/lib/esm/components/CaseEditView/Tabs/CaseDetails/CaseInformation.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDetails/CaseInformation.js +13 -2
- package/lib/esm/components/ImproveCase/Hostname.d.ts.map +1 -1
- package/lib/esm/components/ImproveCase/Hostname.js +2 -2
- package/lib/esm/components/SubmitCase/SubmitCase.d.ts.map +1 -1
- package/lib/esm/components/SubmitCase/SubmitCase.js +10 -6
- package/lib/esm/reducers/CaseConstNTypes.d.ts +2 -1
- package/lib/esm/reducers/CaseConstNTypes.d.ts.map +1 -1
- package/lib/esm/reducers/CaseConstNTypes.js +1 -0
- package/package.json +6 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseDetailsAside.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/CaseDetailsAside.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CaseDetailsAside.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/CaseDetailsAside.tsx"],"names":[],"mappings":"AA6BA,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;CACtB;AAMD,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,MAAM,eA+T7C"}
|
|
@@ -22,6 +22,7 @@ import { isEmpty } from 'lodash';
|
|
|
22
22
|
import isEqual from 'lodash/isEqual';
|
|
23
23
|
import React, { useContext, useEffect, useRef, useState } from 'react';
|
|
24
24
|
import { Trans, useTranslation } from 'react-i18next';
|
|
25
|
+
import { Link } from 'react-router-dom';
|
|
25
26
|
import { useCaseSelector } from '../../context/CaseContext';
|
|
26
27
|
import { useCaseDetailsPageStateContext } from '../../context/CaseDetailsPageContext';
|
|
27
28
|
import { useRecommendationStateContext } from '../../context/RecommendationContext';
|
|
@@ -139,7 +140,7 @@ export function CaseDetailsAside(props) {
|
|
|
139
140
|
ToastNotification.addSuccessMessage(t('Successfully set the default case view'), React.createElement("p", null,
|
|
140
141
|
React.createElement(Trans, null,
|
|
141
142
|
"You can view these settings in ",
|
|
142
|
-
React.createElement(
|
|
143
|
+
React.createElement(Link, { to: '/cases/#/manage/preferences' }, "Preferences"))));
|
|
143
144
|
}
|
|
144
145
|
catch (error) {
|
|
145
146
|
console.log(error);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseContactPhoneNumber.d.ts","sourceRoot":"","sources":["../../../../../../src/components/CaseEditView/Tabs/CaseDetails/CaseContactPhoneNumber.tsx"],"names":[],"mappings":"AAsBA,wBAAgB,sBAAsB,
|
|
1
|
+
{"version":3,"file":"CaseContactPhoneNumber.d.ts","sourceRoot":"","sources":["../../../../../../src/components/CaseEditView/Tabs/CaseDetails/CaseContactPhoneNumber.tsx"],"names":[],"mappings":"AAsBA,wBAAgB,sBAAsB,gBA4IrC"}
|
|
@@ -36,6 +36,7 @@ export function CaseContactPhoneNumber() {
|
|
|
36
36
|
const caseDispatch = useCaseDispatch();
|
|
37
37
|
const caseUpdateError = useCaseUpdateErrorMessage();
|
|
38
38
|
const { t } = useTranslation();
|
|
39
|
+
// To handle phone change
|
|
39
40
|
const onPhoneChange = (phone) => __awaiter(this, void 0, void 0, function* () {
|
|
40
41
|
if (canEditCase.alert())
|
|
41
42
|
return;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseInformation.d.ts","sourceRoot":"","sources":["../../../../../../src/components/CaseEditView/Tabs/CaseDetails/CaseInformation.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"CaseInformation.d.ts","sourceRoot":"","sources":["../../../../../../src/components/CaseEditView/Tabs/CaseDetails/CaseInformation.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAe5D,UAAU,MAAO,SAAQ,gBAAgB;CAAG;AAE5C,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,eAqE5C"}
|
|
@@ -2,10 +2,12 @@ import { encodeAngularBrackets, linkifyBZIDs, linkifyWithCaseIDs } from '@cee-en
|
|
|
2
2
|
import { MoreOrLess } from '@rh-support/components';
|
|
3
3
|
import { useGlobalStateContext } from '@rh-support/react-context';
|
|
4
4
|
import { ability, CaseDetailsFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
5
|
+
import { PreviousCaseTypes } from '@rh-support/utils';
|
|
5
6
|
import { isEqual } from 'lodash';
|
|
6
7
|
import React from 'react';
|
|
7
8
|
import { Trans } from 'react-i18next';
|
|
8
9
|
import { useCaseSelector } from '../../../../context/CaseContext';
|
|
10
|
+
import { KtQuestionConstant } from '../../../../reducers/CaseConstNTypes';
|
|
9
11
|
import { isClusterIdEnabledForProduct } from '../../../../utils/caseOpenshiftClusterIdUtils';
|
|
10
12
|
import EditDescription from '../../../EditDescription/EditDescription';
|
|
11
13
|
import { CaseHostname } from './CaseHostname';
|
|
@@ -13,11 +15,20 @@ import { CaseOpenshiftClusterId } from './CaseOpenshiftClusterId/CaseOpenshiftCl
|
|
|
13
15
|
import ProductVersion from './ProductVersion';
|
|
14
16
|
export function CaseInformation(props) {
|
|
15
17
|
var _a;
|
|
16
|
-
const { product, description } = useCaseSelector((state) => ({
|
|
18
|
+
const { product, description, caseType } = useCaseSelector((state) => ({
|
|
17
19
|
product: state.caseDetails.product,
|
|
18
20
|
description: state.caseDetails.description,
|
|
21
|
+
caseType: state.caseDetails.caseType,
|
|
19
22
|
}), isEqual);
|
|
20
23
|
const { globalMetadataState: { navBarRef, allProducts }, } = useGlobalStateContext();
|
|
24
|
+
// To replace description KTQ for Idea
|
|
25
|
+
const replaceDescriptionHeading = (description) => {
|
|
26
|
+
let ideaHeading = KtQuestionConstant.ideaIssue;
|
|
27
|
+
let normalHeading = KtQuestionConstant.issue;
|
|
28
|
+
let replacedDescription = description === null || description === void 0 ? void 0 : description.replace(normalHeading, ideaHeading);
|
|
29
|
+
const finalDescription = caseType === PreviousCaseTypes.FEATURE_ENHANCEMENT ? replacedDescription : description;
|
|
30
|
+
return finalDescription;
|
|
31
|
+
};
|
|
21
32
|
const linkifiedDescription = (text) => {
|
|
22
33
|
text = encodeAngularBrackets(text);
|
|
23
34
|
text = linkifyWithCaseIDs(text);
|
|
@@ -36,6 +47,6 @@ export function CaseInformation(props) {
|
|
|
36
47
|
React.createElement(Trans, null, "Description")),
|
|
37
48
|
React.createElement(MoreOrLess, { maxHeight: 600, appStickyHeaderRef: navBarRef },
|
|
38
49
|
React.createElement("pre", { id: "case-description" },
|
|
39
|
-
React.createElement("div", { dangerouslySetInnerHTML: linkifiedDescription(description) }))))) : (React.createElement(MoreOrLess, { maxHeight: 600, appStickyHeaderRef: navBarRef },
|
|
50
|
+
React.createElement("div", { dangerouslySetInnerHTML: linkifiedDescription(replaceDescriptionHeading(description)) }))))) : (React.createElement(MoreOrLess, { maxHeight: 600, appStickyHeaderRef: navBarRef },
|
|
40
51
|
React.createElement(EditDescription, { inlineEditable: true })))))));
|
|
41
52
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Hostname.d.ts","sourceRoot":"","sources":["../../../../src/components/ImproveCase/Hostname.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Hostname.d.ts","sourceRoot":"","sources":["../../../../src/components/ImproveCase/Hostname.tsx"],"names":[],"mappings":"AAUA,UAAU,MAAM;CAAG;AAEnB,wBAAgB,QAAQ,CAAC,KAAK,EAAE,MAAM,eAkDrC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AbilityContext, CaseListFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
2
2
|
import React, { useContext } from 'react';
|
|
3
3
|
import { Trans, useTranslation } from 'react-i18next';
|
|
4
|
+
import { Link } from 'react-router-dom';
|
|
4
5
|
import { useCaseDispatch, useCaseSelector } from '../../context/CaseContext';
|
|
5
6
|
import { HOSTNAME_LENGTH_LIMIT } from '../../reducers/CaseConstNTypes';
|
|
6
7
|
import { setCaseDetails } from '../../reducers/CaseReducer';
|
|
@@ -35,6 +36,5 @@ export function Hostname(props) {
|
|
|
35
36
|
React.createElement("strong", null, "private"),
|
|
36
37
|
". Red Hat does not have access to view hostnames unless you",
|
|
37
38
|
' ',
|
|
38
|
-
React.createElement(
|
|
39
|
-
"."))));
|
|
39
|
+
React.createElement(Link, { to: '/cases/#/manage/preferences' }, "choose to share")))));
|
|
40
40
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SubmitCase.d.ts","sourceRoot":"","sources":["../../../../src/components/SubmitCase/SubmitCase.tsx"],"names":[],"mappings":"AA2BA,MAAM,CAAC,OAAO,UAAU,UAAU,
|
|
1
|
+
{"version":3,"file":"SubmitCase.d.ts","sourceRoot":"","sources":["../../../../src/components/SubmitCase/SubmitCase.tsx"],"names":[],"mappings":"AA2BA,MAAM,CAAC,OAAO,UAAU,UAAU,gBAiRjC"}
|
|
@@ -77,7 +77,9 @@ export default function SubmitCase() {
|
|
|
77
77
|
showRemoteRiderTermsInline &&
|
|
78
78
|
!selectedAccountDetails.data.remoteSessionTermsAcked &&
|
|
79
79
|
!isIdea;
|
|
80
|
-
const
|
|
80
|
+
const viewDisabled = isEmpty(attachmentState.caseFiles.selectedLocalFiles)
|
|
81
|
+
? false
|
|
82
|
+
: attachmentState.caseFiles.selectedLocalFiles.every((localFile) => !isUploadedAndAnalyzed(localFile));
|
|
81
83
|
return (React.createElement(React.Fragment, null,
|
|
82
84
|
React.createElement(AlertMessage, { className: "push-top", title: t('Failed to add user.'), variant: AlertType.DANGER, show: addNotifiedUserError }),
|
|
83
85
|
React.createElement(AlertMessage, { className: "push-top", variant: AlertType.DANGER, show: caseCreationError, title: t("Sorry, we're experiencing an error"), isInline: true },
|
|
@@ -95,7 +97,7 @@ export default function SubmitCase() {
|
|
|
95
97
|
React.createElement("div", { className: "pf-u-mt-sm" },
|
|
96
98
|
React.createElement(Trans, null, "Case number:"),
|
|
97
99
|
"\u00A0",
|
|
98
|
-
React.createElement(Link, { to: `/case/${caseNumber}`, "data-tracking-id": "get-support-queued-case-number", className:
|
|
100
|
+
React.createElement(Link, { to: `/case/${caseNumber}`, "data-tracking-id": "get-support-queued-case-number", className: viewDisabled ? 'case-link-disabled' : '' }, caseNumber)))) : (React.createElement(React.Fragment, null,
|
|
99
101
|
React.createElement("div", { className: "submit-page-title" },
|
|
100
102
|
React.createElement(CheckCircleIcon, { size: "lg" }),
|
|
101
103
|
' ',
|
|
@@ -103,7 +105,7 @@ export default function SubmitCase() {
|
|
|
103
105
|
React.createElement(Trans, null, "We\u2019ve added your case to our queue"))),
|
|
104
106
|
React.createElement(React.Fragment, null,
|
|
105
107
|
React.createElement(Trans, null, "Case number: "),
|
|
106
|
-
React.createElement("a", { href: getCaseURL(), target: "_blank", rel: "noopener noreferrer", "data-tracking-id": "get-support-case-number", className:
|
|
108
|
+
React.createElement("a", { href: getCaseURL(), target: "_blank", rel: "noopener noreferrer", "data-tracking-id": "get-support-case-number", className: viewDisabled ? 'case-link-disabled' : '' }, caseNumber))))),
|
|
107
109
|
React.createElement("p", null,
|
|
108
110
|
!versionsDetails.isFetching &&
|
|
109
111
|
!versionsDetails.isFetching &&
|
|
@@ -130,11 +132,13 @@ export default function SubmitCase() {
|
|
|
130
132
|
React.createElement(ActionListItem, null,
|
|
131
133
|
React.createElement(Button, { component: "a", href: `${getRedhatDotComHost(Env.getEnvName())}/wapps/ugc/protected/personalInfo.html`, target: "_blank", variant: "secondary", "data-tracking-id": "get-support-update-info" }, "Update info")),
|
|
132
134
|
React.createElement(ActionListItem, null,
|
|
133
|
-
React.createElement(Button, { className: "pf-u-ml-md", component: (props) => React.createElement(Link, Object.assign({}, props, { to: `/case/${caseNumber}` })), href: getCaseURL(), variant: "primary", "data-tracking-id": "get-support-view-case", isDisabled:
|
|
135
|
+
React.createElement(Button, { className: "pf-u-ml-md", component: (props) => React.createElement(Link, Object.assign({}, props, { to: `/case/${caseNumber}` })), href: getCaseURL(), variant: "primary", "data-tracking-id": "get-support-view-case", isDisabled: viewDisabled }, "View case"))))),
|
|
134
136
|
!isEmpty(attachmentState.caseFiles.selectedLocalFiles) && (React.createElement(FileUploader, { idToUploadTo: caseNumber, isSessionId: false, isSecureSupport: loggedInUsersAccount.data.secureSupport })),
|
|
135
137
|
React.createElement("div", null,
|
|
136
|
-
(!isEmpty(topContent.data) ||
|
|
137
|
-
!
|
|
138
|
+
(!isEmpty(topContent.data) ||
|
|
139
|
+
!rulesState.EARules.rules ||
|
|
140
|
+
!clusterRecommendations ||
|
|
141
|
+
!isIdea) && (React.createElement(Text, { className: "pf-u-mt-2xl pf-u-font-weight-light", component: TextVariants.h2 },
|
|
138
142
|
React.createElement(Trans, null, "Troubleshoot this case"))),
|
|
139
143
|
React.createElement("div", { className: isIdea ? 'pf-u-mt-lg' : '' },
|
|
140
144
|
React.createElement(InsightsResults, { isDisplayOnMain: true })),
|
|
@@ -36,7 +36,8 @@ export declare enum KtQuestionConstant {
|
|
|
36
36
|
issue = "What are you experiencing? What are you expecting to happen?",
|
|
37
37
|
timeFramesAndUrgency = "Define the value or impact to you or the business",
|
|
38
38
|
environment = "Where are you experiencing this behavior? What environment?",
|
|
39
|
-
periodicityOfIssue = "When does this behavior occur? Frequency? Repeatedly? At certain times?"
|
|
39
|
+
periodicityOfIssue = "When does this behavior occur? Frequency? Repeatedly? At certain times?",
|
|
40
|
+
ideaIssue = "Please describe your request"
|
|
40
41
|
}
|
|
41
42
|
export declare const enum SupportLevelsInternal {
|
|
42
43
|
SELF_SUPPORT = "selfSupport",
|
|
@@ -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,oBAAoB,MAAM,CAAC;AACxC,eAAO,MAAM,mCAAmC,MAAM,CAAC;AACvD,eAAO,MAAM,+BAA+B,MAAM,CAAC;AACnD,eAAO,MAAM,wBAAwB,QAAQ,CAAC;AAC9C,eAAO,MAAM,iCAAiC,QAAQ,CAAC;AACvD,eAAO,MAAM,qBAAqB,MAAM,CAAC;AACzC,eAAO,MAAM,uBAAuB,QAAQ,CAAC;AAC7C,eAAO,MAAM,gBAAgB,MAAM,CAAC;AACpC,eAAO,MAAM,2BAA2B,MAAM,CAAC;AAC/C,eAAO,MAAM,WAAW,KAAK,CAAC;AAC9B,eAAO,MAAM,qCAAqC,OAAO,CAAC;AAC1D,eAAO,MAAM,qCAAqC,OAAO,CAAC;AAC1D,eAAO,MAAM,iCAAiC,QAAQ,CAAC;AACvD,eAAO,MAAM,kCAAkC,QAAQ,CAAC;AACxD,eAAO,MAAM,mBAAmB,QAAQ,CAAC;AACzC,eAAO,MAAM,yBAAyB,QAAQ,CAAC;AAC/C,eAAO,MAAM,0BAA0B,OAAO,CAAC;AAC/C,eAAO,MAAM,sCAAsC,MAAM,CAAC;AAC1D,eAAO,MAAM,kDAAkD,MAAM,CAAC;AACtE,eAAO,MAAM,0BAA0B,KAAK,CAAC;AAI7C,eAAO,MAAM,wBAAwB,QAAQ,CAAC;AAC9C,eAAO,MAAM,uCAAuC,OAAO,CAAC;AAC5D,eAAO,MAAM,8BAA8B,OAAO,CAAC;AACnD,eAAO,MAAM,qCAAqC,OAAO,CAAC;AAE1D,eAAO,MAAM,4BAA4B,2DAA2D,CAAC;AAGrG,oBAAY,kBAAkB;IAC1B,KAAK,iEAAiE;IACtE,oBAAoB,sDAAsD;IAC1E,WAAW,gEAAgE;IAC3E,kBAAkB,4EAA4E;
|
|
1
|
+
{"version":3,"file":"CaseConstNTypes.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseConstNTypes.ts"],"names":[],"mappings":"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"}
|
|
@@ -33,6 +33,7 @@ export var KtQuestionConstant;
|
|
|
33
33
|
KtQuestionConstant["timeFramesAndUrgency"] = "Define the value or impact to you or the business";
|
|
34
34
|
KtQuestionConstant["environment"] = "Where are you experiencing this behavior? What environment?";
|
|
35
35
|
KtQuestionConstant["periodicityOfIssue"] = "When does this behavior occur? Frequency? Repeatedly? At certain times?";
|
|
36
|
+
KtQuestionConstant["ideaIssue"] = "Please describe your request";
|
|
36
37
|
})(KtQuestionConstant || (KtQuestionConstant = {}));
|
|
37
38
|
export const SupportLevelDisplay = {
|
|
38
39
|
STANDARD: 'Standard',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "1.0.47-beta.
|
|
3
|
+
"version": "1.0.47-beta.53",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -73,11 +73,11 @@
|
|
|
73
73
|
"@patternfly/react-core": "4.264.0",
|
|
74
74
|
"@progress/kendo-drawing": "^1.6.0",
|
|
75
75
|
"@progress/kendo-react-pdf": "^3.12.0",
|
|
76
|
-
"@rh-support/components": "1.2.22-beta.
|
|
77
|
-
"@rh-support/react-context": "1.0.30-beta.
|
|
76
|
+
"@rh-support/components": "1.2.22-beta.52",
|
|
77
|
+
"@rh-support/react-context": "1.0.30-beta.52",
|
|
78
78
|
"@rh-support/types": "0.2.1-beta.33",
|
|
79
|
-
"@rh-support/user-permissions": "1.0.12-beta.
|
|
80
|
-
"@rh-support/utils": "1.0.10-beta.
|
|
79
|
+
"@rh-support/user-permissions": "1.0.12-beta.52",
|
|
80
|
+
"@rh-support/utils": "1.0.10-beta.52",
|
|
81
81
|
"@types/react-redux": "^7.1.12",
|
|
82
82
|
"@types/redux": "^3.6.0",
|
|
83
83
|
"@webcomponents/webcomponentsjs": "^2.2.10",
|
|
@@ -145,5 +145,5 @@
|
|
|
145
145
|
"not ie <= 11",
|
|
146
146
|
"not op_mini all"
|
|
147
147
|
],
|
|
148
|
-
"gitHead": "
|
|
148
|
+
"gitHead": "f890ab87fda649bba220538a089f00bc770ad955"
|
|
149
149
|
}
|