Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/strapi-admin/admin/src/utils/ drwxr-xr-x | |
| Viewing file: Select action/file-type: /* eslint-disable */
import React from 'react';
import hoistNonReactStatics from 'hoist-non-react-statics';
import { ReactReduxContext } from 'react-redux';
import getInjectors from './reducerInjectors';
/**
* Dynamically injects a reducer
*
* @param {string} key A key of the reducer
* @param {function} reducer A reducer that will be injected
*
*/
export default ({ key, reducer, pluginId }) => WrappedComponent => {
class ReducerInjector extends React.Component {
static WrappedComponent = WrappedComponent;
static displayName = `withReducer(${WrappedComponent.displayName ||
WrappedComponent.name ||
'Component'})`;
static contextType = ReactReduxContext;
constructor(props, context) {
super(props, context);
const reducerName = pluginId ? `${pluginId}_${key}` : key;
console.warn(
'Warning: strapi.injectReducer will be removed in the next major release. \n Please update your code.'
);
getInjectors(context.store).injectReducer(reducerName, reducer);
}
render() {
return <WrappedComponent {...this.props} />;
}
}
return hoistNonReactStatics(ReducerInjector, WrappedComponent);
};
const useInjectReducer = ({ key, reducer, pluginId }) => {
const context = React.useContext(ReactReduxContext);
const reducerName = pluginId ? `${pluginId}_${key}` : key;
React.useEffect(() => {
console.warn(
'Warning: strapi.useInjectReducer will be removed in the next major release. \n Please update your code.'
);
getInjectors(context.store).injectReducer(reducerName, reducer);
}, []);
};
export { useInjectReducer };
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.021 ]-- |