-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UIIN-3116: Add call number browse settings.
- Loading branch information
1 parent
36472ce
commit d76bd39
Showing
13 changed files
with
457 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './useCallNumberTypesQuery'; |
22 changes: 22 additions & 0 deletions
22
src/hooks/useCallNumberTypesQuery/useCallNumberTypesQuery.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { useQuery } from 'react-query'; | ||
|
||
import { | ||
useNamespace, | ||
useOkapiKy, | ||
} from '@folio/stripes/core'; | ||
import { CQL_FIND_ALL } from '@folio/stripes-inventory-components'; | ||
|
||
export const useCallNumberTypesQuery = ({ tenantId } = {}) => { | ||
const ky = useOkapiKy({ tenant: tenantId }); | ||
const [namespace] = useNamespace({ key: 'call-number-types' }); | ||
|
||
const { data, isFetching } = useQuery( | ||
[namespace, tenantId], | ||
() => ky.get(`call-number-types?limit=2000&query=${CQL_FIND_ALL} sortby name`).json(), | ||
); | ||
|
||
return { | ||
callNumberTypes: data?.callNumberTypes || [], | ||
isCallNumberTypesLoading: isFetching, | ||
}; | ||
}; |
44 changes: 44 additions & 0 deletions
44
src/hooks/useCallNumberTypesQuery/useCallNumberTypesQuery.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import { | ||
QueryClient, | ||
QueryClientProvider, | ||
} from 'react-query'; | ||
|
||
import { | ||
renderHook, | ||
act, | ||
} from '@folio/jest-config-stripes/testing-library/react'; | ||
import { useOkapiKy } from '@folio/stripes/core'; | ||
|
||
import { useCallNumberTypesQuery } from './useCallNumberTypesQuery'; | ||
|
||
const queryClient = new QueryClient(); | ||
|
||
const wrapper = ({ children }) => ( | ||
<QueryClientProvider client={queryClient}> | ||
{children} | ||
</QueryClientProvider> | ||
); | ||
|
||
describe('useCallNumberTypesQuery', () => { | ||
beforeEach(() => { | ||
useOkapiKy.mockClear().mockReturnValue({ | ||
get: () => ({ | ||
json: () => Promise.resolve({ | ||
callNumberTypes: [{ id: 'call-number-type-id' }], | ||
}), | ||
}), | ||
}); | ||
}); | ||
|
||
afterEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
|
||
it('should fetch call number types', async () => { | ||
const { result } = renderHook(() => useCallNumberTypesQuery(), { wrapper }); | ||
|
||
await act(() => !result.current.isLoading); | ||
|
||
expect(result.current.callNumberTypes).toEqual([{ id: 'call-number-type-id' }]); | ||
}); | ||
}); |
143 changes: 143 additions & 0 deletions
143
src/settings/CallNumberBrowseSettings/CallNumberBrowseSettings.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
import { | ||
useCallback, | ||
useMemo, | ||
} from 'react'; | ||
import { | ||
FormattedMessage, | ||
useIntl, | ||
} from 'react-intl'; | ||
|
||
import { ControlledVocab } from '@folio/stripes/smart-components'; | ||
import { | ||
InfoPopover, | ||
List, | ||
LoadingPane, | ||
} from '@folio/stripes/components'; | ||
import { | ||
TitleManager, | ||
useStripes, | ||
useUserTenantPermissions, | ||
} from '@folio/stripes/core'; | ||
|
||
import { useCallNumberTypesQuery } from '../../hooks'; | ||
import { CALL_NUMBER_BROWSE_COLUMNS } from './constants'; | ||
import getFieldComponents from './getFieldComponents'; | ||
|
||
const CallNumberBrowseSettings = () => { | ||
const stripes = useStripes(); | ||
const intl = useIntl(); | ||
const centralTenantId = stripes.user.user?.consortium?.centralTenantId; | ||
const { callNumberTypes, isCallNumberTypesLoading } = useCallNumberTypesQuery({ tenantId: centralTenantId }); | ||
const ConnectedControlledVocab = useMemo(() => stripes.connect(ControlledVocab), [stripes]); | ||
|
||
const { | ||
userPermissions: centralTenantPermissions, | ||
isFetching: isCentralTenantPermissionsLoading, | ||
} = useUserTenantPermissions({ | ||
tenantId: centralTenantId, | ||
}); | ||
|
||
const permission = 'ui-inventory.settings.call-number-browse'; | ||
const hasCentralTenantPerm = centralTenantPermissions.some(({ permissionName }) => permissionName === permission); | ||
const hasRequiredPermissions = stripes.hasInterface('consortia') | ||
? (hasCentralTenantPerm && stripes.hasPerm(permission)) | ||
: stripes.hasPerm(permission); | ||
|
||
const fieldLabels = { | ||
[CALL_NUMBER_BROWSE_COLUMNS.ID]: intl.formatMessage({ id: 'ui-inventory.name' }), | ||
[CALL_NUMBER_BROWSE_COLUMNS.TYPE_IDS]: intl.formatMessage({ id: 'ui-inventory.callNumberTypes' }), | ||
}; | ||
|
||
const columnMapping = useMemo(() => ({ | ||
[CALL_NUMBER_BROWSE_COLUMNS.ID]: fieldLabels[CALL_NUMBER_BROWSE_COLUMNS.ID], | ||
[CALL_NUMBER_BROWSE_COLUMNS.TYPE_IDS]: ( | ||
<> | ||
{fieldLabels[CALL_NUMBER_BROWSE_COLUMNS.TYPE_IDS]} | ||
<InfoPopover | ||
content={intl.formatMessage({ id: 'ui-inventory.settings.instanceCallNumber.identifierTypesPopover' })} | ||
/> | ||
</> | ||
), | ||
})); | ||
|
||
const callNumberTypeOptions = useMemo(() => callNumberTypes.map(type => ({ | ||
id: type.id, | ||
label: type.name, | ||
})), [callNumberTypes]); | ||
|
||
const formatRowData = useCallback(rowData => { | ||
const callNumberType = rowData[CALL_NUMBER_BROWSE_COLUMNS.TYPE_IDS] | ||
?.map(id => callNumberTypeOptions.find(type => type.id === id)); | ||
|
||
return { | ||
...rowData, | ||
name: intl.formatMessage({ id: `ui-inventory.settings.instanceCallNumber.${rowData.id}` }), | ||
[CALL_NUMBER_BROWSE_COLUMNS.TYPE_IDS]: callNumberType, | ||
}; | ||
}, [callNumberTypeOptions]); | ||
|
||
const formatItemForSaving = useCallback((item) => ({ | ||
[CALL_NUMBER_BROWSE_COLUMNS.ID]: item[CALL_NUMBER_BROWSE_COLUMNS.ID], | ||
[CALL_NUMBER_BROWSE_COLUMNS.SHELVING_ALGORITHM]: item[CALL_NUMBER_BROWSE_COLUMNS.SHELVING_ALGORITHM], | ||
[CALL_NUMBER_BROWSE_COLUMNS.TYPE_IDS]: item[CALL_NUMBER_BROWSE_COLUMNS.TYPE_IDS].map(type => type.id), | ||
}), []); | ||
|
||
const renderCallNumberTypes = (types = []) => ( | ||
<List | ||
items={types} | ||
itemFormatter={type => <li>{type?.label}</li>} | ||
listStyle="bullets" | ||
marginBottom0 | ||
/> | ||
); | ||
|
||
if (!hasRequiredPermissions) { | ||
return null; | ||
} | ||
|
||
if (isCentralTenantPermissionsLoading || isCallNumberTypesLoading) { | ||
return <LoadingPane />; | ||
} | ||
|
||
return ( | ||
<TitleManager | ||
page={intl.formatMessage({ id: 'ui-inventory.settings.inventory.title' })} | ||
record={intl.formatMessage({ id: 'ui-inventory.callNumberTypes' })} | ||
> | ||
<ConnectedControlledVocab | ||
stripes={stripes} | ||
baseUrl="browse/config/instance-call-number" | ||
records="configs" | ||
objectLabel={null} | ||
label={<FormattedMessage id="ui-inventory.callNumberBrowse" />} | ||
labelSingular={intl.formatMessage({ id: 'ui-inventory.name' })} | ||
visibleFields={[CALL_NUMBER_BROWSE_COLUMNS.NAME, CALL_NUMBER_BROWSE_COLUMNS.TYPE_IDS]} | ||
columnMapping={columnMapping} | ||
hiddenFields={[CALL_NUMBER_BROWSE_COLUMNS.SHELVING_ALGORITHM, 'lastUpdated', 'numberOfObjects']} | ||
formatter={{ | ||
[CALL_NUMBER_BROWSE_COLUMNS.TYPE_IDS]: ({ typeIds }) => renderCallNumberTypes(typeIds), | ||
}} | ||
readOnlyFields={[CALL_NUMBER_BROWSE_COLUMNS.NAME]} | ||
nameKey="name" | ||
formType="final-form" | ||
id="call-number-browse" | ||
preUpdateHook={formatItemForSaving} | ||
editable | ||
fieldComponents={getFieldComponents(fieldLabels, callNumberTypeOptions)} | ||
canCreate={false} | ||
parseRow={formatRowData} | ||
actionSuppressor={{ | ||
delete: () => true, | ||
edit: () => false, | ||
}} | ||
translations={{ | ||
termUpdated: 'ui-inventory.settings.instanceCallNumber.termUpdated' | ||
}} | ||
hideCreateButton | ||
tenant={centralTenantId} | ||
/> | ||
</TitleManager> | ||
); | ||
}; | ||
|
||
export default CallNumberBrowseSettings; |
Oops, something went wrong.