mirror of
https://github.com/strapi/strapi.git
synced 2025-09-13 18:47:15 +00:00
Add i18n settings page
Signed-off-by: HichamELBSI <elabbassih@gmail.com>
This commit is contained in:
parent
9960ceb837
commit
8ccfe75ad6
@ -0,0 +1,171 @@
|
||||
import React, { useEffect, useReducer, useRef } from 'react';
|
||||
import { Header, Inputs } from '@buffetjs/custom';
|
||||
import { Text } from '@buffetjs/core';
|
||||
import { isEqual } from 'lodash';
|
||||
import { LoadingIndicatorPage, useGlobalContext, request } from 'strapi-helper-plugin';
|
||||
|
||||
import { getRequestUrl, getTrad } from '../../utils';
|
||||
import SectionTitleWrapper from './SectionTitleWrapper';
|
||||
import Wrapper from './Wrapper';
|
||||
import init from './init';
|
||||
import reducer, { initialState } from './reducer';
|
||||
|
||||
const SettingsPage = () => {
|
||||
const { formatMessage } = useGlobalContext();
|
||||
const [reducerState, dispatch] = useReducer(reducer, initialState, init);
|
||||
const { initialData, isLoading, modifiedData } = reducerState.toJS();
|
||||
const isMounted = useRef(true);
|
||||
const getDataRef = useRef();
|
||||
const abortController = new AbortController();
|
||||
|
||||
getDataRef.current = async () => {
|
||||
try {
|
||||
const { signal } = abortController;
|
||||
const { data } = await request(getRequestUrl('settings', { method: 'GET', signal }));
|
||||
|
||||
if (isMounted.current) {
|
||||
dispatch({
|
||||
type: 'GET_DATA_SUCCEEDED',
|
||||
data,
|
||||
});
|
||||
}
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
}
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
getDataRef.current();
|
||||
|
||||
return () => {
|
||||
abortController.abort();
|
||||
isMounted.current = false;
|
||||
};
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, []);
|
||||
|
||||
const handleSubmit = async () => {
|
||||
try {
|
||||
await request(getRequestUrl('settings'), {
|
||||
method: 'PUT',
|
||||
body: modifiedData,
|
||||
});
|
||||
|
||||
if (isMounted.current) {
|
||||
dispatch({
|
||||
type: 'SUBMIT_SUCCEEDED',
|
||||
});
|
||||
}
|
||||
|
||||
strapi.notification.toggle({
|
||||
type: 'success',
|
||||
message: { id: 'notification.form.success.fields' },
|
||||
});
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
}
|
||||
};
|
||||
|
||||
const headerProps = {
|
||||
title: {
|
||||
label: formatMessage({ id: getTrad('settings.header.label') }),
|
||||
},
|
||||
content: formatMessage({
|
||||
id: getTrad('settings.sub-header.label'),
|
||||
}),
|
||||
actions: [
|
||||
{
|
||||
color: 'cancel',
|
||||
disabled: isEqual(initialData, modifiedData),
|
||||
// TradId from the strapi-admin package
|
||||
label: formatMessage({ id: 'app.components.Button.cancel' }),
|
||||
onClick: () => {
|
||||
dispatch({
|
||||
type: 'CANCEL_CHANGES',
|
||||
});
|
||||
},
|
||||
type: 'button',
|
||||
},
|
||||
{
|
||||
disabled: false,
|
||||
color: 'success',
|
||||
// TradId from the strapi-admin package
|
||||
label: formatMessage({ id: 'app.components.Button.save' }),
|
||||
onClick: handleSubmit,
|
||||
type: 'button',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const handleChange = ({ target: { name, value } }) => {
|
||||
dispatch({
|
||||
type: 'ON_CHANGE',
|
||||
keys: name,
|
||||
value,
|
||||
});
|
||||
};
|
||||
|
||||
if (isLoading) {
|
||||
return <LoadingIndicatorPage />;
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<Header {...headerProps} />
|
||||
<Wrapper>
|
||||
<div className="container-fluid">
|
||||
<div className="row">
|
||||
<SectionTitleWrapper className="col-12">
|
||||
<Text fontSize="xs" fontWeight="semiBold" color="#787E8F">
|
||||
{formatMessage({ id: getTrad('settings.section.image.label') })}
|
||||
</Text>
|
||||
</SectionTitleWrapper>
|
||||
<div className="col-6">
|
||||
<Inputs
|
||||
label={formatMessage({
|
||||
id: getTrad('settings.form.responsiveDimensions.label'),
|
||||
})}
|
||||
description={formatMessage({
|
||||
id: getTrad('settings.form.responsiveDimensions.description'),
|
||||
})}
|
||||
name="responsiveDimensions"
|
||||
onChange={handleChange}
|
||||
type="bool"
|
||||
value={modifiedData.responsiveDimensions}
|
||||
/>
|
||||
</div>
|
||||
<div className="col-6">
|
||||
<Inputs
|
||||
label={formatMessage({
|
||||
id: getTrad('settings.form.sizeOptimization.label'),
|
||||
})}
|
||||
name="sizeOptimization"
|
||||
onChange={handleChange}
|
||||
type="bool"
|
||||
value={modifiedData.sizeOptimization}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="row">
|
||||
<div className="col-6">
|
||||
<Inputs
|
||||
label={formatMessage({
|
||||
id: getTrad('settings.form.autoOrientation.label'),
|
||||
})}
|
||||
description={formatMessage({
|
||||
id: getTrad('settings.form.autoOrientation.description'),
|
||||
})}
|
||||
name="autoOrientation"
|
||||
onChange={handleChange}
|
||||
type="bool"
|
||||
value={modifiedData.autoOrientation}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Wrapper>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default SettingsPage;
|
@ -2,6 +2,8 @@ import pluginPkg from '../../package.json';
|
||||
import pluginId from './pluginId';
|
||||
import pluginLogo from './assets/images/logo.svg';
|
||||
import trads from './translations';
|
||||
import { getTrad } from './utils';
|
||||
import SettingsPage from './containers/SettingsPage';
|
||||
|
||||
export default strapi => {
|
||||
const pluginDescription = pluginPkg.strapi.description || pluginPkg.description;
|
||||
@ -22,6 +24,22 @@ export default strapi => {
|
||||
name: pluginPkg.strapi.name,
|
||||
pluginLogo,
|
||||
preventComponentRendering: false,
|
||||
settings: {
|
||||
global: {
|
||||
links: [
|
||||
{
|
||||
title: {
|
||||
id: getTrad('plugin.name'),
|
||||
defaultMessage: 'Media Library',
|
||||
},
|
||||
name: 'media-library',
|
||||
to: `${strapi.settingsBaseURL}/media-library`,
|
||||
Component: () => <SettingsPage />,
|
||||
permissions: pluginPermissions.settings,
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
trads,
|
||||
};
|
||||
|
||||
|
5
packages/strapi-plugin-i18n/admin/src/utils/getTrad.js
Normal file
5
packages/strapi-plugin-i18n/admin/src/utils/getTrad.js
Normal file
@ -0,0 +1,5 @@
|
||||
import pluginId from '../pluginId';
|
||||
|
||||
const getTrad = id => `${pluginId}.${id}`;
|
||||
|
||||
export default getTrad;
|
2
packages/strapi-plugin-i18n/admin/src/utils/index.js
Normal file
2
packages/strapi-plugin-i18n/admin/src/utils/index.js
Normal file
@ -0,0 +1,2 @@
|
||||
// eslint-disable-next-line import/prefer-default-export
|
||||
export { default as getTrad } from './getTrad';
|
Loading…
x
Reference in New Issue
Block a user