@rh-support/manage 2.5.185 → 2.5.192

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 (21) hide show
  1. package/lib/esm/ManageTabs.js +1 -1
  2. package/lib/esm/components/Groups/GroupSelect/GroupSelect.d.ts.map +1 -1
  3. package/lib/esm/components/Groups/GroupSelect/GroupSelect.js +23 -8
  4. package/lib/esm/components/ManageBookmarkedAccountsTab/ManageGroupedBookmarkedAccountsTab.js +1 -1
  5. package/lib/esm/components/ManageExpiredContents/ExpiredContentSingleItemView.d.ts.map +1 -1
  6. package/lib/esm/components/ManageExpiredContents/ExpiredContentSingleItemView.js +7 -1
  7. package/lib/esm/components/ManagePartnerships/PartnershipsList.d.ts.map +1 -1
  8. package/lib/esm/components/ManagePartnerships/PartnershipsList.js +12 -4
  9. package/lib/esm/components/ManagePartnerships/Requests.d.ts.map +1 -1
  10. package/lib/esm/components/ManagePartnerships/Requests.js +9 -4
  11. package/lib/esm/components/ManagePreferences/sections/PreferencesACL.js +1 -1
  12. package/lib/esm/components/ManagePreferences/sections/PreferencesCaseView.js +1 -1
  13. package/lib/esm/components/TopContentManagement/CategoryLimit/CategoryLimit.js +1 -1
  14. package/lib/esm/components/TopContentManagement/TopContentEditor/TopContentCategoryContent/TopContentComponent.d.ts.map +1 -1
  15. package/lib/esm/components/TopContentManagement/TopContentEditor/TopContentCategoryContent/TopContentComponent.js +8 -2
  16. package/lib/esm/components/TopContentManagement/TopContentEditor/TopContentCategoryContent/TopContentSingleItem.js +1 -1
  17. package/lib/esm/reducers/TopContentReducer.d.ts.map +1 -1
  18. package/lib/esm/reducers/TopContentReducer.js +5 -2
  19. package/lib/esm/scss/_main.scss +12 -5
  20. package/lib/esm/scss/_pf-overrides.scss +4 -0
  21. package/package.json +8 -8
