From 24cd110682b54da8d663496c09daa5d3346c0cb2 Mon Sep 17 00:00:00 2001
From: Vadym Shchekotilin <86330150+vashjs@users.noreply.github.com>
Date: Fri, 17 Jan 2025 12:58:22 +0100
Subject: [PATCH] UIBULKED-543 Rename Find (full field search) to Find (#672)
---
CHANGELOG.md | 1 +
.../BulkEditInApp/ContentUpdatesForm/helpers.js | 6 ++++--
.../ContentUpdatesForm/helpers.test.js | 10 +++++-----
src/constants/inAppActions.js | 14 +++++++++++---
4 files changed, 21 insertions(+), 10 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f5885f86..78daf4fc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.
## [4.2.2](https://github.com/folio-org/ui-bulk-edit/tree/v4.2.2) (2024-11-15)
diff --git a/src/components/BulkEditPane/BulkEditListResult/BulkEditInApp/ContentUpdatesForm/helpers.js b/src/components/BulkEditPane/BulkEditListResult/BulkEditInApp/ContentUpdatesForm/helpers.js
index 9dd8a644..c6fa9c5a 100644
--- a/src/components/BulkEditPane/BulkEditListResult/BulkEditInApp/ContentUpdatesForm/helpers.js
+++ b/src/components/BulkEditPane/BulkEditListResult/BulkEditInApp/ContentUpdatesForm/helpers.js
@@ -22,6 +22,7 @@ import {
noteActionsWithDuplicate,
electronicAccess,
statisticalCodeActions,
+ electronicAccessWithFindFullField,
} from '../../../../../constants';
import { getActionParameters } from '../../../../../constants/actionParameters';
@@ -97,6 +98,7 @@ export const getDefaultActions = ({
const noteWithMarcDefaultActions = noteActionsWithMarc();
const noteDuplicateDefaultActions = noteActionsWithDuplicate();
const electronicAccessActions = electronicAccess();
+ const electronicAccessFindFullFieldActions = electronicAccessWithFindFullField();
const replaceClearInitialVal = replaceClearDefaultActions[0].value;
@@ -333,9 +335,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]: '',
},
],
diff --git a/src/components/BulkEditPane/BulkEditListResult/BulkEditInApp/ContentUpdatesForm/helpers.test.js b/src/components/BulkEditPane/BulkEditListResult/BulkEditInApp/ContentUpdatesForm/helpers.test.js
index ce8fbf5b..97d7e473 100644
--- a/src/components/BulkEditPane/BulkEditListResult/BulkEditInApp/ContentUpdatesForm/helpers.test.js
+++ b/src/components/BulkEditPane/BulkEditListResult/BulkEditInApp/ContentUpdatesForm/helpers.test.js
@@ -640,7 +640,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
- label: ,
+ label: ,
disabled: false,
},
{
@@ -712,7 +712,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
- label: ,
+ label: ,
disabled: false,
},
{
@@ -817,7 +817,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
- label: ,
+ label: ,
disabled: false,
},
{
@@ -861,7 +861,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
- label: ,
+ label: ,
disabled: false,
},
{
@@ -1036,7 +1036,7 @@ describe('ContentUpdatesForm helpers', () => {
},
{
value: ACTIONS.FIND,
- label: ,
+ label: ,
disabled: false,
},
{
diff --git a/src/constants/inAppActions.js b/src/constants/inAppActions.js
index 18d7c32b..f15a0ec1 100644
--- a/src/constants/inAppActions.js
+++ b/src/constants/inAppActions.js
@@ -161,7 +161,7 @@ export const noteActions = () => [
getPlaceholder(),
getAddToExistingAction(),
getRemoveAllAction(),
- getFindFullFieldAction(),
+ getFindAction(),
getChangeNoteTypeAction(),
];
@@ -171,23 +171,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(),
];