@opengeoweb/store 9.28.1 → 9.29.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.esm.js +1377 -1377
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/store/coreModuleConfig.d.ts +1 -1
- package/src/store/drawingtool/config.d.ts +4 -4
- package/src/store/drawingtool/index.d.ts +6 -6
- package/src/store/drawingtool/listener.d.ts +3 -3
- package/src/store/drawingtool/listener.spec.d.ts +1 -1
- package/src/store/drawingtool/reducer.d.ts +46 -46
- package/src/store/drawingtool/reducer.spec.d.ts +4 -4
- package/src/store/drawingtool/selectors.d.ts +43 -43
- package/src/store/drawingtool/selectors.spec.d.ts +1 -1
- package/src/store/drawingtool/testUtils.d.ts +1 -1
- package/src/store/drawingtool/utils.d.ts +1 -1
- package/src/store/drawingtool/utils.spec.d.ts +1 -1
- package/src/store/generic/actions.d.ts +28 -28
- package/src/store/generic/config.d.ts +5 -5
- package/src/store/generic/index.d.ts +17 -17
- package/src/store/generic/listener.d.ts +2 -2
- package/src/store/generic/listener.spec.d.ts +1 -1
- package/src/store/generic/loadingIndicator/constants.d.ts +1 -1
- package/src/store/generic/loadingIndicator/index.d.ts +3 -3
- package/src/store/generic/loadingIndicator/reducer.d.ts +13 -13
- package/src/store/generic/loadingIndicator/reducer.spec.d.ts +1 -1
- package/src/store/generic/loadingIndicator/selectors.d.ts +22 -22
- package/src/store/generic/loadingIndicator/selectors.spec.d.ts +1 -1
- package/src/store/generic/loadingIndicator/types.d.ts +22 -22
- package/src/store/generic/selectors.d.ts +12 -12
- package/src/store/generic/selectors.spec.d.ts +1 -1
- package/src/store/generic/synchronizationActions/actions.d.ts +11 -11
- package/src/store/generic/synchronizationActions/types.d.ts +34 -34
- package/src/store/generic/synchronizationGroups/__mocks__/mockState.d.ts +2 -2
- package/src/store/generic/synchronizationGroups/constants.d.ts +4 -4
- package/src/store/generic/synchronizationGroups/index.d.ts +6 -6
- package/src/store/generic/synchronizationGroups/listener.d.ts +2 -2
- package/src/store/generic/synchronizationGroups/listener.spec.d.ts +1 -1
- package/src/store/generic/synchronizationGroups/reducer.d.ts +26 -26
- package/src/store/generic/synchronizationGroups/reducer.spec.d.ts +1 -1
- package/src/store/generic/synchronizationGroups/selector.d.ts +13 -13
- package/src/store/generic/synchronizationGroups/selectors.d.ts +64 -64
- package/src/store/generic/synchronizationGroups/selectors.spec.d.ts +1 -1
- package/src/store/generic/synchronizationGroups/types.d.ts +100 -100
- package/src/store/generic/synchronizationGroups/utils.d.ts +76 -76
- package/src/store/generic/synchronizationGroups/utils.spec.d.ts +1 -1
- package/src/store/generic/types.d.ts +23 -23
- package/src/store/generic/utils.d.ts +9 -9
- package/src/store/generic/utils.spec.d.ts +1 -1
- package/src/store/index.d.ts +14 -14
- package/src/store/mapStore/config.d.ts +9 -9
- package/src/store/mapStore/index.d.ts +96 -96
- package/src/store/mapStore/layers/index.d.ts +5 -5
- package/src/store/mapStore/layers/listeners.d.ts +2 -2
- package/src/store/mapStore/layers/listeners.spec.d.ts +1 -1
- package/src/store/mapStore/layers/reducer.d.ts +87 -87
- package/src/store/mapStore/layers/reducer.spec.d.ts +1 -1
- package/src/store/mapStore/layers/selectors.d.ts +380 -380
- package/src/store/mapStore/layers/selectors.spec.d.ts +1 -1
- package/src/store/mapStore/layers/types.d.ts +166 -166
- package/src/store/mapStore/layers/utils.d.ts +23 -23
- package/src/store/mapStore/layers/utils.spec.d.ts +1 -1
- package/src/store/mapStore/map/actions.d.ts +9 -9
- package/src/store/mapStore/map/constants.d.ts +1 -1
- package/src/store/mapStore/map/enums.d.ts +3 -3
- package/src/store/mapStore/map/filterLayers.d.ts +10 -10
- package/src/store/mapStore/map/filterLayers.spec.d.ts +1 -1
- package/src/store/mapStore/map/index.d.ts +25 -25
- package/src/store/mapStore/map/listener.d.ts +4 -4
- package/src/store/mapStore/map/listener.spec.d.ts +1 -1
- package/src/store/mapStore/map/mapListenerAnimationUtils.d.ts +38 -38
- package/src/store/mapStore/map/mapListenerAnimationUtils.spec.d.ts +1 -1
- package/src/store/mapStore/map/mapUiListener.d.ts +2 -2
- package/src/store/mapStore/map/mapUiListener.spec.d.ts +1 -1
- package/src/store/mapStore/map/metronomeListener.d.ts +2 -2
- package/src/store/mapStore/map/reducer.d.ts +109 -109
- package/src/store/mapStore/map/reducer.spec.d.ts +1 -1
- package/src/store/mapStore/map/replaceLayerIdsToEnsureUniqueLayerIdsInStore.d.ts +7 -7
- package/src/store/mapStore/map/replaceLayerIdsToEnsureUniqueLayerIdsInStore.spec.d.ts +1 -1
- package/src/store/mapStore/map/selectors.d.ts +733 -733
- package/src/store/mapStore/map/selectors.spec.d.ts +1 -1
- package/src/store/mapStore/map/types.d.ts +233 -233
- package/src/store/mapStore/map/utils.d.ts +85 -85
- package/src/store/mapStore/map/utils.spec.d.ts +1 -1
- package/src/store/mapStore/service/WMS111GetCapabilitiesGeoServicesRADAR.d.ts +2 -2
- package/src/store/mapStore/service/index.d.ts +4 -4
- package/src/store/mapStore/service/listener.d.ts +5 -5
- package/src/store/mapStore/service/listener.spec.d.ts +1 -1
- package/src/store/mapStore/service/localStorage.d.ts +3 -3
- package/src/store/mapStore/service/localStorage.spec.d.ts +1 -1
- package/src/store/mapStore/service/reducer.d.ts +11 -11
- package/src/store/mapStore/service/reducer.spec.d.ts +1 -1
- package/src/store/mapStore/service/selectors.d.ts +80 -80
- package/src/store/mapStore/service/selectors.spec.d.ts +1 -1
- package/src/store/mapStore/service/types.d.ts +50 -50
- package/src/store/mapStore/storeTestSettings.d.ts +7 -7
- package/src/store/mapStore/storeTestUtils.d.ts +17 -17
- package/src/store/mapStore/types.d.ts +11 -11
- package/src/store/router/config.d.ts +4 -4
- package/src/store/router/index.d.ts +3 -3
- package/src/store/router/listener.d.ts +2 -2
- package/src/store/router/listener.spec.d.ts +1 -1
- package/src/store/router/reducer.d.ts +9 -9
- package/src/store/router/reducer.spec.d.ts +1 -1
- package/src/store/router/types.d.ts +6 -6
- package/src/store/router/utils.d.ts +3 -3
- package/src/store/testUtils/Providers.d.ts +13 -13
- package/src/store/types.d.ts +7 -7
- package/src/store/ui/config.d.ts +4 -4
- package/src/store/ui/index.d.ts +4 -4
- package/src/store/ui/reducer.d.ts +33 -33
- package/src/store/ui/reducer.spec.d.ts +1 -1
- package/src/store/ui/selectors.d.ts +102 -102
- package/src/store/ui/selectors.spec.d.ts +1 -1
- package/src/store/ui/types.d.ts +78 -78
- package/src/store/ui/useSetupDialog.d.ts +11 -11
- package/src/store/ui/useSetupDialog.spec.d.ts +1 -1
- package/src/store/utils.d.ts +6 -6
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './store';
|
|
1
|
+
export * from './store';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const coreModuleConfig: (import("@redux-eggs/core").Egg<import("redux").Store<import("./mapStore").WebMapStateModuleState, import("redux").AnyAction>> | import("@redux-eggs/core").Egg<import("redux").Store<import("./generic/synchronizationGroups/types").SynchronizationGroupModuleState, import("redux").AnyAction>> | import("@redux-eggs/core").Egg<import("redux").Store<import("./ui/types").UIModuleState, import("redux").AnyAction>> | import("@redux-eggs/core").Egg<import("redux").Store<import("./drawingtool").DrawtoolModuleStore, import("redux").AnyAction>>)[];
|
|
1
|
+
export declare const coreModuleConfig: (import("@redux-eggs/core").Egg<import("redux").Store<import("./mapStore").WebMapStateModuleState, import("redux").AnyAction>> | import("@redux-eggs/core").Egg<import("redux").Store<import("./generic/synchronizationGroups/types").SynchronizationGroupModuleState, import("redux").AnyAction>> | import("@redux-eggs/core").Egg<import("redux").Store<import("./ui/types").UIModuleState, import("redux").AnyAction>> | import("@redux-eggs/core").Egg<import("redux").Store<import("./drawingtool").DrawtoolModuleStore, import("redux").AnyAction>>)[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Store } from '@reduxjs/toolkit';
|
|
2
|
-
import { Egg } from '@redux-eggs/core';
|
|
3
|
-
import type { DrawtoolModuleStore } from './reducer';
|
|
4
|
-
export declare const drawtoolModuleConfig: Egg<Store<DrawtoolModuleStore>>;
|
|
1
|
+
import { Store } from '@reduxjs/toolkit';
|
|
2
|
+
import { Egg } from '@redux-eggs/core';
|
|
3
|
+
import type { DrawtoolModuleStore } from './reducer';
|
|
4
|
+
export declare const drawtoolModuleConfig: Egg<Store<DrawtoolModuleStore>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { drawtoolActions } from './reducer';
|
|
2
|
-
export * as drawtoolSelectors from './selectors';
|
|
3
|
-
export * from './config';
|
|
4
|
-
export type { DrawToolItem, DrawtoolModuleStore } from './reducer';
|
|
5
|
-
export * from './utils';
|
|
6
|
-
export { reducer as drawtoolReducer } from './reducer';
|
|
1
|
+
export { drawtoolActions } from './reducer';
|
|
2
|
+
export * as drawtoolSelectors from './selectors';
|
|
3
|
+
export * from './config';
|
|
4
|
+
export type { DrawToolItem, DrawtoolModuleStore } from './reducer';
|
|
5
|
+
export * from './utils';
|
|
6
|
+
export { reducer as drawtoolReducer } from './reducer';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { DrawtoolModuleStore } from './reducer';
|
|
2
|
-
import { WebMapStateModuleState } from '../mapStore';
|
|
3
|
-
export declare const drawingToolListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<DrawtoolModuleStore & WebMapStateModuleState, import("@reduxjs/toolkit").ThunkDispatch<DrawtoolModuleStore & WebMapStateModuleState, unknown, import("redux").AnyAction>, unknown>;
|
|
1
|
+
import { DrawtoolModuleStore } from './reducer';
|
|
2
|
+
import { WebMapStateModuleState } from '../mapStore';
|
|
3
|
+
export declare const drawingToolListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<DrawtoolModuleStore & WebMapStateModuleState, import("@reduxjs/toolkit").ThunkDispatch<DrawtoolModuleStore & WebMapStateModuleState, unknown, import("redux").AnyAction>, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import { PayloadAction, Draft, EntityState } from '@reduxjs/toolkit';
|
|
2
|
-
import { DrawMode, MapDrawToolOptions } from '@opengeoweb/webmap-react';
|
|
3
|
-
export interface DrawToolItem {
|
|
4
|
-
drawToolId: string;
|
|
5
|
-
geoJSONLayerId: string;
|
|
6
|
-
activeDrawModeId: string;
|
|
7
|
-
drawModes: DrawMode[];
|
|
8
|
-
shouldAllowMultipleShapes: boolean;
|
|
9
|
-
geoJSONIntersectionLayerId?: string;
|
|
10
|
-
geoJSONIntersectionBoundsLayerId?: string;
|
|
11
|
-
}
|
|
12
|
-
export type DrawingToolState = EntityState<DrawToolItem>;
|
|
13
|
-
export interface DrawtoolModuleStore {
|
|
14
|
-
drawingtools?: DrawingToolState;
|
|
15
|
-
}
|
|
16
|
-
export declare const drawAdapter: import("@reduxjs/toolkit").EntityAdapter<DrawToolItem>;
|
|
17
|
-
export declare const initialState: DrawingToolState;
|
|
18
|
-
export declare const reducer: import("redux").Reducer<DrawingToolState
|
|
19
|
-
export declare const drawtoolActions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
20
|
-
registerDrawTool: (draft: Draft<DrawingToolState>, action: PayloadAction<MapDrawToolOptions & {
|
|
21
|
-
drawToolId: string;
|
|
22
|
-
mapId?: string;
|
|
23
|
-
}>) => void;
|
|
24
|
-
unregisterDrawTool: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
25
|
-
drawToolId: string;
|
|
26
|
-
}>) => void;
|
|
27
|
-
changeDrawToolMode: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
28
|
-
drawToolId: string;
|
|
29
|
-
drawModeId: string;
|
|
30
|
-
shouldUpdateShape?: boolean;
|
|
31
|
-
}>) => void;
|
|
32
|
-
updateGeoJSONLayerId: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
33
|
-
drawToolId: string;
|
|
34
|
-
geoJSONLayerId: string;
|
|
35
|
-
}>) => void;
|
|
36
|
-
updateDrawToolMode: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
37
|
-
drawToolId: string;
|
|
38
|
-
drawModeId: string;
|
|
39
|
-
shape: GeoJSON.FeatureCollection;
|
|
40
|
-
title?: string;
|
|
41
|
-
}>) => void;
|
|
42
|
-
changeIntersectionBounds: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
43
|
-
drawToolId: string;
|
|
44
|
-
geoJSON: GeoJSON.FeatureCollection;
|
|
45
|
-
}>) => void;
|
|
46
|
-
}, "draw">;
|
|
1
|
+
import { PayloadAction, Draft, EntityState } from '@reduxjs/toolkit';
|
|
2
|
+
import { DrawMode, MapDrawToolOptions } from '@opengeoweb/webmap-react';
|
|
3
|
+
export interface DrawToolItem {
|
|
4
|
+
drawToolId: string;
|
|
5
|
+
geoJSONLayerId: string;
|
|
6
|
+
activeDrawModeId: string;
|
|
7
|
+
drawModes: DrawMode[];
|
|
8
|
+
shouldAllowMultipleShapes: boolean;
|
|
9
|
+
geoJSONIntersectionLayerId?: string;
|
|
10
|
+
geoJSONIntersectionBoundsLayerId?: string;
|
|
11
|
+
}
|
|
12
|
+
export type DrawingToolState = EntityState<DrawToolItem>;
|
|
13
|
+
export interface DrawtoolModuleStore {
|
|
14
|
+
drawingtools?: DrawingToolState;
|
|
15
|
+
}
|
|
16
|
+
export declare const drawAdapter: import("@reduxjs/toolkit").EntityAdapter<DrawToolItem>;
|
|
17
|
+
export declare const initialState: DrawingToolState;
|
|
18
|
+
export declare const reducer: import("redux").Reducer<DrawingToolState>;
|
|
19
|
+
export declare const drawtoolActions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
20
|
+
registerDrawTool: (draft: Draft<DrawingToolState>, action: PayloadAction<MapDrawToolOptions & {
|
|
21
|
+
drawToolId: string;
|
|
22
|
+
mapId?: string;
|
|
23
|
+
}>) => void;
|
|
24
|
+
unregisterDrawTool: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
25
|
+
drawToolId: string;
|
|
26
|
+
}>) => void;
|
|
27
|
+
changeDrawToolMode: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
28
|
+
drawToolId: string;
|
|
29
|
+
drawModeId: string;
|
|
30
|
+
shouldUpdateShape?: boolean;
|
|
31
|
+
}>) => void;
|
|
32
|
+
updateGeoJSONLayerId: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
33
|
+
drawToolId: string;
|
|
34
|
+
geoJSONLayerId: string;
|
|
35
|
+
}>) => void;
|
|
36
|
+
updateDrawToolMode: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
37
|
+
drawToolId: string;
|
|
38
|
+
drawModeId: string;
|
|
39
|
+
shape: GeoJSON.FeatureCollection;
|
|
40
|
+
title?: string;
|
|
41
|
+
}>) => void;
|
|
42
|
+
changeIntersectionBounds: (draft: Draft<DrawingToolState>, action: PayloadAction<{
|
|
43
|
+
drawToolId: string;
|
|
44
|
+
geoJSON: GeoJSON.FeatureCollection;
|
|
45
|
+
}>) => void;
|
|
46
|
+
}, "draw">;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DrawMode } from '@opengeoweb/webmap-react';
|
|
2
|
-
export declare const testDefaultPoint: DrawMode;
|
|
3
|
-
export declare const testDefaultPolygon: DrawMode;
|
|
4
|
-
export declare const testDefaultDelete: DrawMode;
|
|
1
|
+
import { DrawMode } from '@opengeoweb/webmap-react';
|
|
2
|
+
export declare const testDefaultPoint: DrawMode;
|
|
3
|
+
export declare const testDefaultPolygon: DrawMode;
|
|
4
|
+
export declare const testDefaultDelete: DrawMode;
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
import type { DrawingToolState, DrawtoolModuleStore } from './reducer';
|
|
2
|
-
export declare const getDrawingtoolStore: (store: DrawtoolModuleStore) => DrawingToolState;
|
|
3
|
-
export declare const selectDrawToolById: (state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => import("./reducer").DrawToolItem | undefined, selectAllDrawingTools: (state: DrawtoolModuleStore) => import("./reducer").DrawToolItem[];
|
|
4
|
-
export declare const getActiveDrawToolId: ((state: DrawtoolModuleStore) => string) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem[]) => string, {
|
|
5
|
-
clearCache: () => void;
|
|
6
|
-
}> & {
|
|
7
|
-
clearCache: () => void;
|
|
8
|
-
};
|
|
9
|
-
export declare const getDrawModeById: ((state: DrawtoolModuleStore, _drawToolId: string, drawModeId: string) => import("dist/libs/webmap-react/src").DrawMode | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined, args_1: string) => import("dist/libs/webmap-react/src").DrawMode | undefined, {
|
|
10
|
-
clearCache: () => void;
|
|
11
|
-
}> & {
|
|
12
|
-
clearCache: () => void;
|
|
13
|
-
};
|
|
14
|
-
export declare const getActiveDrawModeId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string, {
|
|
15
|
-
clearCache: () => void;
|
|
16
|
-
}> & {
|
|
17
|
-
clearCache: () => void;
|
|
18
|
-
};
|
|
19
|
-
export declare const getDrawToolGeoJSONLayerId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string, {
|
|
20
|
-
clearCache: () => void;
|
|
21
|
-
}> & {
|
|
22
|
-
clearCache: () => void;
|
|
23
|
-
};
|
|
24
|
-
export declare const getGeoJSONIntersectionLayerId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string | undefined, {
|
|
25
|
-
clearCache: () => void;
|
|
26
|
-
}> & {
|
|
27
|
-
clearCache: () => void;
|
|
28
|
-
};
|
|
29
|
-
export declare const getGeoJSONIntersectionBoundsLayerId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string | undefined, {
|
|
30
|
-
clearCache: () => void;
|
|
31
|
-
}> & {
|
|
32
|
-
clearCache: () => void;
|
|
33
|
-
};
|
|
34
|
-
export declare const getShouldAllowMultipleShapes: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => boolean, {
|
|
35
|
-
clearCache: () => void;
|
|
36
|
-
}> & {
|
|
37
|
-
clearCache: () => void;
|
|
38
|
-
};
|
|
39
|
-
export declare const getActiveDrawMode: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => import("dist/libs/webmap-react/src").DrawMode | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => import("dist/libs/webmap-react/src").DrawMode | undefined, {
|
|
40
|
-
clearCache: () => void;
|
|
41
|
-
}> & {
|
|
42
|
-
clearCache: () => void;
|
|
43
|
-
};
|
|
1
|
+
import type { DrawingToolState, DrawtoolModuleStore } from './reducer';
|
|
2
|
+
export declare const getDrawingtoolStore: (store: DrawtoolModuleStore) => DrawingToolState;
|
|
3
|
+
export declare const selectDrawToolById: (state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => import("./reducer").DrawToolItem | undefined, selectAllDrawingTools: (state: DrawtoolModuleStore) => import("./reducer").DrawToolItem[];
|
|
4
|
+
export declare const getActiveDrawToolId: ((state: DrawtoolModuleStore) => string) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem[]) => string, {
|
|
5
|
+
clearCache: () => void;
|
|
6
|
+
}> & {
|
|
7
|
+
clearCache: () => void;
|
|
8
|
+
};
|
|
9
|
+
export declare const getDrawModeById: ((state: DrawtoolModuleStore, _drawToolId: string, drawModeId: string) => import("dist/libs/webmap-react/src").DrawMode | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined, args_1: string) => import("dist/libs/webmap-react/src").DrawMode | undefined, {
|
|
10
|
+
clearCache: () => void;
|
|
11
|
+
}> & {
|
|
12
|
+
clearCache: () => void;
|
|
13
|
+
};
|
|
14
|
+
export declare const getActiveDrawModeId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string, {
|
|
15
|
+
clearCache: () => void;
|
|
16
|
+
}> & {
|
|
17
|
+
clearCache: () => void;
|
|
18
|
+
};
|
|
19
|
+
export declare const getDrawToolGeoJSONLayerId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string, {
|
|
20
|
+
clearCache: () => void;
|
|
21
|
+
}> & {
|
|
22
|
+
clearCache: () => void;
|
|
23
|
+
};
|
|
24
|
+
export declare const getGeoJSONIntersectionLayerId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string | undefined, {
|
|
25
|
+
clearCache: () => void;
|
|
26
|
+
}> & {
|
|
27
|
+
clearCache: () => void;
|
|
28
|
+
};
|
|
29
|
+
export declare const getGeoJSONIntersectionBoundsLayerId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string | undefined, {
|
|
30
|
+
clearCache: () => void;
|
|
31
|
+
}> & {
|
|
32
|
+
clearCache: () => void;
|
|
33
|
+
};
|
|
34
|
+
export declare const getShouldAllowMultipleShapes: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => boolean, {
|
|
35
|
+
clearCache: () => void;
|
|
36
|
+
}> & {
|
|
37
|
+
clearCache: () => void;
|
|
38
|
+
};
|
|
39
|
+
export declare const getActiveDrawMode: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => import("dist/libs/webmap-react/src").DrawMode | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => import("dist/libs/webmap-react/src").DrawMode | undefined, {
|
|
40
|
+
clearCache: () => void;
|
|
41
|
+
}> & {
|
|
42
|
+
clearCache: () => void;
|
|
43
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const testGeoJSON: GeoJSON.FeatureCollection;
|
|
1
|
+
export declare const testGeoJSON: GeoJSON.FeatureCollection;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const getSingularDrawtoolDrawLayerId: (mapId: string) => string;
|
|
1
|
+
export declare const getSingularDrawtoolDrawLayerId: (mapId: string) => string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { SetTimePayload, SetBboxPayload } from './types';
|
|
2
|
-
/**
|
|
3
|
-
* Generic action to set the time.
|
|
4
|
-
*
|
|
5
|
-
* @param payload: SetTimePayload;
|
|
6
|
-
* {
|
|
7
|
-
* sourceId: string; // Source where the new time value originates from
|
|
8
|
-
* value: string; // ISO 8601 string time value like "2010-10-01T00:00:00Z"
|
|
9
|
-
* }
|
|
10
|
-
*/
|
|
11
|
-
export declare const setTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<SetTimePayload, string>;
|
|
12
|
-
/**
|
|
13
|
-
* Generic action to set the bounding box.
|
|
14
|
-
*
|
|
15
|
-
* @param payload: SetBboxPayload;
|
|
16
|
-
*
|
|
17
|
-
* {
|
|
18
|
-
* sourceId: string; // Source where the new time value originates from
|
|
19
|
-
* bbox: { // Bbbox object
|
|
20
|
-
* left: number;
|
|
21
|
-
* bottom: number;
|
|
22
|
-
* right: number;
|
|
23
|
-
* top: number;
|
|
24
|
-
* };
|
|
25
|
-
* srs: string; // Projection string according to EPSG, e.g. (EPSG:3857 == Mercator)
|
|
26
|
-
* }
|
|
27
|
-
*/
|
|
28
|
-
export declare const setBbox: import("@reduxjs/toolkit").ActionCreatorWithPayload<SetBboxPayload, string>;
|
|
1
|
+
import { SetTimePayload, SetBboxPayload } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* Generic action to set the time.
|
|
4
|
+
*
|
|
5
|
+
* @param payload: SetTimePayload;
|
|
6
|
+
* {
|
|
7
|
+
* sourceId: string; // Source where the new time value originates from
|
|
8
|
+
* value: string; // ISO 8601 string time value like "2010-10-01T00:00:00Z"
|
|
9
|
+
* }
|
|
10
|
+
*/
|
|
11
|
+
export declare const setTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<SetTimePayload, string>;
|
|
12
|
+
/**
|
|
13
|
+
* Generic action to set the bounding box.
|
|
14
|
+
*
|
|
15
|
+
* @param payload: SetBboxPayload;
|
|
16
|
+
*
|
|
17
|
+
* {
|
|
18
|
+
* sourceId: string; // Source where the new time value originates from
|
|
19
|
+
* bbox: { // Bbbox object
|
|
20
|
+
* left: number;
|
|
21
|
+
* bottom: number;
|
|
22
|
+
* right: number;
|
|
23
|
+
* top: number;
|
|
24
|
+
* };
|
|
25
|
+
* srs: string; // Projection string according to EPSG, e.g. (EPSG:3857 == Mercator)
|
|
26
|
+
* }
|
|
27
|
+
*/
|
|
28
|
+
export declare const setBbox: import("@reduxjs/toolkit").ActionCreatorWithPayload<SetBboxPayload, string>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Egg } from '@redux-eggs/core';
|
|
2
|
-
import { Store } from '@reduxjs/toolkit';
|
|
3
|
-
import { SynchronizationGroupModuleState } from './synchronizationGroups/types';
|
|
4
|
-
declare const synchronizationGroupConfig: Egg<Store<SynchronizationGroupModuleState>>;
|
|
5
|
-
export default synchronizationGroupConfig;
|
|
1
|
+
import { Egg } from '@redux-eggs/core';
|
|
2
|
+
import { Store } from '@reduxjs/toolkit';
|
|
3
|
+
import { SynchronizationGroupModuleState } from './synchronizationGroups/types';
|
|
4
|
+
declare const synchronizationGroupConfig: Egg<Store<SynchronizationGroupModuleState>>;
|
|
5
|
+
export default synchronizationGroupConfig;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export declare const genericActions: {
|
|
2
|
-
setTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimePayload, string>;
|
|
3
|
-
setBbox: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetBboxPayload, string>;
|
|
4
|
-
syncGroupAddSource: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupsAddSourcePayload, "synchronizationGroupsReducer/syncGroupAddSource">;
|
|
5
|
-
syncGroupRemoveSource: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupRemoveSourcePayload, "synchronizationGroupsReducer/syncGroupRemoveSource">;
|
|
6
|
-
syncGroupAddTarget: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupAddTargetPayload, "synchronizationGroupsReducer/syncGroupAddTarget">;
|
|
7
|
-
syncGroupRemoveTarget: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupRemoveTargetPayload, "synchronizationGroupsReducer/syncGroupRemoveTarget">;
|
|
8
|
-
syncGroupLinkTarget: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupLinkTargetPayload, "synchronizationGroupsReducer/syncGroupLinkTarget">;
|
|
9
|
-
syncGroupAddGroup: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupAddGroupPayload, "synchronizationGroupsReducer/syncGroupAddGroup">;
|
|
10
|
-
syncGroupRemoveGroup: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupRemoveGroupPayload, "synchronizationGroupsReducer/syncGroupRemoveGroup">;
|
|
11
|
-
syncGroupClear: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"synchronizationGroupsReducer/syncGroupClear">;
|
|
12
|
-
syncGroupSetViewState: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupSetViewStatePayload, "synchronizationGroupsReducer/syncGroupSetViewState">;
|
|
13
|
-
};
|
|
14
|
-
export * as genericSelectors from './selectors';
|
|
15
|
-
export * from './synchronizationGroups';
|
|
16
|
-
export * as genericTypes from './types';
|
|
17
|
-
export * from './loadingIndicator';
|
|
1
|
+
export declare const genericActions: {
|
|
2
|
+
setTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimePayload, string>;
|
|
3
|
+
setBbox: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetBboxPayload, string>;
|
|
4
|
+
syncGroupAddSource: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupsAddSourcePayload, "synchronizationGroupsReducer/syncGroupAddSource">;
|
|
5
|
+
syncGroupRemoveSource: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupRemoveSourcePayload, "synchronizationGroupsReducer/syncGroupRemoveSource">;
|
|
6
|
+
syncGroupAddTarget: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupAddTargetPayload, "synchronizationGroupsReducer/syncGroupAddTarget">;
|
|
7
|
+
syncGroupRemoveTarget: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupRemoveTargetPayload, "synchronizationGroupsReducer/syncGroupRemoveTarget">;
|
|
8
|
+
syncGroupLinkTarget: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupLinkTargetPayload, "synchronizationGroupsReducer/syncGroupLinkTarget">;
|
|
9
|
+
syncGroupAddGroup: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupAddGroupPayload, "synchronizationGroupsReducer/syncGroupAddGroup">;
|
|
10
|
+
syncGroupRemoveGroup: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupRemoveGroupPayload, "synchronizationGroupsReducer/syncGroupRemoveGroup">;
|
|
11
|
+
syncGroupClear: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"synchronizationGroupsReducer/syncGroupClear">;
|
|
12
|
+
syncGroupSetViewState: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./synchronizationGroups/types").SyncGroupSetViewStatePayload, "synchronizationGroupsReducer/syncGroupSetViewState">;
|
|
13
|
+
};
|
|
14
|
+
export * as genericSelectors from './selectors';
|
|
15
|
+
export * from './synchronizationGroups';
|
|
16
|
+
export * as genericTypes from './types';
|
|
17
|
+
export * from './loadingIndicator';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { SynchronizationGroupModuleState } from './synchronizationGroups/types';
|
|
2
|
-
export declare const genericListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<SynchronizationGroupModuleState, import("@reduxjs/toolkit").ThunkDispatch<SynchronizationGroupModuleState, unknown, import("redux").AnyAction>, unknown>;
|
|
1
|
+
import { SynchronizationGroupModuleState } from './synchronizationGroups/types';
|
|
2
|
+
export declare const genericListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<SynchronizationGroupModuleState, import("@reduxjs/toolkit").ThunkDispatch<SynchronizationGroupModuleState, unknown, import("redux").AnyAction>, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ANY_EDR_SERVICE = "any_edr";
|
|
1
|
+
export declare const ANY_EDR_SERVICE = "any_edr";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { loadingIndicatorActions, loadingIndicatorReducer } from './reducer';
|
|
2
|
-
export * as loadingIndicatorSelectors from './selectors';
|
|
3
|
-
export * as loadingIndicatorConstants from './constants';
|
|
1
|
+
export { loadingIndicatorActions, loadingIndicatorReducer } from './reducer';
|
|
2
|
+
export * as loadingIndicatorSelectors from './selectors';
|
|
3
|
+
export * as loadingIndicatorConstants from './constants';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { PayloadAction, EntityState } from '@reduxjs/toolkit';
|
|
2
|
-
import { LoadingIndicatorType, SetIsEDRLoadingPayload, SetIsGetCapabilitiesLoadingPayload, SetIsGetMapLoadingPayload } from './types';
|
|
3
|
-
export declare const loadingIndicatorAdapter: import("@reduxjs/toolkit").EntityAdapter<LoadingIndicatorType>;
|
|
4
|
-
export declare const slice: import("@reduxjs/toolkit").Slice<EntityState<LoadingIndicatorType>, {
|
|
5
|
-
setGetMapIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetMapLoadingPayload>) => void;
|
|
6
|
-
setGetCapabilitiesIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetCapabilitiesLoadingPayload>) => void;
|
|
7
|
-
setEDRIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsEDRLoadingPayload>) => void;
|
|
8
|
-
}, "loadingIndicatorReducer">;
|
|
9
|
-
export declare const loadingIndicatorActions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
10
|
-
setGetMapIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetMapLoadingPayload>) => void;
|
|
11
|
-
setGetCapabilitiesIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetCapabilitiesLoadingPayload>) => void;
|
|
12
|
-
setEDRIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsEDRLoadingPayload>) => void;
|
|
13
|
-
}, "loadingIndicatorReducer">, loadingIndicatorReducer: import("redux").Reducer<EntityState<LoadingIndicatorType
|
|
1
|
+
import { PayloadAction, EntityState } from '@reduxjs/toolkit';
|
|
2
|
+
import { LoadingIndicatorType, SetIsEDRLoadingPayload, SetIsGetCapabilitiesLoadingPayload, SetIsGetMapLoadingPayload } from './types';
|
|
3
|
+
export declare const loadingIndicatorAdapter: import("@reduxjs/toolkit").EntityAdapter<LoadingIndicatorType>;
|
|
4
|
+
export declare const slice: import("@reduxjs/toolkit").Slice<EntityState<LoadingIndicatorType>, {
|
|
5
|
+
setGetMapIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetMapLoadingPayload>) => void;
|
|
6
|
+
setGetCapabilitiesIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetCapabilitiesLoadingPayload>) => void;
|
|
7
|
+
setEDRIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsEDRLoadingPayload>) => void;
|
|
8
|
+
}, "loadingIndicatorReducer">;
|
|
9
|
+
export declare const loadingIndicatorActions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
10
|
+
setGetMapIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetMapLoadingPayload>) => void;
|
|
11
|
+
setGetCapabilitiesIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetCapabilitiesLoadingPayload>) => void;
|
|
12
|
+
setEDRIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsEDRLoadingPayload>) => void;
|
|
13
|
+
}, "loadingIndicatorReducer">, loadingIndicatorReducer: import("redux").Reducer<EntityState<LoadingIndicatorType>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { LoadingIndicatorModuleState, LoadingIndicatorType } from './types';
|
|
2
|
-
export declare const selectLoadingIndicatorById: (state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => LoadingIndicatorType | undefined;
|
|
3
|
-
export declare const isGetMapLoading: ((state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: LoadingIndicatorType | undefined) => boolean, {
|
|
4
|
-
clearCache: () => void;
|
|
5
|
-
}> & {
|
|
6
|
-
clearCache: () => void;
|
|
7
|
-
};
|
|
8
|
-
export declare const isGetCapabilitiesLoading: ((state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: LoadingIndicatorType | undefined) => boolean, {
|
|
9
|
-
clearCache: () => void;
|
|
10
|
-
}> & {
|
|
11
|
-
clearCache: () => void;
|
|
12
|
-
};
|
|
13
|
-
export declare const isEDRLoading: ((state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: LoadingIndicatorType | undefined) => boolean, {
|
|
14
|
-
clearCache: () => void;
|
|
15
|
-
}> & {
|
|
16
|
-
clearCache: () => void;
|
|
17
|
-
};
|
|
18
|
-
export declare const isLoading: ((state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: boolean, args_1: boolean, args_2: boolean, args_3: boolean) => boolean, {
|
|
19
|
-
clearCache: () => void;
|
|
20
|
-
}> & {
|
|
21
|
-
clearCache: () => void;
|
|
22
|
-
};
|
|
1
|
+
import { LoadingIndicatorModuleState, LoadingIndicatorType } from './types';
|
|
2
|
+
export declare const selectLoadingIndicatorById: (state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => LoadingIndicatorType | undefined;
|
|
3
|
+
export declare const isGetMapLoading: ((state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: LoadingIndicatorType | undefined) => boolean, {
|
|
4
|
+
clearCache: () => void;
|
|
5
|
+
}> & {
|
|
6
|
+
clearCache: () => void;
|
|
7
|
+
};
|
|
8
|
+
export declare const isGetCapabilitiesLoading: ((state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: LoadingIndicatorType | undefined) => boolean, {
|
|
9
|
+
clearCache: () => void;
|
|
10
|
+
}> & {
|
|
11
|
+
clearCache: () => void;
|
|
12
|
+
};
|
|
13
|
+
export declare const isEDRLoading: ((state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: LoadingIndicatorType | undefined) => boolean, {
|
|
14
|
+
clearCache: () => void;
|
|
15
|
+
}> & {
|
|
16
|
+
clearCache: () => void;
|
|
17
|
+
};
|
|
18
|
+
export declare const isLoading: ((state: LoadingIndicatorModuleState, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: boolean, args_1: boolean, args_2: boolean, args_3: boolean) => boolean, {
|
|
19
|
+
clearCache: () => void;
|
|
20
|
+
}> & {
|
|
21
|
+
clearCache: () => void;
|
|
22
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { EntityState } from '@reduxjs/toolkit';
|
|
2
|
-
export interface LoadingIndicatorType {
|
|
3
|
-
id: string;
|
|
4
|
-
isGetMapLoading: boolean;
|
|
5
|
-
isGetCapabilitiesLoading: boolean;
|
|
6
|
-
isEDRLoading: boolean;
|
|
7
|
-
}
|
|
8
|
-
export interface LoadingIndicatorModuleState {
|
|
9
|
-
loadingIndicatorStore?: EntityState<LoadingIndicatorType>;
|
|
10
|
-
}
|
|
11
|
-
export interface SetIsGetMapLoadingPayload {
|
|
12
|
-
id: string;
|
|
13
|
-
isGetMapLoading: boolean;
|
|
14
|
-
}
|
|
15
|
-
export interface SetIsGetCapabilitiesLoadingPayload {
|
|
16
|
-
id: string;
|
|
17
|
-
isGetCapabilitiesLoading: boolean;
|
|
18
|
-
}
|
|
19
|
-
export interface SetIsEDRLoadingPayload {
|
|
20
|
-
id: string;
|
|
21
|
-
isEDRLoading: boolean;
|
|
22
|
-
}
|
|
1
|
+
import { EntityState } from '@reduxjs/toolkit';
|
|
2
|
+
export interface LoadingIndicatorType {
|
|
3
|
+
id: string;
|
|
4
|
+
isGetMapLoading: boolean;
|
|
5
|
+
isGetCapabilitiesLoading: boolean;
|
|
6
|
+
isEDRLoading: boolean;
|
|
7
|
+
}
|
|
8
|
+
export interface LoadingIndicatorModuleState {
|
|
9
|
+
loadingIndicatorStore?: EntityState<LoadingIndicatorType>;
|
|
10
|
+
}
|
|
11
|
+
export interface SetIsGetMapLoadingPayload {
|
|
12
|
+
id: string;
|
|
13
|
+
isGetMapLoading: boolean;
|
|
14
|
+
}
|
|
15
|
+
export interface SetIsGetCapabilitiesLoadingPayload {
|
|
16
|
+
id: string;
|
|
17
|
+
isGetCapabilitiesLoading: boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface SetIsEDRLoadingPayload {
|
|
20
|
+
id: string;
|
|
21
|
+
isEDRLoading: boolean;
|
|
22
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import type { CoreAppStore } from '../types';
|
|
2
|
-
import type { SynchronizationGroupState, SynchronizationSource } from './synchronizationGroups/types';
|
|
3
|
-
export declare const getSynchronizationGroupStore: ((state: CoreAppStore) => SynchronizationGroupState) & import("reselect").OutputSelectorFields<(args_0: SynchronizationGroupState) => SynchronizationGroupState, {
|
|
4
|
-
clearCache: () => void;
|
|
5
|
-
}> & {
|
|
6
|
-
clearCache: () => void;
|
|
7
|
-
};
|
|
8
|
-
export declare const getTime: ((state: SynchronizationGroupState, id: string) => string | null) & import("reselect").OutputSelectorFields<(args_0: SynchronizationSource) => string | null, {
|
|
9
|
-
clearCache: () => void;
|
|
10
|
-
}> & {
|
|
11
|
-
clearCache: () => void;
|
|
12
|
-
};
|
|
1
|
+
import type { CoreAppStore } from '../types';
|
|
2
|
+
import type { SynchronizationGroupState, SynchronizationSource } from './synchronizationGroups/types';
|
|
3
|
+
export declare const getSynchronizationGroupStore: ((state: CoreAppStore) => SynchronizationGroupState) & import("reselect").OutputSelectorFields<(args_0: SynchronizationGroupState) => SynchronizationGroupState, {
|
|
4
|
+
clearCache: () => void;
|
|
5
|
+
}> & {
|
|
6
|
+
clearCache: () => void;
|
|
7
|
+
};
|
|
8
|
+
export declare const getTime: ((state: SynchronizationGroupState, id: string) => string | null) & import("reselect").OutputSelectorFields<(args_0: SynchronizationSource) => string | null, {
|
|
9
|
+
clearCache: () => void;
|
|
10
|
+
}> & {
|
|
11
|
+
clearCache: () => void;
|
|
12
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import type { SetBboxPayload, SetTimePayload, SyncLayerPayloads } from '../types';
|
|
2
|
-
import type { SetBboxSyncActionPayload, SetBboxSyncPayload, SetLayerActionsSyncPayload, SetTimeSyncActionPayload, SetTimeSyncPayload } from './types';
|
|
3
|
-
/**
|
|
4
|
-
* These actions are fired by the generic/listener.ts, based on generic actions and the synchronizationGroup state.
|
|
5
|
-
*
|
|
6
|
-
* These actions should not be used by components directly. Components should only use the generic actions.
|
|
7
|
-
*/
|
|
8
|
-
export declare const setTimeSync: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[setTimePayload: SetTimePayload | null, targets: SetTimeSyncPayload[], groups: string[]], SetTimeSyncActionPayload, "GENERIC_SYNC_SETTIME", never, never>;
|
|
9
|
-
export declare const setBboxSync: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: SetBboxPayload, targets: SetBboxSyncPayload[], groups: string[]], SetBboxSyncActionPayload, "GENERIC_SYNC_SETBBOX", never, never>;
|
|
10
|
-
export declare const setLayerActionSync: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: SyncLayerPayloads, targets: SyncLayerPayloads[], type: string], SetLayerActionsSyncPayload, "GENERIC_SYNC_SETLAYERACTIONS", never, never>;
|
|
11
|
-
export type GenericSyncActions = ReturnType<typeof setTimeSync> | ReturnType<typeof setBboxSync> | ReturnType<typeof setLayerActionSync>;
|
|
1
|
+
import type { SetBboxPayload, SetTimePayload, SyncLayerPayloads } from '../types';
|
|
2
|
+
import type { SetBboxSyncActionPayload, SetBboxSyncPayload, SetLayerActionsSyncPayload, SetTimeSyncActionPayload, SetTimeSyncPayload } from './types';
|
|
3
|
+
/**
|
|
4
|
+
* These actions are fired by the generic/listener.ts, based on generic actions and the synchronizationGroup state.
|
|
5
|
+
*
|
|
6
|
+
* These actions should not be used by components directly. Components should only use the generic actions.
|
|
7
|
+
*/
|
|
8
|
+
export declare const setTimeSync: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[setTimePayload: SetTimePayload | null, targets: SetTimeSyncPayload[], groups: string[]], SetTimeSyncActionPayload, "GENERIC_SYNC_SETTIME", never, never>;
|
|
9
|
+
export declare const setBboxSync: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: SetBboxPayload, targets: SetBboxSyncPayload[], groups: string[]], SetBboxSyncActionPayload, "GENERIC_SYNC_SETBBOX", never, never>;
|
|
10
|
+
export declare const setLayerActionSync: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: SyncLayerPayloads, targets: SyncLayerPayloads[], type: string], SetLayerActionsSyncPayload, "GENERIC_SYNC_SETLAYERACTIONS", never, never>;
|
|
11
|
+
export type GenericSyncActions = ReturnType<typeof setTimeSync> | ReturnType<typeof setBboxSync> | ReturnType<typeof setLayerActionSync>;
|