@@ -130,7 +130,7 @@ export function ManageTabs(props) {
130
130
  return (React.createElement("div", { className: "grid-main manage" },
131
131
  React.createElement(ErrorBoundary, { isPageLevelError: true }, (_b = (_a = tabsToRender[0]) === null || _a === void 0 ? void 0 : _a.component) !== null && _b !== void 0 ? _b : React.createElement(React.Fragment, null))));
132
132
  /**
133
- * Render array with tabs
133
+ * Render array with tabs
134
134
  */
135
135
  return (React.createElement("div", { className: "grid-main manage", role: "region", style: { display: 'flex' } },
136
136
  React.createElement(Tabs, { activeKey: getActiveTabKey(), onSelect: handleTabClick, "aria-label": t('Manage tabs'), component: TabsComponent.nav, isVertical: true, style: { width: 'auto' } }, map(tabsToRender, (tab, index) => (React.createElement(Tab, { eventKey: index, tabContentRef: tab.ref, tabContentId: `pf-tab-${index}-${tab.title.split(' ')[0]}-tabpanel`, title: React.createElement(TabTitleText, null,
@@ -1 +1 @@
1
- {"version":3,"file":"GroupSelect.d.ts","sourceRoot":"","sources":["../../../../../src/components/Groups/GroupSelect/GroupSelect.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,+CAA+C,CAAC;AAwC3E,OAAO,KAAmD,MAAM,OAAO,CAAC;AAKxE,UAAU,MAAM;IACZ,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI,KAAK,IAAI,CAAC;CAChD;AAKD,eAAO,MAAM,WAAW,GAAI,OAAO,MAAM,sBA0hBxC,CAAC"}
1
+ {"version":3,"file":"GroupSelect.d.ts","sourceRoot":"","sources":["../../../../../src/components/Groups/GroupSelect/GroupSelect.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,+CAA+C,CAAC;AAwC3E,OAAO,KAAmD,MAAM,OAAO,CAAC;AAKxE,UAAU,MAAM;IACZ,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI,KAAK,IAAI,CAAC;CAChD;AAKD,eAAO,MAAM,WAAW,GAAI,OAAO,MAAM,sBA+iBxC,CAAC"}
@@ -41,7 +41,7 @@ export const GroupSelect = (props) => {
41
41
  useEffect(() => {
42
42
  var _a, _b;
43
43
  if (haventLoadedMetadata(caseGroups, (data) => data === undefined))
44
- fetchCaseGroupsForSSO(dispatch, loggedInUserJwtToken.username);
44
+ fetchCaseGroupsForSSO(dispatch, loggedInUserJwtToken.preferred_username);
45
45
  if (isEmpty(selectedGroup) && !isEmpty(caseGroups) && ((_a = caseGroups === null || caseGroups === void 0 ? void 0 : caseGroups.data) === null || _a === void 0 ? void 0 : _a.length) > 0) {
46
46
  const defaultCaseGroup = find(caseGroups === null || caseGroups === void 0 ? void 0 : caseGroups.data, (g) => g.isDefault);
47
47
  const newSelectedGroup = (defaultCaseGroup === null || defaultCaseGroup === void 0 ? void 0 : defaultCaseGroup.groupNum) === '-1'
@@ -54,7 +54,7 @@ export const GroupSelect = (props) => {
54
54
  }
55
55
  // eslint-disable-next-line react-hooks/exhaustive-deps
56
56
  }, [dispatch, loggedInUserJwtToken, caseGroups]);
57
- // handle dropdown open/close toggle.
57
+ // handle dropdown open/close toggle
58
58
  const [isOpen, setIsOpen] = useState(false);
59
59
  // handle group selection
60
60
  const [selectedGroup, setSelectedGroup] = useState();
@@ -85,6 +85,7 @@ export const GroupSelect = (props) => {
85
85
  const [isDropdownOpen, setIsDropdownOpen] = useState(false);
86
86
  const toggleIsDropdownOpen = () => setIsDropdownOpen(!isDropdownOpen);
87
87
  const closeDropdown = () => setIsDropdownOpen(false);
88
+ const [activeItem, setActiveItem] = useState(null);
88
89
  const onActionFocus = (action) => () => {
89
90
  closeDropdown();
90
91
  setAction(action);
@@ -103,16 +104,27 @@ export const GroupSelect = (props) => {
103
104
  deleteGroupFetch.isFetching ||
104
105
  duplicateGroupFetch.isFetching;
105
106
  const onChange = (e, value) => {
107
+ setIsOpen(true);
106
108
  setInput(value);
107
109
  if (value !== input) {
108
110
  setShouldFilter(true);
109
111
  }
110
112
  };
111
113
  useEffect(() => setInput(selectedGroup), [selectedGroup]);
114
+ useEffect(() => {
115
+ if (input && input != selectedGroup) {
116
+ if (!isOpen) {
117
+ setIsOpen(true);
118
+ }
119
+ }
120
+ setFocusedItemIndex(-1);
121
+ setActiveItem(null);
122
+ // eslint-disable-next-line react-hooks/exhaustive-deps
123
+ }, [input]);
112
124
  // group actions
113
125
  function setGroupOnFetch(groupName) {
114
126
  return __awaiter(this, void 0, void 0, function* () {
115
- yield fetchCaseGroupsForSSO(dispatch, loggedInUserJwtToken.username);
127
+ yield fetchCaseGroupsForSSO(dispatch, loggedInUserJwtToken.preferred_username);
116
128
  setSelectedGroup(groupName);
117
129
  });
118
130
  }
@@ -146,7 +158,7 @@ export const GroupSelect = (props) => {
146
158
  ToastNotification.addWarningMessage(t('Group already exists'));
147
159
  break;
148
160
  }
149
- yield createGroup(input, loggedInUserJwtToken.username);
161
+ yield createGroup(input, loggedInUserJwtToken.preferred_username);
150
162
  setAction('');
151
163
  break;
152
164
  }
@@ -218,7 +230,10 @@ export const GroupSelect = (props) => {
218
230
  break;
219
231
  }
220
232
  try {
221
- yield duplicateGroupFetch.request({ name: input, contactSsoName: loggedInUserJwtToken.username });
233
+ yield duplicateGroupFetch.request({
234
+ name: input,
235
+ contactSsoName: loggedInUserJwtToken.preferred_username,
236
+ });
222
237
  yield setGroupOnFetch(input);
223
238
  setShowDropdown(true);
224
239
  setShowInput(false);
@@ -332,7 +347,7 @@ export const GroupSelect = (props) => {
332
347
  .filter((g) => !shouldFilter ||
333
348
  isEmpty(input && typeof input === 'string' && input.trim()) ||
334
349
  g.name.toLowerCase().includes(input.toLowerCase()));
335
- const { focusedItemIndex, onInputKeyDown } = useSelectKeyboardNavigator({
350
+ const { focusedItemIndex, onInputKeyDown, setFocusedItemIndex } = useSelectKeyboardNavigator({
336
351
  list: filteredGroups,
337
352
  isOpen,
338
353
  ignoreResetOnListChange: true,
@@ -343,7 +358,7 @@ export const GroupSelect = (props) => {
343
358
  });
344
359
  const toggle = (toggleRef) => (React.createElement(MenuToggle, { ref: toggleRef, variant: "typeahead", onClick: onToggleClick, isExpanded: isOpen, isFullWidth: true, isDisabled: props.isDisabled },
345
360
  React.createElement(TextInputGroup, { isPlain: true },
346
- React.createElement(TextInputGroupMain, { value: input, onClick: onToggleClick, onKeyDown: onInputKeyDown, onChange: onChange, autoComplete: "off", innerRef: textInputRef, placeholder: selectAGroupText, role: "combobox", isExpanded: isOpen, "aria-controls": "group-selector-listbox" }),
361
+ React.createElement(TextInputGroupMain, Object.assign({ value: input, onClick: onToggleClick, onKeyDown: onInputKeyDown, onChange: onChange, autoComplete: "off", innerRef: textInputRef, placeholder: selectAGroupText, role: "combobox", isExpanded: isOpen, "aria-controls": "group-selector-listbox" }, (activeItem && { 'aria-activedescendant': activeItem }))),
347
362
  caseGroups.isFetching ? (React.createElement(TextInputGroupUtilities, null,
348
363
  React.createElement(Spinner, { size: "md" }))) : (React.createElement(TextInputGroupUtilities, Object.assign({}, (!input ? { style: { display: 'none' } } : {})),
349
364
  React.createElement(Button, { icon: React.createElement(TimesIcon, { "aria-hidden": true }), variant: "plain", onClick: onClear, "aria-label": "Clear input value" }))))));
@@ -352,7 +367,7 @@ export const GroupSelect = (props) => {
352
367
  !showErrorMessage && !showInput && (React.createElement(React.Fragment, null,
353
368
  React.createElement("label", null,
354
369
  React.createElement(Trans, null, "Group")),
355
- React.createElement(Select, { id: "group-selector", isOpen: isOpen, onSelect: (e, selection) => handleSelect(selection), onOpenChange: (isOpen) => setIsOpen(isOpen), toggle: toggle, selected: selectedGroup, shouldFocusFirstItemOnOpen: false, "aria-label": "Select a group to view accounts", "aria-labelledby": selectAGroupText, "data-tracking-id": "group-list-selector" },
370
+ React.createElement(Select, { id: "group-selector", isOpen: isOpen, onSelect: (e, selection) => handleSelect(selection), onOpenChange: (isOpen) => setIsOpen(isOpen), toggle: toggle, selected: selectedGroup, shouldFocusFirstItemOnOpen: false, "aria-label": "Select a group to view accounts", "aria-labelledby": selectAGroupText, "data-tracking-id": "group-list-selector", isScrollable: true },
356
371
  React.createElement(SelectList, { id: "group-selector-listbox" }, filteredGroups.length > 0 ? (filteredGroups.map((group, index) => (React.createElement(SelectOption, { id: `group-option-${group.name}`, key: index, value: group, isFocused: focusedItemIndex === index, className: "pf-v6-c-select__menu-wrapper", isSelected: group.name === selectedGroup }, group.name)))) : (React.createElement(SelectOption, { key: "no-results", value: '' }, t('No results found'))))))),
357
372
  !showErrorMessage && showDropdown && (React.createElement(Dropdown, { className: "group-actions-dropdown group-action", toggle: dropdownToggle, isOpen: isDropdownOpen, onOpenChange: (isOpen) => setIsDropdownOpen(isOpen), "aria-label": t('Group actions dropdown'), shouldFocusFirstItemOnOpen: false, shouldFocusToggleOnSelect: true },
358
373
  React.createElement(MenuContent, null,
@@ -253,7 +253,7 @@ export function ManageGroupedBookmarkedAccountsTab({ canManageBookmarkAccounts }
253
253
  ' ',
254
254
  "bookmarks in the customer support tool"))), closeBtnAriaLabel: "Close" },
255
255
  React.createElement(Button, { icon: React.createElement(Icon, { size: "md" },
256
- React.createElement(InfoCircleIcon, null)), variant: "plain", className: "manage-bookmark-info-icon-button", "aria-label": "Cluster Id Info" }))))),
256
+ React.createElement(InfoCircleIcon, { color: "#5e40be" })), variant: "plain", className: "manage-bookmark-info-icon-button", "aria-label": "Cluster Id Info" }))))),
257
257
  React.createElement("div", { className: "toolbar pf-v6-u-justify-content-space-between" },
258
258
  React.createElement("form", { onSubmit: (event) => event.preventDefault(), className: "toolbar-left" },
259
259
  React.createElement("label", { htmlFor: "bookmark-account-selector" },
@@ -1 +1 @@
1
- {"version":3,"file":"ExpiredContentSingleItemView.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageExpiredContents/ExpiredContentSingleItemView.tsx"],"names":[],"mappings":"AAkBA,OAAO,KAAgD,MAAM,OAAO,CAAC;AAIrE,OAAO,EAAE,eAAe,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAIjG,UAAU,MAAM;IACZ,OAAO,EAAE,eAAe,CAAC;IACzB,QAAQ,EAAE,wBAAwB,CAAC;IACnC,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,EAAE,CAAC,cAAc,EAAE,GAAG,EAAE,WAAW,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;IAC1D,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,CAAC,OAAO,UAAU,4BAA4B,CAAC,EACjD,QAAQ,EACR,OAAO,EACP,QAAQ,EACR,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,UAAU,GACb,EAAE,MAAM,qBAgOR"}
1
+ {"version":3,"file":"ExpiredContentSingleItemView.d.ts","sourceRoot":"","sources":["../../../../src/components/ManageExpiredContents/ExpiredContentSingleItemView.tsx"],"names":[],"mappings":"AAkBA,OAAO,KAAgD,MAAM,OAAO,CAAC;AAIrE,OAAO,EAAE,eAAe,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAIjG,UAAU,MAAM;IACZ,OAAO,EAAE,eAAe,CAAC;IACzB,QAAQ,EAAE,wBAAwB,CAAC;IACnC,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,EAAE,CAAC,cAAc,EAAE,GAAG,EAAE,WAAW,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;IAC1D,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,CAAC,OAAO,UAAU,4BAA4B,CAAC,EACjD,QAAQ,EACR,OAAO,EACP,QAAQ,EACR,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,UAAU,GACb,EAAE,MAAM,qBAwOR"}
@@ -136,7 +136,13 @@ export default function ExpiredContentSingleItemView({ category, content, onCanc
136
136
  React.createElement(TagsSelector, { tagOptions: tagOptions, onChange: handleLocalTagChange, selectedTags: localSelectedTags, placeholder: t('Select tags to improve discoverability'), id: "expired-content-tag" }))),
137
137
  React.createElement(FlexItem, null,
138
138
  React.createElement(FormGroup, { ref: datePickerMenuAppendRef, label: t('Expiry date') },
139
- React.createElement(DatePicker, { onBlur: onExpiryDateChange, onChange: onExpiryDateChange, value: !isEmpty(localExpiryDate) ? localExpiryDate.split('T')[0] : '', validators: [expiryDateValidator], id: "content-expiry-date", invalidFormatText: t('Invalid date format'), popoverProps: { position: 'top' } })))),
139
+ React.createElement(DatePicker, { onBlur: onExpiryDateChange, onChange: onExpiryDateChange, value: !isEmpty(localExpiryDate) ? localExpiryDate.split('T')[0] : '', validators: [expiryDateValidator], id: "content-expiry-date", invalidFormatText: t('Invalid date format'), popoverProps: {
140
+ position: 'left',
141
+ hasAutoWidth: true,
142
+ maxWidth: '22rem',
143
+ minWidth: '22rem',
144
+ appendTo: () => document.body,
145
+ } })))),
140
146
  React.createElement("span", { className: "top-content-single-item-footer" },
141
147
  React.createElement("span", null,
142
148
  React.createElement(Button, { variant: "primary", onClick: onContentSave, isDisabled: isSaveButtonDisabled || isSaving, isLoading: isSaving },
@@ -1 +1 @@
1
- {"version":3,"file":"PartnershipsList.d.ts","sourceRoot":"","sources":["../../../../src/components/ManagePartnerships/PartnershipsList.tsx"],"names":[],"mappings":"AAiBA,OAAO,KAA0C,MAAM,OAAO,CAAC;AAW/D,wBAAgB,gBAAgB,sBAqO/B"}
1
+ {"version":3,"file":"PartnershipsList.d.ts","sourceRoot":"","sources":["../../../../src/components/ManagePartnerships/PartnershipsList.tsx"],"names":[],"mappings":"AAmBA,OAAO,KAA0C,MAAM,OAAO,CAAC;AAW/D,wBAAgB,gBAAgB,sBA+O/B"}
@@ -11,7 +11,7 @@ import { pcm } from '@cee-eng/hydrajs';
11
11
  import { AlertVariant, Button, ButtonVariant, Label, SearchInput } from '@patternfly/react-core';
12
12
  import TrashIcon from '@patternfly/react-icons/dist/js/icons/trash-icon';
13
13
  import { defaultTableSortMethod, LoadingIndicator, ToastNotification, useConfirmation, } from '@rh-support/components';
14
- import { fetchAccountManagers, fetchManagedAccounts, GlobalMetadataDispatchContext, useGlobalStateContext, } from '@rh-support/react-context';
14
+ import { fetchAccountManagers, fetchManagedAccounts, GlobalMetadataDispatchContext, updateAccountManagers, updateManagedAccounts, useGlobalStateContext, } from '@rh-support/react-context';
15
15
  import React, { useContext, useEffect, useState } from 'react';
16
16
  import { Trans, useTranslation } from 'react-i18next';
17
17
  import { useLocation } from 'react-router-dom';
@@ -46,14 +46,20 @@ export function PartnershipsList() {
46
46
  });
47
47
  try {
48
48
  setIsdeleting(true);
49
- setIsdeletingAccountNum(data.accountNum);
50
49
  if (data.isCustomerAccount) {
50
+ setIsdeletingAccountNum(`${data.accountNum}-customer`);
51
51
  yield pcm.partnerships.deleteCustomerAccountByPartner(data.accountNum);
52
+ updateManagedAccounts(dispatchToGlobalMetadataReducer, [
53
+ ...managedAccounts.data.filter((i) => i.accountNum !== data.accountNum),
54
+ ]);
52
55
  }
53
56
  else {
57
+ setIsdeletingAccountNum(`${data.accountNum}-partner`);
54
58
  yield pcm.partnerships.deletePartnerAccountByCustomer(data.accountNum);
59
+ updateAccountManagers(dispatchToGlobalMetadataReducer, [
60
+ ...accountManagers.data.filter((i) => i.accountNum !== data.accountNum),
61
+ ]);
55
62
  }
56
- setAccountList(accountList.filter((a) => a.accountNum !== data.accountNum));
57
63
  ToastNotification.addSuccessMessage(t('Partnership removed successfully'));
58
64
  setIsdeleting(false);
59
65
  setIsdeletingAccountNum('');
@@ -111,7 +117,9 @@ export function PartnershipsList() {
111
117
  cellWidth: 10,
112
118
  cell: (data) => (React.createElement(Button, { icon: React.createElement(React.Fragment, null,
113
119
  React.createElement(TrashIcon, null),
114
- React.createElement(LoadingIndicator, { isInline: true, show: isDeleting && data.accountNum === isDeletingAccountNum, size: "xs" })), variant: ButtonVariant.plain, "aria-label": t('Remove partnership'), "data-tracking-id": "remove-partnership", onClick: () => removePartnership(data) })),
120
+ React.createElement(LoadingIndicator, { isInline: true, show: isDeleting &&
121
+ `${data.accountNum}-${data.isCustomerAccount ? 'customer' : 'partner'}` ===
122
+ isDeletingAccountNum, size: "xs" })), variant: ButtonVariant.plain, "aria-label": t('Remove partnership'), "data-tracking-id": "remove-partnership", onClick: () => removePartnership(data) })),
115
123
  },
116
124
  ];
117
125
  const requestCollaborationButton = () => (React.createElement("div", null,
@@ -1 +1 @@
1
- {"version":3,"file":"Requests.d.ts","sourceRoot":"","sources":["../../../../src/components/ManagePartnerships/Requests.tsx"],"names":[],"mappings":"AAiBA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAanD,eAAO,MAAM,WAAW,GAAI,MAAM,MAAM,WAMvC,CAAC;AAGF,eAAO,MAAM,YAAY,GAAI,MAAM,MAAM,EAAE,YAAW,MAAW,WAKhE,CAAC;AAEF,wBAAgB,QAAQ,sBAgRvB"}
1
+ {"version":3,"file":"Requests.d.ts","sourceRoot":"","sources":["../../../../src/components/ManagePartnerships/Requests.tsx"],"names":[],"mappings":"AAiBA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAanD,eAAO,MAAM,WAAW,GAAI,MAAM,MAAM,WAMvC,CAAC;AAGF,eAAO,MAAM,YAAY,GAAI,MAAM,MAAM,EAAE,YAAW,MAAW,WAKhE,CAAC;AAEF,wBAAgB,QAAQ,sBAqRvB"}
@@ -118,12 +118,12 @@ export function Requests() {
118
118
  setIsRequestAgainModalOpen(true);
119
119
  };
120
120
  const actionResolver = (rowData) => {
121
- var _a, _b, _c;
121
+ var _a;
122
122
  if (!rowData)
123
123
  return;
124
- const friendlyName = rowData === null || rowData === void 0 ? void 0 : rowData.friendlyName;
125
- //@ts-ignore
126
- const status = ((_c = (_b = (_a = rowData.cells) === null || _a === void 0 ? void 0 : _a[1]) === null || _b === void 0 ? void 0 : _b.props) === null || _c === void 0 ? void 0 : _c.status) || '';
124
+ const original = (_a = rowData.originalData) !== null && _a !== void 0 ? _a : rowData;
125
+ const friendlyName = (original === null || original === void 0 ? void 0 : original.friendlyName) || '';
126
+ const status = (original === null || original === void 0 ? void 0 : original.status) || '';
127
127
  return [
128
128
  ...(status === 'EXPIRED'
129
129
  ? [
@@ -133,6 +133,11 @@ export function Requests() {
133
133
  itemKey: 'request-again',
134
134
  'data-tracking-id': 'request-again',
135
135
  },
136
+ {
137
+ isSeparator: true,
138
+ itemKey: 'separator',
139
+ 'data-tracking-id': 'separator',
140
+ },
136
141
  ]
137
142
  : []),
138
143
  {
@@ -48,7 +48,7 @@ export function PreferencesACL() {
48
48
  React.createElement(PreferenceSwitch, { id: "ACL-switch", label: isAclActivated ? t('ACL Enabled') : t('ACL Disabled'), isChecked: isAclActivated, onSwitchChange: onAclSwitch }),
49
49
  React.createElement("div", { className: "prefhostnameTooltip" },
50
50
  React.createElement(Tooltip, { content: t('This determines if the account is utilizing case group access controls'), position: "right" },
51
- React.createElement(InfoCircleIcon, { className: "pf-v6-u-ml-sm cursor-pointer" })),
51
+ React.createElement(InfoCircleIcon, { color: "#5e40be", className: "pf-v6-u-ml-sm cursor-pointer" })),
52
52
  isAclLoading && (React.createElement(Spinner, { size: "lg", className: "pf-v6-u-ml-sm hostnameSpinner", "aria-label": "Hostname loading" })))),
53
53
  React.createElement("div", { className: "pf-v6-u-mt-lg" },
54
54
  React.createElement("label", null,
@@ -216,6 +216,6 @@ export function PreferencesCaseView(props) {
216
216
  React.createElement(PreferenceSwitch, { id: "share-hostnames-switch", label: 'Share hostnames', isChecked: isSharingHostNames, onSwitchChange: onShareHostNamesSwitch }),
217
217
  React.createElement("div", { className: "prefhostnameTooltip" },
218
218
  React.createElement(Tooltip, { content: prefHostnameCopy, position: "right" },
219
- React.createElement(InfoCircleIcon, { className: "pf-v6-u-ml-sm cursor-pointer" })),
219
+ React.createElement(InfoCircleIcon, { className: "pf-v6-u-ml-sm cursor-pointer", color: "#5e40be" })),
220
220
  isHostnamesLoading && (React.createElement(Spinner, { size: "lg", className: "pf-v6-u-ml-sm hostnameSpinner", "aria-label": "Hostname loading" }))))))))));
221
221
  }
@@ -14,7 +14,7 @@ const CategoryLimit = () => {
14
14
  setModalOpen(true);
15
15
  } }, "Review guidelines."))) },
