mirror of
https://github.com/strapi/strapi.git
synced 2025-09-06 15:22:59 +00:00
Load CM
Signed-off-by: soupette <cyril.lpz@gmail.com>
This commit is contained in:
parent
61c9d8ac4c
commit
d0e50bf9d3
@ -5,7 +5,7 @@ import { QueryClientProvider, QueryClient } from 'react-query';
|
|||||||
import { ThemeProvider } from 'styled-components';
|
import { ThemeProvider } from 'styled-components';
|
||||||
import { StrapiProvider } from '@strapi/helper-plugin';
|
import { StrapiProvider } from '@strapi/helper-plugin';
|
||||||
import configureStore from './core/store/configureStore';
|
import configureStore from './core/store/configureStore';
|
||||||
import { Plugin } from './core/apis';
|
import { Components, Fields, Plugin } from './core/apis';
|
||||||
import basename from './utils/basename';
|
import basename from './utils/basename';
|
||||||
import App from './pages/App';
|
import App from './pages/App';
|
||||||
import LanguageProvider from './components/LanguageProvider';
|
import LanguageProvider from './components/LanguageProvider';
|
||||||
@ -38,11 +38,13 @@ const appLocales = Object.keys(translations);
|
|||||||
|
|
||||||
class StrapiApp {
|
class StrapiApp {
|
||||||
constructor({ appPlugins }) {
|
constructor({ appPlugins }) {
|
||||||
this.translationMessages = translations;
|
|
||||||
this.appPlugins = appPlugins || {};
|
this.appPlugins = appPlugins || {};
|
||||||
|
this.componentApi = Components();
|
||||||
|
this.fieldApi = Fields();
|
||||||
this.middlewares = [];
|
this.middlewares = [];
|
||||||
this.plugins = {};
|
this.plugins = {};
|
||||||
this.reducers = { ...reducers };
|
this.reducers = { ...reducers };
|
||||||
|
this.translationMessages = translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
addMiddleware(middleware) {
|
addMiddleware(middleware) {
|
||||||
|
43
packages/core/admin/admin/src/core/apis/Components.js
Normal file
43
packages/core/admin/admin/src/core/apis/Components.js
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import { cloneDeep } from 'lodash';
|
||||||
|
import invariant from 'invariant';
|
||||||
|
|
||||||
|
// TODO this API should be merged with the components one
|
||||||
|
class Components {
|
||||||
|
components = {};
|
||||||
|
|
||||||
|
getComponent = name => {
|
||||||
|
invariant(name, 'A name must be provided');
|
||||||
|
|
||||||
|
return cloneDeep(this.components[name]) || null;
|
||||||
|
};
|
||||||
|
|
||||||
|
getComponents = () => {
|
||||||
|
const components = cloneDeep(this.components);
|
||||||
|
|
||||||
|
return Object.keys(components).reduce((acc, current) => {
|
||||||
|
acc[current] = components[current].Component;
|
||||||
|
|
||||||
|
return acc;
|
||||||
|
}, {});
|
||||||
|
};
|
||||||
|
|
||||||
|
registerComponent = component => {
|
||||||
|
const { name, Component } = component;
|
||||||
|
|
||||||
|
invariant(Component, 'A Component must be provided');
|
||||||
|
invariant(name, 'A name must be provided');
|
||||||
|
invariant(this.components[name] === undefined, 'A similar field already exists');
|
||||||
|
|
||||||
|
this.components[name] = { Component };
|
||||||
|
};
|
||||||
|
|
||||||
|
removeComponent = name => {
|
||||||
|
invariant(name, 'A name must be provided in order to remove a field');
|
||||||
|
|
||||||
|
delete this.components[name];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return new Components();
|
||||||
|
};
|
43
packages/core/admin/admin/src/core/apis/Fields.js
Normal file
43
packages/core/admin/admin/src/core/apis/Fields.js
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import { cloneDeep } from 'lodash';
|
||||||
|
import invariant from 'invariant';
|
||||||
|
|
||||||
|
// TODO this API should be merged with the components one
|
||||||
|
class Fields {
|
||||||
|
fields = {};
|
||||||
|
|
||||||
|
getField = type => {
|
||||||
|
invariant(type, 'A type must be provided');
|
||||||
|
|
||||||
|
return cloneDeep(this.fields[type]) || null;
|
||||||
|
};
|
||||||
|
|
||||||
|
getFields = () => {
|
||||||
|
const fields = cloneDeep(this.fields);
|
||||||
|
|
||||||
|
return Object.keys(fields).reduce((acc, current) => {
|
||||||
|
acc[current] = fields[current].Component;
|
||||||
|
|
||||||
|
return acc;
|
||||||
|
}, {});
|
||||||
|
};
|
||||||
|
|
||||||
|
registerField = field => {
|
||||||
|
const { type, Component } = field;
|
||||||
|
|
||||||
|
invariant(Component, 'A Component must be provided');
|
||||||
|
invariant(type, 'A type must be provided');
|
||||||
|
invariant(this.fields[type] === undefined, 'A similar field already exists');
|
||||||
|
|
||||||
|
this.fields[type] = { Component };
|
||||||
|
};
|
||||||
|
|
||||||
|
removeField = type => {
|
||||||
|
invariant(type, 'A type must be provided in order to remove a field');
|
||||||
|
|
||||||
|
delete this.fields[type];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return new Fields();
|
||||||
|
};
|
@ -1,2 +1,3 @@
|
|||||||
// eslint-disable-next-line import/prefer-default-export
|
export { default as Components } from './Components';
|
||||||
|
export { default as Fields } from './Fields';
|
||||||
export { default as Plugin } from './Plugin';
|
export { default as Plugin } from './Plugin';
|
||||||
|
@ -36,6 +36,7 @@ function Inputs({
|
|||||||
queryInfos,
|
queryInfos,
|
||||||
value,
|
value,
|
||||||
}) {
|
}) {
|
||||||
|
// TODO change to app
|
||||||
const {
|
const {
|
||||||
strapi: { fieldApi },
|
strapi: { fieldApi },
|
||||||
} = useStrapi();
|
} = useStrapi();
|
||||||
@ -174,8 +175,7 @@ function Inputs({
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
const otherFields = useMemo(() => {
|
const otherFields = useMemo(() => {
|
||||||
// return fieldApi.getFields();
|
return fieldApi.getFields();
|
||||||
return {};
|
|
||||||
}, [fieldApi]);
|
}, [fieldApi]);
|
||||||
|
|
||||||
const { description, visible } = metadatas;
|
const { description, visible } = metadatas;
|
||||||
|
@ -17,7 +17,7 @@ const MediaLib = ({ isOpen, onChange, onToggle }) => {
|
|||||||
}
|
}
|
||||||
}, [isOpen]);
|
}, [isOpen]);
|
||||||
|
|
||||||
const Component = getComponent('media-library').Component;
|
const Component = getComponent('media-library')?.Component;
|
||||||
|
|
||||||
const handleInputChange = data => {
|
const handleInputChange = data => {
|
||||||
if (data) {
|
if (data) {
|
||||||
|
@ -44,45 +44,8 @@ export default {
|
|||||||
name,
|
name,
|
||||||
pluginLogo,
|
pluginLogo,
|
||||||
preventComponentRendering: false,
|
preventComponentRendering: false,
|
||||||
// reducers,
|
|
||||||
trads,
|
trads,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
boot() {},
|
boot() {},
|
||||||
};
|
};
|
||||||
|
|
||||||
// export default strapi => {
|
|
||||||
// const pluginDescription = pluginPkg.strapi.description || pluginPkg.description;
|
|
||||||
// const plugin = {
|
|
||||||
// blockerComponent: null,
|
|
||||||
// blockerComponentProps: {},
|
|
||||||
// description: pluginDescription,
|
|
||||||
// icon: pluginPkg.strapi.icon,
|
|
||||||
// id: pluginId,
|
|
||||||
// initializer: null,
|
|
||||||
// injectedComponents: [
|
|
||||||
// {
|
|
||||||
// plugin: 'content-type-builder.listView',
|
|
||||||
// area: 'list.link',
|
|
||||||
// component: ConfigureViewButton,
|
|
||||||
// key: 'content-manager.link',
|
|
||||||
// },
|
|
||||||
// ],
|
|
||||||
// injectionZones: {
|
|
||||||
// editView: { informations: [] },
|
|
||||||
// listView: { actions: [], deleteModalAdditionalInfos: [] },
|
|
||||||
// },
|
|
||||||
// isReady: true,
|
|
||||||
// isRequired: pluginPkg.strapi.required || false,
|
|
||||||
// layout: null,
|
|
||||||
|
|
||||||
// mainComponent: App,
|
|
||||||
// name: pluginPkg.strapi.name,
|
|
||||||
// pluginLogo,
|
|
||||||
// preventComponentRendering: false,
|
|
||||||
// reducers,
|
|
||||||
// trads,
|
|
||||||
// };
|
|
||||||
|
|
||||||
// return strapi.registerPlugin(plugin);
|
|
||||||
// };
|
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
/*
|
|
||||||
*
|
|
||||||
* SET THE HOOKS TO ENABLE THE MAGIC OF STRAPI.
|
|
||||||
* -------------------------------------------
|
|
||||||
*
|
|
||||||
* Secure, customise and enhance your project by setting
|
|
||||||
* the hooks via this file.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
function lifecycles() {
|
|
||||||
// Set hooks for the AdminPage container.
|
|
||||||
// Note: we don't need to specify the first argument because we already know what "willSecure" refers to.
|
|
||||||
// this.setHooks({
|
|
||||||
// didGetSecuredData,
|
|
||||||
// });
|
|
||||||
}
|
|
||||||
|
|
||||||
export default lifecycles;
|
|
@ -4,16 +4,16 @@ describe('selectors', () => {
|
|||||||
let store;
|
let store;
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
store = new Map();
|
store = {};
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('selectPermissions', () => {
|
describe('selectPermissions', () => {
|
||||||
it('resolves the permissions key of the "content-manager_rbacManager" store key', () => {
|
it('resolves the permissions key of the "content-manager_rbacManager" store key', () => {
|
||||||
store.set('content-manager_rbacManager', {
|
store['content-manager_rbacManager'] = {
|
||||||
permissions: {
|
permissions: {
|
||||||
some: 'permission',
|
some: 'permission',
|
||||||
},
|
},
|
||||||
});
|
};
|
||||||
|
|
||||||
const actual = selectPermissions(store);
|
const actual = selectPermissions(store);
|
||||||
const expected = {
|
const expected = {
|
||||||
@ -26,11 +26,11 @@ describe('selectors', () => {
|
|||||||
|
|
||||||
describe('selectCollectionTypePermissions', () => {
|
describe('selectCollectionTypePermissions', () => {
|
||||||
it('resolves the permissions key of the "permissionsManager" store key', () => {
|
it('resolves the permissions key of the "permissionsManager" store key', () => {
|
||||||
store.set('permissionsManager', {
|
store.permissionsManager = {
|
||||||
collectionTypesRelatedPermissions: {
|
collectionTypesRelatedPermissions: {
|
||||||
some: 'permission again',
|
some: 'permission again',
|
||||||
},
|
},
|
||||||
});
|
};
|
||||||
|
|
||||||
const actual = selectCollectionTypePermissions(store);
|
const actual = selectCollectionTypePermissions(store);
|
||||||
const expected = {
|
const expected = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user