mirror of
https://github.com/strapi/strapi.git
synced 2025-08-30 19:56:05 +00:00

* chore: update styled-components to 6 * chore: update admin * chore: update CM * chore: update ctb * chore: update other plugin packages * chore: update content-releases * chore: update user-permissions * chore: update upload * chore: update fields to be dot notation * chore: update tests * chore: update yarn.lock * chore: update snapshots * chore: update deps * chore: update snapshots * fix: left menu * test: add label prop to NavLink test * chore: PR tweaks
96 lines
2.8 KiB
JavaScript
96 lines
2.8 KiB
JavaScript
import React, { forwardRef, memo, useImperativeHandle, useReducer } from 'react';
|
|
|
|
import { Flex, Grid, GridItem, Typography } from '@strapi/design-system';
|
|
import PropTypes from 'prop-types';
|
|
import { useIntl } from 'react-intl';
|
|
|
|
import { UsersPermissionsProvider } from '../../contexts/UsersPermissionsContext';
|
|
import getTrad from '../../utils/getTrad';
|
|
import Permissions from '../Permissions';
|
|
import Policies from '../Policies';
|
|
|
|
import init from './init';
|
|
import reducer, { initialState } from './reducer';
|
|
|
|
const UsersPermissions = forwardRef(({ permissions, routes }, ref) => {
|
|
const { formatMessage } = useIntl();
|
|
const [state, dispatch] = useReducer(reducer, initialState, (state) =>
|
|
init(state, permissions, routes)
|
|
);
|
|
|
|
useImperativeHandle(ref, () => ({
|
|
getPermissions() {
|
|
return {
|
|
permissions: state.modifiedData,
|
|
};
|
|
},
|
|
resetForm() {
|
|
dispatch({ type: 'ON_RESET' });
|
|
},
|
|
setFormAfterSubmit() {
|
|
dispatch({ type: 'ON_SUBMIT_SUCCEEDED' });
|
|
},
|
|
}));
|
|
|
|
const handleChange = ({ target: { name, value } }) =>
|
|
dispatch({
|
|
type: 'ON_CHANGE',
|
|
keys: name.split('.'),
|
|
value: value === 'empty__string_value' ? '' : value,
|
|
});
|
|
|
|
const handleChangeSelectAll = ({ target: { name, value } }) =>
|
|
dispatch({
|
|
type: 'ON_CHANGE_SELECT_ALL',
|
|
keys: name.split('.'),
|
|
value,
|
|
});
|
|
|
|
const handleSelectedAction = (actionToSelect) =>
|
|
dispatch({
|
|
type: 'SELECT_ACTION',
|
|
actionToSelect,
|
|
});
|
|
|
|
const providerValue = {
|
|
...state,
|
|
onChange: handleChange,
|
|
onChangeSelectAll: handleChangeSelectAll,
|
|
onSelectedAction: handleSelectedAction,
|
|
};
|
|
|
|
return (
|
|
<UsersPermissionsProvider value={providerValue}>
|
|
<Grid gap={0} shadow="filterShadow" hasRadius background="neutral0">
|
|
<GridItem col={7} paddingTop={6} paddingBottom={6} paddingLeft={7} paddingRight={7}>
|
|
<Flex direction="column" alignItems="stretch" gap={6}>
|
|
<Flex direction="column" alignItems="stretch" gap={2}>
|
|
<Typography variant="delta" tag="h2">
|
|
{formatMessage({
|
|
id: getTrad('Plugins.header.title'),
|
|
defaultMessage: 'Permissions',
|
|
})}
|
|
</Typography>
|
|
<Typography tag="p" textColor="neutral600">
|
|
{formatMessage({
|
|
id: getTrad('Plugins.header.description'),
|
|
defaultMessage: 'Only actions bound by a route are listed below.',
|
|
})}
|
|
</Typography>
|
|
</Flex>
|
|
<Permissions />
|
|
</Flex>
|
|
</GridItem>
|
|
<Policies />
|
|
</Grid>
|
|
</UsersPermissionsProvider>
|
|
);
|
|
});
|
|
|
|
UsersPermissions.propTypes = {
|
|
permissions: PropTypes.object.isRequired,
|
|
routes: PropTypes.object.isRequired,
|
|
};
|
|
|
|
export default memo(UsersPermissions);
|