16
16
  React.createElement(Button, { icon: React.createElement(Icon, { size: "md" },
17
- React.createElement(CircleInfo, null)), variant: "plain" })),
17
+ React.createElement(CircleInfo, { color: "#5e40be" })), variant: "plain" })),
18
18
  React.createElement(CategoryLimitGuidelines, { isModalOpen: isModalOpen, onHideModal: onHideModal })));
19
19
  };
20
20
  export default CategoryLimit;
@@ -1 +1 @@
1
- {"version":3,"file":"TopContentComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/components/TopContentManagement/TopContentEditor/TopContentCategoryContent/TopContentComponent.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAKxC,OAAO,EAGH,oBAAoB,EAGvB,MAAM,wCAAwC,CAAC;AAGhD,MAAM,WAAW,yBAAyB;IACtC,QAAQ,EAAE,oBAAoB,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,iBAAiB,CAAC,yBAAyB,CA+GlF,CAAC"}
1
+ {"version":3,"file":"TopContentComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/components/TopContentManagement/TopContentEditor/TopContentCategoryContent/TopContentComponent.tsx"],"names":[],"mappings":"AAGA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAKnD,OAAO,EAGH,oBAAoB,EAGvB,MAAM,wCAAwC,CAAC;AAGhD,MAAM,WAAW,yBAAyB;IACtC,QAAQ,EAAE,oBAAoB,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,iBAAiB,CAAC,yBAAyB,CAsHlF,CAAC"}
@@ -9,7 +9,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
9
9
  };
