2023-09-14 01:34:48 +08:00
|
|
|
import React, { createContext, useState } from 'react';
|
2023-11-29 02:31:28 +08:00
|
|
|
import { ExtensibleArea } from '/imports/ui/components/plugins-engine/extensible-areas/types';
|
2024-02-22 03:50:46 +08:00
|
|
|
import { PluginsContextType } from './types';
|
2024-08-20 21:42:05 +08:00
|
|
|
import { DomElementManipulationIdentifiers } from '../../plugins-engine/dom-element-manipulation/types';
|
2023-08-16 06:31:11 +08:00
|
|
|
|
|
|
|
export const PluginsContext = createContext<PluginsContextType>({} as PluginsContextType);
|
|
|
|
|
2023-09-14 01:34:48 +08:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
export const PluginsContextProvider = ({ children, ...props }: any) => {
|
2023-11-29 02:31:28 +08:00
|
|
|
const [pluginsExtensibleAreasAggregatedState, setPluginsExtensibleAreasAggregatedState] = useState<ExtensibleArea>(
|
|
|
|
{} as ExtensibleArea,
|
2023-09-14 01:34:48 +08:00
|
|
|
);
|
2024-08-20 21:42:05 +08:00
|
|
|
const [domElementManipulationIdentifiers, setDomElementManipulationIdentifiers] = useState<
|
|
|
|
DomElementManipulationIdentifiers
|
|
|
|
>({} as DomElementManipulationIdentifiers);
|
2023-08-16 06:31:11 +08:00
|
|
|
return (
|
2023-09-14 01:34:48 +08:00
|
|
|
<PluginsContext.Provider
|
|
|
|
value={{
|
2023-09-05 20:49:55 +08:00
|
|
|
...props,
|
2023-11-29 02:31:28 +08:00
|
|
|
setPluginsExtensibleAreasAggregatedState,
|
|
|
|
pluginsExtensibleAreasAggregatedState,
|
2024-08-20 21:42:05 +08:00
|
|
|
domElementManipulationIdentifiers,
|
|
|
|
setDomElementManipulationIdentifiers,
|
2023-09-14 01:34:48 +08:00
|
|
|
}}
|
2023-08-16 06:31:11 +08:00
|
|
|
>
|
2023-09-14 01:34:48 +08:00
|
|
|
{children}
|
2023-08-16 06:31:11 +08:00
|
|
|
</PluginsContext.Provider>
|
|
|
|
);
|
|
|
|
};
|