Skip to content

Commit

Permalink
Merge branch 'refs/heads/master' into UIBULKED-599
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGELOG.md
#	src/components/BulkEditPane/BulkEditListResult/BulkEditInApp/ContentUpdatesForm/helpers.js
#	src/constants/inAppActions.js
  • Loading branch information
vashjs committed Jan 17, 2025
2 parents 606fcb3 + 24cd110 commit 18b2884
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* [UIBULKED-574](https://folio-org.atlassian.net/browse/UIBULKED-574) Updates to Errors component.
* [UIBULKED-571](https://folio-org.atlassian.net/browse/UIBULKED-571) Errors in response to UI calls.
* [UIBULKED-568](https://folio-org.atlassian.net/browse/UIBULKED-568) Populating Are you sure? form
* [UIBULKED-543](https://folio-org.atlassian.net/browse/UIBULKED-543) Rename Find (full field search) to Find.
* [UIBULKED-599](https://folio-org.atlassian.net/browse/UIBULKED-599) Change Administrative note type is not supported for MARC instances.

## [4.2.2](https://github.com/folio-org/ui-bulk-edit/tree/v4.2.2) (2024-11-15)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {
electronicAccess,
statisticalCodeActions,
noteActionsMarc,
electronicAccessWithFindFullField,
} from '../../../../../constants';
import { getActionParameters } from '../../../../../constants/actionParameters';

Expand Down Expand Up @@ -101,6 +102,7 @@ export const getDefaultActions = ({
const noteWithMarcDefaultActions = noteActionsWithMarc();
const noteDuplicateDefaultActions = noteActionsWithDuplicate();
const electronicAccessActions = electronicAccess();
const electronicAccessFindFullFieldActions = electronicAccessWithFindFullField();

const replaceClearInitialVal = replaceClearDefaultActions[0].value;

Expand Down Expand Up @@ -339,9 +341,9 @@ export const getDefaultActions = ({
actions: [
null,
{
actionsList: electronicAccessActions,
actionsList: electronicAccessFindFullFieldActions,
controlType: () => CONTROL_TYPES.ELECTRONIC_ACCESS_RELATIONSHIP_SELECT,
[ACTION_VALUE_KEY]: electronicAccessActions[0].value,
[ACTION_VALUE_KEY]: electronicAccessFindFullFieldActions[0].value,
[FIELD_VALUE_KEY]: '',
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
label: <FormattedMessage id="ui-bulk-edit.actions.findFullField" />,
label: <FormattedMessage id="ui-bulk-edit.actions.find" />,
disabled: false,
},
{
Expand Down Expand Up @@ -713,7 +713,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
label: <FormattedMessage id="ui-bulk-edit.actions.findFullField" />,
label: <FormattedMessage id="ui-bulk-edit.actions.find" />,
disabled: false,
},
{
Expand Down Expand Up @@ -818,7 +818,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
label: <FormattedMessage id="ui-bulk-edit.actions.findFullField" />,
label: <FormattedMessage id="ui-bulk-edit.actions.find" />,
disabled: false,
},
{
Expand Down Expand Up @@ -907,7 +907,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
label: <FormattedMessage id="ui-bulk-edit.actions.findFullField" />,
label: <FormattedMessage id="ui-bulk-edit.actions.find" />,
disabled: false,
},
{
Expand Down Expand Up @@ -1082,7 +1082,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
label: <FormattedMessage id="ui-bulk-edit.actions.findFullField" />,
label: <FormattedMessage id="ui-bulk-edit.actions.find" />,
disabled: false,
},
{
Expand Down
14 changes: 11 additions & 3 deletions src/constants/inAppActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export const noteActionsMarc = () => [
getPlaceholder(),
getAddToExistingAction(),
getRemoveAllAction(),
getFindFullFieldAction(),
getFindAction(),
];

export const noteActions = () => [
Expand All @@ -175,23 +175,31 @@ export const noteActionsWithMarc = () => [
getRemoveMarcAsStuffOnlyAction(),
getAddToExistingAction(),
getRemoveAllAction(),
getFindFullFieldAction(),
getFindAction(),
getChangeNoteTypeAction(),
];

export const electronicAccess = () => [
getPlaceholder(),
getClearAction(),
getFindAction(),
getReplaceAction(),
];

export const electronicAccessWithFindFullField = () => [
getPlaceholder(),
getClearAction(),
getFindFullFieldAction(),
getReplaceAction(),
];

export const noteActionsWithDuplicate = () => [
getPlaceholder(),
getMarcAsStuffOnlyAction(),
getRemoveMarcAsStuffOnlyAction(),
getAddToExistingAction(),
getRemoveAllAction(),
getFindFullFieldAction(),
getFindAction(),
getChangeNoteTypeAction(),
getDuplicateToNoteAction(),
];
Expand Down

0 comments on commit 18b2884

Please sign in to comment.