10
10
  import { Button } from '@patternfly/react-core';
11
11
  import { ToastNotification } from '@rh-support/components';
12
- import React, { useState } from 'react';
12
+ import { isEmpty } from 'lodash';
13
+ import React, { useEffect, useState } from 'react';
13
14
  import { Draggable, Droppable } from 'react-beautiful-dnd';
14
15
  import { Trans, useTranslation } from 'react-i18next';
15
16
  import { useTopContentContext, useTopContentDispatchContext } from '../../../../context/TopContentProvider';
@@ -20,6 +21,11 @@ export const TopContentComponent = (props) => {
20
21
  const topContentDispatch = useTopContentDispatchContext();
21
22
  const { topContentEditState, topContentResponse, isSearchModeEnabled } = useTopContentContext();
22
23
  const [isArrangingContent, setIsArrangingContent] = useState(false);
24
+ const [isDisableAddContent, setIsDisableAddContent] = useState(false);
25
+ useEffect(() => {
26
+ const value = props.category.content.find((item) => isEmpty(item.contentTitle));
27
+ setIsDisableAddContent(!!value);
28
+ }, [props.category.content]);
23
29
  // we add an category with empty content to state, the rest is handled like existing categories
24
30
  const addContent = () => addTopContent(topContentDispatch, topContentEditState, props.category.id);
25
31
  const arrangeSection = () => {
@@ -42,7 +48,7 @@ export const TopContentComponent = (props) => {
42
48
  };
43
49
  const buttons = (React.createElement("div", { className: "pf-v6-c-accordion__expanded-content-footer" },
44
50
  !isArrangingContent && props.categoryMode !== CategoryMode.NEW_SECTION && (React.createElement("span", null,
45
- React.createElement(Button, { className: "pf-v6-u-mr-md", variant: "secondary", onClick: addContent, "data-tracking-id": "add-content-top-content" },
51
+ React.createElement(Button, { className: "pf-v6-u-mr-md", variant: "secondary", onClick: addContent, "data-tracking-id": "add-content-top-content", isDisabled: isDisableAddContent },
46
52
  React.createElement(Trans, null, "Add content")),
47
53
  React.createElement(Button, { variant: "secondary", onClick: arrangeSection, isDisabled: props.category.content.length < 2 },
48
54
  React.createElement(Trans, null, "Arrange section")))),
@@ -326,7 +326,7 @@ export const TopContentSingleItem = ({ isArrangingContent, category, snapshot, i
326
326
  (content.tags || []).map((tag) => (React.createElement(Label, { isCompact: true, className: "pf-v6-u-mr-xs pf-v6-u-mt-sm", key: tag.id, color: filteredTags.some((t) => t.id === tag.id) ? 'yellow' : 'grey' }, tag.tagName))),
327
327
  !isEmpty((_c = content.expiryDate) !== null && _c !== void 0 ? _c : '') && !isFutureDate(content.expiryDate) && (React.createElement(Label, { isCompact: true, className: "pf-v6-u-mr-xs pf-v6-u-mt-sm", color: "red" },
328
328
  React.createElement(Trans, null, "Outdated Content")))))),
329
- (!isPreview || content.mode === ContentMode.ADD || content.mode === ContentMode.NEW_SECTION_CONTENT) && (React.createElement(Card, { variant: "secondary" },
329
+ (!isPreview || content.mode === ContentMode.ADD || content.mode === ContentMode.NEW_SECTION_CONTENT) && (React.createElement(Card, { variant: "secondary", className: "pf-v6-u-mb-md" },
330
330
  React.createElement(CardBody, null,
331
331
  React.createElement("form", { noValidate: true, onSubmit: onSubmit, ref: ref },
332
332
  content.mode === ContentMode.NEW_SECTION_CONTENT && (React.createElement(AddNewCategoryDropDown, { onCategoryChange: onAddedNewCategoryChange })),
@@ -1 +1 @@
1
- {"version":3,"file":"TopContentReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/TopContentReducer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"TopContentReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/TopContentReducer.ts"],"names":[],"mappings":"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"}
@@ -198,7 +198,9 @@ export const fetchTopContent = (dispatch, selectedProduct, selectedVersion) => _
198
198
  });
199
199
  const resultFiltered = results.filter((c) => c.content.length > 0);
200
200
  const topContentEditState = resultFiltered.map((cat) => {
201
- const content = cat.content.map((contentItem) => (Object.assign(Object.assign({}, contentItem), { mode: ContentMode.INITIAL })));
201
+ const content = cat.content
202
+ .filter((contentItem) => { var _a, _b; return ((_a = contentItem.contentTitle) === null || _a === void 0 ? void 0 : _a.trim()) && ((_b = contentItem.contentUrl) === null || _b === void 0 ? void 0 : _b.trim()); })
203
+ .map((contentItem) => (Object.assign(Object.assign({}, contentItem), { mode: ContentMode.INITIAL })));
202
204
  return Object.assign(Object.assign({}, cat), { catMode: CategoryMode.EXISTING_SECTION, content });
203
205
  });
204
206
  const isCatOnlyForMajorVersion = ((_a = topContentEditState[0]) === null || _a === void 0 ? void 0 : _a.minorVersion) ? false : true;
@@ -476,7 +478,8 @@ export const saveChangeInCategoryContent = (dispatch, topContentEditState, categ
476
478
  // saves content re-arrenging
477
479
  export const reArrangeContent = (dispatch, topContentEditState, categoryId) => __awaiter(void 0, void 0, void 0, function* () {
478
480
  const categoryToBeSave = topContentEditState.find((cat) => cat.id === categoryId);
479
- const contentArr = categoryToBeSave.content;
481
+ const contentArr = categoryToBeSave.content.filter((item) => !isEmpty(item.contentTitle) && !isEmpty(item.contentUrl));
482
+ categoryToBeSave.content = contentArr;
480
483
  const toUpdate = contentArr.map((item) => ({
481
484
  id: item.topContentId,
482
485
  contentRank: item.contentRank,
@@ -68,6 +68,7 @@
68
68
 
69
69
  & > * {
70
70
  display: flex;
71
+ align-items: center;
71
72
  }
72
73
 
73
74
  .toolbar-left {
@@ -178,7 +179,17 @@
178
179
  border-radius: 8px;
179
180
  border-top-right-radius: 0px;
180
181
  border-top-left-radius: 0px;
181
- padding-top: 1rem;
182
+
183
+ .pf-v6-c-table__th {
184
+ font-size: 14px;
185
+ padding-top: var(--pf-t--global--spacer--md);
186
+ padding-bottom: var(--pf-t--global--spacer--md);
187
+ }
188
+
189
+ .pf-v6-c-table__sort .pf-v6-c-table__button {
190
+ font-size: inherit;
191
+ padding-block-start: 0;
192
+ }
182
193
 
183
194
  tbody:first-of-type {
184
195
  border-top: none;
@@ -501,10 +512,6 @@ div.grid-main.manage {
501
512
  }
502
513
 
503
514
  #manage-top-content {
504
- .single-select-toggle-text {
505
- margin-left: 1rem;
506
- }
507
-
508
515
  .toolbar-right {
509
516
  margin-left: 1.5rem;
510
517
  }
@@ -188,3 +188,7 @@ div.pf-v6-c-pagination__nav-page-select {
188
188
  .pf-v6-c-alert {
189
189
  margin-top: 0;
190
190
  }
191
+
192
+ .tags-selector-menu-toggle button {
193
+ padding: 0 !important;
194
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rh-support/manage",
3
- "version": "2.5.185",
3
+ "version": "2.5.192",
4
4
  "description": "Customer Support Manage App",
5
5
  "author": "Jordan Eudy <jeudy100@gmail.com>",
6
6
  "license": "ISC",
@@ -75,12 +75,12 @@
75
75
  "@patternfly/patternfly": "6.2.1",
76
76
  "@patternfly/react-core": "6.2.1",
77
77
  "@patternfly/react-table": "6.2.1",
78
- "@rh-support/components": "2.5.157",
79
- "@rh-support/configs": "2.0.50",
80
- "@rh-support/react-context": "2.5.247",
81
- "@rh-support/types": "2.0.19",
82
- "@rh-support/user-permissions": "2.5.104",
83
- "@rh-support/utils": "2.5.85",
78
+ "@rh-support/components": "2.5.164",
79
+ "@rh-support/configs": "2.0.57",
80
+ "@rh-support/react-context": "2.5.254",
81
+ "@rh-support/types": "2.0.26",
82
+ "@rh-support/user-permissions": "2.5.111",
83
+ "@rh-support/utils": "2.5.92",
84
84
  "@types/react-beautiful-dnd": "^13.0.0",
85
85
  "i18next": "^23.15.0",
86
86
  "lodash": ">=4.17.15",
@@ -99,5 +99,5 @@
99
99
  "defaults and supports es6-module",
100
100
  "maintained node versions"
101
101
  ],
102
- "gitHead": "8a8ffc020ac2271c3a88160f816a5fc14082737c"
102
+ "gitHead": "034e69ade7e0381f4a5c7089fb7af4e35e3edeae"
103
103
  }