orc-shared 1.2.0-dev.1 → 1.2.0-dev.10
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/dist/actions/applications.js +1 -1
- package/dist/actions/authentication.js +1 -1
- package/dist/actions/countries.js +1 -1
- package/dist/actions/locale.js +1 -1
- package/dist/actions/makeApiAction.js +3 -3
- package/dist/actions/makeOrcApiAction.js +2 -2
- package/dist/actions/metadata.js +3 -3
- package/dist/actions/modules.js +63 -1
- package/dist/actions/navigation.js +3 -3
- package/dist/actions/requestsApi.js +8 -8
- package/dist/actions/scopes.js +59 -22
- package/dist/actions/timezones.js +1 -1
- package/dist/actions/toasts.js +1 -1
- package/dist/actions/versionInfo.js +1 -1
- package/dist/actions/view.js +1 -1
- package/dist/buildStore.js +3 -3
- package/dist/components/AppFrame/About.js +6 -5
- package/dist/components/AppFrame/MenuItem.js +6 -15
- package/dist/components/AppFrame/Preferences.js +3 -3
- package/dist/components/AppFrame/Sidebar.js +20 -9
- package/dist/components/AppFrame/Topbar.js +1 -1
- package/dist/components/ApplicationModuleLoader.js +143 -0
- package/dist/components/Authenticate.js +13 -13
- package/dist/components/CategoryList.js +1 -1
- package/dist/components/Checkbox.js +1 -1
- package/dist/components/DropMenu/Menu.js +1 -1
- package/dist/components/DropMenu/index.js +1 -1
- package/dist/components/Form/FieldList.js +3 -3
- package/dist/components/Form/Form.js +1 -1
- package/dist/components/Form/Inputs/Button.js +1 -1
- package/dist/components/Form/Inputs/FieldButtons.js +1 -1
- package/dist/components/Form/Inputs/Number.js +1 -1
- package/dist/components/Form/Inputs/ReadOnly.js +1 -1
- package/dist/components/Form/Inputs/SmallButton.js +1 -1
- package/dist/components/Form/Inputs/Text.js +1 -1
- package/dist/components/Form/Inputs/Time.js +1 -1
- package/dist/components/Form/Inputs/Toggles.js +1 -1
- package/dist/components/Form/Inputs/Translation.js +3 -3
- package/dist/components/List/HeadCell.js +1 -1
- package/dist/components/List/List.js +1 -1
- package/dist/components/List/Row.js +1 -1
- package/dist/components/List/enhanceColumnDefs.js +2 -2
- package/dist/components/MaterialUI/DataDisplay/List.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/Notification.js +2 -2
- package/dist/components/MaterialUI/DataDisplay/NotificationProps.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/PredefinedElements/Translations.js +3 -3
- package/dist/components/MaterialUI/DataDisplay/Table.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/TableProps.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/TransferList.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/chipProps.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/collapsableListProps.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/dividerProps.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/index.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/modalProps.js +1 -1
- package/dist/components/MaterialUI/DataDisplay/useTableSelection.js +3 -3
- package/dist/components/MaterialUI/Feedback/useNotification.js +1 -1
- package/dist/components/MaterialUI/Inputs/Autocomplete.js +2 -2
- package/dist/components/MaterialUI/Inputs/AutocompleteProps.js +1 -1
- package/dist/components/MaterialUI/Inputs/CheckboxGroupProps.js +1 -1
- package/dist/components/MaterialUI/Inputs/CheckboxProps.js +1 -1
- package/dist/components/MaterialUI/Inputs/InputBase.js +1 -1
- package/dist/components/MaterialUI/Inputs/InputBaseProps.js +1 -1
- package/dist/components/MaterialUI/Inputs/PredefinedElements/SearchControl.js +1 -1
- package/dist/components/MaterialUI/Inputs/RadioProps.js +1 -1
- package/dist/components/MaterialUI/Inputs/Select.js +2 -2
- package/dist/components/MaterialUI/Inputs/SelectProps.js +1 -1
- package/dist/components/MaterialUI/Inputs/Switch.js +3 -3
- package/dist/components/MaterialUI/Inputs/SwitchProps.js +1 -1
- package/dist/components/MaterialUI/Inputs/TimePicker.js +1 -1
- package/dist/components/MaterialUI/Inputs/createInput.js +3 -3
- package/dist/components/MaterialUI/Inputs/index.js +1 -1
- package/dist/components/MaterialUI/Inputs/standaloneRadioProps.js +1 -1
- package/dist/components/MaterialUI/Navigation/DropDownMenuProps.js +1 -1
- package/dist/components/MaterialUI/Navigation/ExternalLink.js +113 -0
- package/dist/components/MaterialUI/Surfaces/expansionPanelProps.js +1 -1
- package/dist/components/MaterialUI/Surfaces/paperProps.js +1 -1
- package/dist/components/MaterialUI/muiThemes.js +7 -2
- package/dist/components/MaterialUI/textProps.js +1 -1
- package/dist/components/Modules.js +126 -41
- package/dist/components/MultiSelector.js +1 -1
- package/dist/components/Navigation/Bar.js +3 -3
- package/dist/components/Navigation/Tab.js +1 -1
- package/dist/components/Navigation/useNavigationState.js +3 -3
- package/dist/components/Placeholder.js +1 -1
- package/dist/components/Routing/FullPage.js +3 -1
- package/dist/components/Routing/Page.js +5 -3
- package/dist/components/Routing/Segment.js +1 -1
- package/dist/components/Routing/SegmentPage.js +1 -1
- package/dist/components/Routing/withWaypointing.js +8 -4
- package/dist/components/Scope/ScopeNode.js +1 -1
- package/dist/components/Scope/Selector.js +1 -1
- package/dist/components/Scope/index.js +3 -3
- package/dist/components/Scope/useScopeConfirmationModalState.js +7 -16
- package/dist/components/Scope/useScopeData.js +4 -13
- package/dist/components/Scope/useScopeSelect.js +1 -1
- package/dist/components/Selector.js +1 -1
- package/dist/components/Spritesheet.js +1 -1
- package/dist/components/Switch.js +1 -1
- package/dist/components/Text.js +1 -1
- package/dist/components/ToastList.js +1 -1
- package/dist/components/Toolbar.js +1 -1
- package/dist/components/Treeview/Label.js +1 -1
- package/dist/components/Treeview/Leaf.js +1 -1
- package/dist/components/Treeview/Node.js +3 -3
- package/dist/components/Treeview/index.js +2 -2
- package/dist/components/Treeview/settings.js +1 -1
- package/dist/constants.js +19 -2
- package/dist/content/icons/lock.svg +3 -0
- package/dist/content/icons/orckestra-icon.svg +5 -0
- package/dist/content/icons/unlock.svg +3 -0
- package/dist/content/iconsSheet.svg +11 -0
- package/dist/content/orckestra-logo-white.png +0 -0
- package/dist/getThemeOverrides.js +2 -2
- package/dist/hocs/withInfiniteScroll.js +1 -1
- package/dist/hocs/withUpdateHandler.js +2 -2
- package/dist/hooks/useDispatchWithModulesData.js +1 -1
- package/dist/hooks/useEditState.js +3 -3
- package/dist/hooks/useEntityLoader.js +2 -2
- package/dist/hooks/useFullEntityEditState.js +3 -3
- package/dist/hooks/useLabelMessage.js +3 -3
- package/dist/hooks/useMultipleFieldEditState.js +2 -2
- package/dist/hooks/useNavigationHandler.js +1 -1
- package/dist/hooks/useNotificationRequestState.js +2 -2
- package/dist/hooks/useSelectorAndUnwrap.js +1 -1
- package/dist/reducers/metadata.js +1 -1
- package/dist/reducers/modules.js +39 -1
- package/dist/reducers/scopes.js +27 -0
- package/dist/reducers/settings.js +31 -2
- package/dist/schemas/countries.js +1 -1
- package/dist/schemas/definitions.js +1 -1
- package/dist/schemas/metadata.js +1 -1
- package/dist/schemas/productDefinitions.js +1 -1
- package/dist/schemas/timezones.js +1 -1
- package/dist/selectors/applications.js +1 -1
- package/dist/selectors/authentication.js +57 -18
- package/dist/selectors/countries.js +1 -1
- package/dist/selectors/locale.js +1 -1
- package/dist/selectors/metadata.js +3 -3
- package/dist/selectors/modules.js +15 -1
- package/dist/selectors/navigation.js +1 -1
- package/dist/selectors/requests.js +1 -1
- package/dist/selectors/scope.js +7 -1
- package/dist/selectors/settings.js +13 -1
- package/dist/selectors/versionInfo.js +1 -1
- package/dist/selectors/view.js +1 -1
- package/dist/spawnerMiddleware.js +1 -1
- package/dist/utils/displayModeHelper.js +1 -1
- package/dist/utils/flatten.js +2 -2
- package/dist/utils/localizationHelper.js +1 -1
- package/dist/utils/mapHelper.js +1 -1
- package/dist/utils/modelValidationHelper.js +1 -1
- package/dist/utils/parseHelper.js +1 -1
- package/dist/utils/propertyHelper.js +2 -2
- package/dist/utils/propertyValidator.js +1 -1
- package/dist/utils/setTranslationWithFallback.js +1 -1
- package/dist/utils/testUtils.js +2 -1
- package/dist/utils/unwrapImmutable.js +1 -1
- package/dist/utils/urlHelper.js +1 -1
- package/package.json +6 -5
- package/src/actions/modules.js +30 -0
- package/src/actions/modules.test.js +50 -1
- package/src/actions/scopes.js +33 -7
- package/src/actions/scopes.test.js +84 -14
- package/src/components/AppFrame/About.js +2 -2
- package/src/components/AppFrame/AppFrame.test.js +9 -0
- package/src/components/AppFrame/MenuItem.js +3 -5
- package/src/components/AppFrame/MenuItem.test.js +2 -24
- package/src/components/AppFrame/Sidebar.js +11 -12
- package/src/components/AppFrame/Sidebar.test.js +18 -0
- package/src/components/ApplicationModuleLoader.js +52 -0
- package/src/components/ApplicationModuleLoader.test.js +149 -0
- package/src/components/Authenticate.js +5 -4
- package/src/components/Authenticate.test.js +23 -4
- package/src/components/MaterialUI/Navigation/ExternalLink.js +25 -0
- package/src/components/MaterialUI/Navigation/ExternalLink.test.js +26 -0
- package/src/components/MaterialUI/muiThemes.js +5 -0
- package/src/components/Modules.js +103 -20
- package/src/components/Modules.test.js +315 -28
- package/src/components/Provision.test.js +34 -0
- package/src/components/Routing/FullPage.js +2 -1
- package/src/components/Routing/FullPage.test.js +23 -0
- package/src/components/Routing/Page.js +2 -2
- package/src/components/Routing/Page.test.js +20 -0
- package/src/components/Routing/Segment.js +1 -1
- package/src/components/Routing/withWaypointing.js +2 -2
- package/src/components/Routing/withWaypointing.test.js +33 -5
- package/src/components/Scope/useScopeConfirmationModalState.js +5 -16
- package/src/components/Scope/useScopeConfirmationModalState.test.js +39 -13
- package/src/components/Scope/useScopeData.js +0 -3
- package/src/components/Scope/useScopeData.test.js +0 -27
- package/src/constants.js +15 -0
- package/src/content/icons/lock.svg +3 -0
- package/src/content/icons/orckestra-icon.svg +5 -0
- package/src/content/icons/unlock.svg +3 -0
- package/src/content/iconsSheet.svg +11 -0
- package/src/content/orckestra-logo-white.png +0 -0
- package/src/hocs/withScopeData.test.js +0 -31
- package/src/reducers/modules.js +48 -2
- package/src/reducers/modules.test.js +117 -2
- package/src/reducers/scopes.js +30 -0
- package/src/reducers/scopes.test.js +45 -1
- package/src/reducers/settings.js +26 -2
- package/src/reducers/settings.test.js +74 -6
- package/src/selectors/authentication.js +53 -27
- package/src/selectors/authentication.test.js +600 -12
- package/src/selectors/modules.js +7 -0
- package/src/selectors/modules.test.js +16 -1
- package/src/selectors/scope.js +2 -0
- package/src/selectors/scope.test.js +5 -0
- package/src/selectors/settings.js +6 -0
|
@@ -1,4 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
INITIALIZE_FIRST_MODULE_SCOPE,
|
|
3
|
+
initializeFirstModuleScope,
|
|
4
|
+
SET_MODULE_AS_VISIBLE,
|
|
5
|
+
SET_MODULES_STRUCTURE,
|
|
6
|
+
SET_NEW_SCOPE_AND_MODULE_NAME,
|
|
7
|
+
SET_ROUTING_PERFORMED,
|
|
8
|
+
setModuleAsVisible,
|
|
9
|
+
setModulesStructure,
|
|
10
|
+
setNewScopeAndModuleName,
|
|
11
|
+
setRoutingPerformed,
|
|
12
|
+
} from "./modules";
|
|
2
13
|
|
|
3
14
|
describe("setModulesStructure", () => {
|
|
4
15
|
it("creates an action object", () => {
|
|
@@ -8,3 +19,41 @@ describe("setModulesStructure", () => {
|
|
|
8
19
|
});
|
|
9
20
|
});
|
|
10
21
|
});
|
|
22
|
+
|
|
23
|
+
describe("initializeFirstModuleScope", () => {
|
|
24
|
+
it("creates an action object", () => {
|
|
25
|
+
expect(initializeFirstModuleScope, "when called with", ["module_1"], "to equal", {
|
|
26
|
+
type: INITIALIZE_FIRST_MODULE_SCOPE,
|
|
27
|
+
payload: "module_1",
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
describe("setModuleAsVisible", () => {
|
|
33
|
+
it("creates an action object", () => {
|
|
34
|
+
expect(setModuleAsVisible, "when called with", ["module_A"], "to equal", {
|
|
35
|
+
type: SET_MODULE_AS_VISIBLE,
|
|
36
|
+
payload: "module_A",
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
describe("setNewScopeAndModuleName", () => {
|
|
42
|
+
it("creates an action object", () => {
|
|
43
|
+
expect(setNewScopeAndModuleName, "when called with", ["matrixScope", "moduleNeo"], "to equal", {
|
|
44
|
+
type: SET_NEW_SCOPE_AND_MODULE_NAME,
|
|
45
|
+
payload: {
|
|
46
|
+
scope: "matrixScope",
|
|
47
|
+
moduleName: "moduleNeo",
|
|
48
|
+
},
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
describe("setRoutingPerformed", () => {
|
|
54
|
+
it("creates an action object", () => {
|
|
55
|
+
expect(setRoutingPerformed, "when called", "to equal", {
|
|
56
|
+
type: SET_ROUTING_PERFORMED,
|
|
57
|
+
});
|
|
58
|
+
});
|
|
59
|
+
});
|
package/src/actions/scopes.js
CHANGED
|
@@ -1,26 +1,52 @@
|
|
|
1
1
|
import { makeActionTypes } from "./makeApiAction";
|
|
2
2
|
import makeOrcApiAction from "./makeOrcApiAction";
|
|
3
|
-
import { getUserScopeRequest, getUserScopeTreeRequest } from "./requestsApi";
|
|
3
|
+
import { getApplicationModules, getUserScopeRequest, getUserScopeTreeRequest } from "./requestsApi";
|
|
4
|
+
import { overtureModule } from "../constants";
|
|
4
5
|
|
|
5
|
-
export const
|
|
6
|
-
if (!
|
|
7
|
-
throw new Error('"
|
|
6
|
+
export const validateOvertureApplication = () => {
|
|
7
|
+
if (!OVERTURE_APPLICATION) {
|
|
8
|
+
throw new Error('"overtureApplication.name" is missing in the configuration.');
|
|
8
9
|
}
|
|
9
10
|
};
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
validateOvertureApplication();
|
|
13
|
+
|
|
14
|
+
export const GET_APPLICATION_MODULES = "GET_APPLICATION_MODULES";
|
|
15
|
+
|
|
16
|
+
export const [GET_APPLICATION_MODULES_REQUEST, GET_APPLICATION_MODULES_SUCCESS, GET_APPLICATION_MODULES_FAILURE] =
|
|
17
|
+
makeActionTypes(GET_APPLICATION_MODULES);
|
|
18
|
+
|
|
19
|
+
export const getAppModules = () =>
|
|
20
|
+
makeOrcApiAction(GET_APPLICATION_MODULES, getApplicationModules.buildUrl(OVERTURE_APPLICATION));
|
|
12
21
|
|
|
13
22
|
export const GET_SCOPES = "GET_SCOPES";
|
|
14
23
|
|
|
15
24
|
export const [GET_SCOPES_REQUEST, GET_SCOPES_SUCCESS, GET_SCOPES_FAILURE] = makeActionTypes(GET_SCOPES);
|
|
16
25
|
|
|
17
|
-
export const getScopes =
|
|
26
|
+
export const getScopes = module =>
|
|
27
|
+
makeOrcApiAction(
|
|
28
|
+
GET_SCOPES,
|
|
29
|
+
getUserScopeTreeRequest.buildUrl(module === overtureModule.System ? overtureModule.Orders : module, {}),
|
|
30
|
+
getUserScopeTreeRequest.verb,
|
|
31
|
+
{
|
|
32
|
+
bailout: false,
|
|
33
|
+
meta: { module },
|
|
34
|
+
},
|
|
35
|
+
);
|
|
18
36
|
|
|
19
37
|
export const GET_MY_SCOPE = "GET_MY_SCOPE";
|
|
20
38
|
|
|
21
39
|
export const [GET_MY_SCOPE_REQUEST, GET_MY_SCOPE_SUCCESS, GET_MY_SCOPE_FAILURE] = makeActionTypes(GET_MY_SCOPE);
|
|
22
40
|
|
|
23
|
-
export const getDefaultScope =
|
|
41
|
+
export const getDefaultScope = module =>
|
|
42
|
+
makeOrcApiAction(
|
|
43
|
+
GET_MY_SCOPE,
|
|
44
|
+
getUserScopeRequest.buildUrl(module === overtureModule.System ? overtureModule.Orders : module),
|
|
45
|
+
getUserScopeRequest.verb,
|
|
46
|
+
{
|
|
47
|
+
bailout: false,
|
|
48
|
+
},
|
|
49
|
+
);
|
|
24
50
|
|
|
25
51
|
export const APPLICATION_SCOPE_HAS_CHANGED = "APPLICATION_SCOPE_HAS_CHANGED";
|
|
26
52
|
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
import { RSAA } from "redux-api-middleware";
|
|
2
2
|
import {
|
|
3
|
-
GET_SCOPES_REQUEST,
|
|
4
|
-
GET_SCOPES_SUCCESS,
|
|
5
|
-
GET_SCOPES_FAILURE,
|
|
6
3
|
getScopes,
|
|
7
4
|
GET_MY_SCOPE_REQUEST,
|
|
8
5
|
GET_MY_SCOPE_SUCCESS,
|
|
9
6
|
GET_MY_SCOPE_FAILURE,
|
|
10
7
|
getDefaultScope,
|
|
11
|
-
|
|
8
|
+
validateOvertureApplication,
|
|
12
9
|
APPLICATION_SCOPE_HAS_CHANGED,
|
|
13
10
|
applicationScopeHasChanged,
|
|
11
|
+
getAppModules,
|
|
12
|
+
GET_APPLICATION_MODULES_REQUEST,
|
|
13
|
+
GET_APPLICATION_MODULES_SUCCESS,
|
|
14
|
+
GET_APPLICATION_MODULES_FAILURE,
|
|
14
15
|
} from "./scopes";
|
|
15
16
|
|
|
16
17
|
jest.mock("../utils/buildUrl", () => {
|
|
@@ -20,19 +21,71 @@ jest.mock("../utils/buildUrl", () => {
|
|
|
20
21
|
return modExport;
|
|
21
22
|
});
|
|
22
23
|
|
|
24
|
+
describe("getAppModules", () => {
|
|
25
|
+
it("creates a RSAA to fetch application modules", () => {
|
|
26
|
+
expect(getAppModules, "when called", "to exhaustively satisfy", {
|
|
27
|
+
[RSAA]: {
|
|
28
|
+
types: [GET_APPLICATION_MODULES_REQUEST, GET_APPLICATION_MODULES_SUCCESS, GET_APPLICATION_MODULES_FAILURE],
|
|
29
|
+
endpoint: 'URL: modules/byApplicationName/anApplication ""',
|
|
30
|
+
method: "GET",
|
|
31
|
+
body: undefined,
|
|
32
|
+
credentials: "include",
|
|
33
|
+
bailout: expect.it("to be a function"),
|
|
34
|
+
headers: {
|
|
35
|
+
Accept: "application/json; charset=utf-8",
|
|
36
|
+
"Content-Type": "application/json",
|
|
37
|
+
},
|
|
38
|
+
options: { redirect: "follow" },
|
|
39
|
+
},
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
});
|
|
43
|
+
|
|
23
44
|
describe("getScopes", () => {
|
|
24
|
-
|
|
25
|
-
|
|
45
|
+
let originalApplication;
|
|
46
|
+
|
|
47
|
+
beforeEach(() => {
|
|
48
|
+
originalApplication = global.OVERTURE_APPLICATION;
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
afterEach(() => {
|
|
52
|
+
global.OVERTURE_APPLICATION = originalApplication;
|
|
53
|
+
});
|
|
26
54
|
|
|
27
55
|
it("creates a RSAA to fetch authorized scope tree", () =>
|
|
28
|
-
expect(getScopes, "when called", "to exhaustively satisfy", {
|
|
56
|
+
expect(getScopes, "when called with", ["aModule"], "to exhaustively satisfy", {
|
|
29
57
|
[RSAA]: {
|
|
30
|
-
types: [
|
|
58
|
+
types: [
|
|
59
|
+
{ type: "GET_SCOPES_REQUEST", meta: { module: "aModule" } },
|
|
60
|
+
{ type: "GET_SCOPES_SUCCESS", meta: { module: "aModule" } },
|
|
61
|
+
{ type: "GET_SCOPES_FAILURE", meta: { module: "aModule" } },
|
|
62
|
+
],
|
|
31
63
|
endpoint: "URL: my/scope/aModule/tree {}",
|
|
32
64
|
method: "GET",
|
|
33
65
|
body: undefined,
|
|
34
66
|
credentials: "include",
|
|
35
|
-
bailout:
|
|
67
|
+
bailout: false,
|
|
68
|
+
headers: {
|
|
69
|
+
Accept: "application/json; charset=utf-8",
|
|
70
|
+
"Content-Type": "application/json",
|
|
71
|
+
},
|
|
72
|
+
options: { redirect: "follow" },
|
|
73
|
+
},
|
|
74
|
+
}));
|
|
75
|
+
|
|
76
|
+
it("creates a RSAA to fetch authorized scope tree for system module", () =>
|
|
77
|
+
expect(getScopes, "when called with", ["System"], "to exhaustively satisfy", {
|
|
78
|
+
[RSAA]: {
|
|
79
|
+
types: [
|
|
80
|
+
{ type: "GET_SCOPES_REQUEST", meta: { module: "System" } },
|
|
81
|
+
{ type: "GET_SCOPES_SUCCESS", meta: { module: "System" } },
|
|
82
|
+
{ type: "GET_SCOPES_FAILURE", meta: { module: "System" } },
|
|
83
|
+
],
|
|
84
|
+
endpoint: "URL: my/scope/Order/tree {}",
|
|
85
|
+
method: "GET",
|
|
86
|
+
body: undefined,
|
|
87
|
+
credentials: "include",
|
|
88
|
+
bailout: false,
|
|
36
89
|
headers: {
|
|
37
90
|
Accept: "application/json; charset=utf-8",
|
|
38
91
|
"Content-Type": "application/json",
|
|
@@ -42,14 +95,31 @@ describe("getScopes", () => {
|
|
|
42
95
|
}));
|
|
43
96
|
|
|
44
97
|
it("creates a RSAA to fetch default user scope", () =>
|
|
45
|
-
expect(getDefaultScope, "when called", "to exhaustively satisfy", {
|
|
98
|
+
expect(getDefaultScope, "when called with", ["aModule"], "to exhaustively satisfy", {
|
|
46
99
|
[RSAA]: {
|
|
47
100
|
types: [GET_MY_SCOPE_REQUEST, GET_MY_SCOPE_SUCCESS, GET_MY_SCOPE_FAILURE],
|
|
48
101
|
endpoint: 'URL: my/scope/aModule ""',
|
|
49
102
|
method: "GET",
|
|
50
103
|
body: undefined,
|
|
51
104
|
credentials: "include",
|
|
52
|
-
bailout:
|
|
105
|
+
bailout: false,
|
|
106
|
+
headers: {
|
|
107
|
+
Accept: "application/json; charset=utf-8",
|
|
108
|
+
"Content-Type": "application/json",
|
|
109
|
+
},
|
|
110
|
+
options: { redirect: "follow" },
|
|
111
|
+
},
|
|
112
|
+
}));
|
|
113
|
+
|
|
114
|
+
it("creates a RSAA to fetch default user scope for System module", () =>
|
|
115
|
+
expect(getDefaultScope, "when called with", ["System"], "to exhaustively satisfy", {
|
|
116
|
+
[RSAA]: {
|
|
117
|
+
types: [GET_MY_SCOPE_REQUEST, GET_MY_SCOPE_SUCCESS, GET_MY_SCOPE_FAILURE],
|
|
118
|
+
endpoint: 'URL: my/scope/Order ""',
|
|
119
|
+
method: "GET",
|
|
120
|
+
body: undefined,
|
|
121
|
+
credentials: "include",
|
|
122
|
+
bailout: false,
|
|
53
123
|
headers: {
|
|
54
124
|
Accept: "application/json; charset=utf-8",
|
|
55
125
|
"Content-Type": "application/json",
|
|
@@ -59,11 +129,11 @@ describe("getScopes", () => {
|
|
|
59
129
|
}));
|
|
60
130
|
|
|
61
131
|
it("throws an error if no class found on DOM element", () => {
|
|
62
|
-
global.
|
|
132
|
+
global.OVERTURE_APPLICATION = "";
|
|
63
133
|
expect(
|
|
64
|
-
() => expect(
|
|
134
|
+
() => expect(validateOvertureApplication, "when called with", []),
|
|
65
135
|
"to throw",
|
|
66
|
-
'"
|
|
136
|
+
'"overtureApplication.name" is missing in the configuration.',
|
|
67
137
|
);
|
|
68
138
|
});
|
|
69
139
|
});
|
|
@@ -8,7 +8,7 @@ import Text from "../Text";
|
|
|
8
8
|
import withClickOutside from "../../hocs/withClickOutside";
|
|
9
9
|
import useViewState from "../../hooks/useViewState";
|
|
10
10
|
import bgImage from "../../content/aboutBackground.png";
|
|
11
|
-
import logoImage from "../../content/
|
|
11
|
+
import logoImage from "../../content/orckestra-logo-white.png";
|
|
12
12
|
import close from "../../content/close.png";
|
|
13
13
|
import { getVersionSelector } from "../../selectors/versionInfo";
|
|
14
14
|
import { currentLocaleOrDefault } from "../../selectors/locale";
|
|
@@ -101,7 +101,7 @@ export const About = ({ currentApplication }) => {
|
|
|
101
101
|
<CloseButton onClick={closeAboutBox}>
|
|
102
102
|
<img src={close} alt="X" />
|
|
103
103
|
</CloseButton>
|
|
104
|
-
<img src={logoImage} alt="Orckestra" />
|
|
104
|
+
<img src={logoImage} width="250" alt="Orckestra" />
|
|
105
105
|
<AboutParagraph>
|
|
106
106
|
<Text
|
|
107
107
|
message={{
|
|
@@ -202,6 +202,15 @@ describe("AppFrame", () => {
|
|
|
202
202
|
bar: true,
|
|
203
203
|
},
|
|
204
204
|
},
|
|
205
|
+
modules: {
|
|
206
|
+
tree: "modulesTree",
|
|
207
|
+
visibleModules: ["a", "module123", "test1", "test2", "test3"],
|
|
208
|
+
lastScopeAndModuleSelection: {
|
|
209
|
+
scope: "Norway",
|
|
210
|
+
moduleName: "Profiles",
|
|
211
|
+
routingPerformed: false,
|
|
212
|
+
},
|
|
213
|
+
},
|
|
205
214
|
settings: { defaultScope: "myScope", defaultApp: "12" },
|
|
206
215
|
versionInfo: { version: "4.2", defaultHelpUrl: "help_url", moduleHelpUrls: [] },
|
|
207
216
|
view: { scopeSelector: { filter: "1" }, __prefsDialog: { show: false } },
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React, { useRef } from "react";
|
|
2
|
-
import { useSelector } from "react-redux";
|
|
3
2
|
import styled, { css } from "styled-components";
|
|
4
3
|
import transition from "styled-transition-group";
|
|
5
4
|
import { Link } from "react-router-dom";
|
|
@@ -124,13 +123,11 @@ const MenuItem = ({
|
|
|
124
123
|
alert,
|
|
125
124
|
pageScopeSelector,
|
|
126
125
|
closingTabHandler,
|
|
127
|
-
hide,
|
|
126
|
+
hide, // This props is not used in the component, but we need to destructure it so props can be used in ItemWrapper
|
|
127
|
+
isHidden = false,
|
|
128
128
|
href,
|
|
129
129
|
...props
|
|
130
130
|
}) => {
|
|
131
|
-
let hideSelector = state => (typeof hide === "function" ? hide(state) : hide ?? false);
|
|
132
|
-
const isHidden = useSelector(hideSelector);
|
|
133
|
-
|
|
134
131
|
let ItemWrapper = Block;
|
|
135
132
|
if (props.menuToggle) {
|
|
136
133
|
ItemWrapper = BlockWithA;
|
|
@@ -139,6 +136,7 @@ const MenuItem = ({
|
|
|
139
136
|
if (alert && alert.message) {
|
|
140
137
|
alertMessage.current = alert.message;
|
|
141
138
|
}
|
|
139
|
+
|
|
142
140
|
return (
|
|
143
141
|
!isHidden && (
|
|
144
142
|
<ItemWrapper to={href} {...props}>
|
|
@@ -168,7 +168,7 @@ describe("MenuItem", () => {
|
|
|
168
168
|
</MemoryRouter>,
|
|
169
169
|
));
|
|
170
170
|
|
|
171
|
-
it("shows nothing if
|
|
171
|
+
it("shows nothing if isHidden is true", () => {
|
|
172
172
|
expect(
|
|
173
173
|
<Provider store={store}>
|
|
174
174
|
<MemoryRouter>
|
|
@@ -178,29 +178,7 @@ describe("MenuItem", () => {
|
|
|
178
178
|
icon="cake"
|
|
179
179
|
label="Test"
|
|
180
180
|
alert={{ message: "Test message", type: "warn" }}
|
|
181
|
-
|
|
182
|
-
/>
|
|
183
|
-
</MemoryRouter>
|
|
184
|
-
</Provider>,
|
|
185
|
-
"when mounted",
|
|
186
|
-
"to equal",
|
|
187
|
-
null,
|
|
188
|
-
);
|
|
189
|
-
});
|
|
190
|
-
|
|
191
|
-
it("shows nothing if hide selector returns true", () => {
|
|
192
|
-
const hide = state => true;
|
|
193
|
-
|
|
194
|
-
expect(
|
|
195
|
-
<Provider store={store}>
|
|
196
|
-
<MemoryRouter>
|
|
197
|
-
<MenuItem
|
|
198
|
-
id="test"
|
|
199
|
-
href="/foo/test"
|
|
200
|
-
icon="cake"
|
|
201
|
-
label="Test"
|
|
202
|
-
alert={{ message: "Test message", type: "warn" }}
|
|
203
|
-
hide={hide}
|
|
181
|
+
isHidden={true}
|
|
204
182
|
/>
|
|
205
183
|
</MemoryRouter>
|
|
206
184
|
</Provider>,
|
|
@@ -5,6 +5,7 @@ import { useLocation } from "react-router-dom";
|
|
|
5
5
|
import { getThemeProp } from "../../utils";
|
|
6
6
|
import { selectPrependHrefConfig } from "../../selectors/navigation";
|
|
7
7
|
import MenuItem from "./MenuItem";
|
|
8
|
+
import { getScopeModuleInformationSelector } from "../../selectors/modules";
|
|
8
9
|
|
|
9
10
|
export const Bar = styled.div`
|
|
10
11
|
box-sizing: border-box;
|
|
@@ -40,7 +41,13 @@ const useEnhancement = id => {
|
|
|
40
41
|
};
|
|
41
42
|
};
|
|
42
43
|
|
|
43
|
-
export const EnhancedMenuItem = ({ id, ...props }) =>
|
|
44
|
+
export const EnhancedMenuItem = ({ id, ...props }) => {
|
|
45
|
+
const defaultModule = useSelector(getScopeModuleInformationSelector);
|
|
46
|
+
|
|
47
|
+
const isHidden = !defaultModule.visibleModules.includes(id);
|
|
48
|
+
|
|
49
|
+
return <MenuItem {...props} {...useEnhancement(id)} isHidden={isHidden} />;
|
|
50
|
+
};
|
|
44
51
|
|
|
45
52
|
const LogoSvg = styled.svg`
|
|
46
53
|
flex: 0 0 auto;
|
|
@@ -53,17 +60,9 @@ const LogoSvg = styled.svg`
|
|
|
53
60
|
`;
|
|
54
61
|
|
|
55
62
|
export const Logo = () => (
|
|
56
|
-
<LogoSvg>
|
|
57
|
-
<path
|
|
58
|
-
|
|
59
|
-
d="M10.3,3.8c-1.7,0-3.5,0.7-4.7,1.9L2.8,3c1.9-1.9,4.6-3,7.5-3c0.6,0,1.3,0.1,1.9,0.2
|
|
60
|
-
l-0.9,3.7C11,3.8,10.6,3.8,10.3,3.8L10.3,3.8z M16.1,7.5c-1.4-1.4-3.2-2.1-5.1-2.1c-2,0-3.9,0.8-5.3,2.3c-1.2,1.2-1.9,2.8-2,4.5H0
|
|
61
|
-
c0.1-2.7,1-4.9,3-7c0.2-0.2,0.5-0.5,0.7-0.7l1.8,1.8l0.1-0.1c1.2-1.2,2.9-1.9,4.6-1.9c0.4,0,0.8,0,1.2,0.1l0.2,0l0.6-2.5
|
|
62
|
-
c2.3,0.3,4.3,1.2,6,2.8l0.3,0.3c2,1.9,3.1,4.5,3.3,7.3h-3.6C18.1,10.4,17.3,8.7,16.1,7.5L16.1,7.5z M19.8,3.3
|
|
63
|
-
c2.9,2.8,4.4,6.8,4,10.8c-0.3,2.8-1.5,5.4-3.4,7.6L17,19.1c0.4-0.4,0.7-0.8,1-1.2c0.9-1.2,1.4-2.7,1.6-4.2c0-0.4,0.1-0.7,0-1.1h2.7
|
|
64
|
-
l0-0.2c-0.1-3-1.4-5.7-3.5-7.8l-0.2-0.2L19.8,3.3L19.8,3.3z M16.5,18.9l-0.2,0.2l2.6,2c-2.3,2.6-5.6,4-9.1,3.8l0-4
|
|
65
|
-
c0.2,0,0.4,0,0.6,0h0c2.6,0,5-1.4,6.4-3.6l0.7,0.5C17.2,18.2,16.9,18.6,16.5,18.9L16.5,18.9z"
|
|
66
|
-
/>
|
|
63
|
+
<LogoSvg viewBox="0 0 260 260">
|
|
64
|
+
<path d="M1.11,125.62C1.11,74.94,40.22,39,93.72,39S186,74.94,186,125.62s-38.79,86.66-92.29,86.66S1.11,176.3,1.11,125.62Zm135.47,0c0-29.1-18.46-46.62-42.86-46.62S50.54,96.52,50.54,125.62s18.77,46.62,43.18,46.62S136.58,154.72,136.58,125.62Z" />
|
|
65
|
+
<circle cx="227.6" cy="181.13" r="31.29" />
|
|
67
66
|
</LogoSvg>
|
|
68
67
|
);
|
|
69
68
|
|
|
@@ -24,6 +24,15 @@ describe("Sidebar", () => {
|
|
|
24
24
|
state = Immutable.fromJS({
|
|
25
25
|
navigation: { route: { match: { params: { scope: "Global" } } }, config: { prependHref: "/Global/" } },
|
|
26
26
|
settings: { defaultScope: "myScope" },
|
|
27
|
+
modules: {
|
|
28
|
+
tree: "modulesTree",
|
|
29
|
+
visibleModules: ["a", "module123"],
|
|
30
|
+
lastScopeAndModuleSelection: {
|
|
31
|
+
scope: "Norway",
|
|
32
|
+
moduleName: "Profiles",
|
|
33
|
+
routingPerformed: false,
|
|
34
|
+
},
|
|
35
|
+
},
|
|
27
36
|
});
|
|
28
37
|
store = {
|
|
29
38
|
subscribe: () => {},
|
|
@@ -153,6 +162,15 @@ describe("EnhancedMenuItem", () => {
|
|
|
153
162
|
},
|
|
154
163
|
config: { prependHref: "/Global/" },
|
|
155
164
|
},
|
|
165
|
+
modules: {
|
|
166
|
+
tree: "modulesTree",
|
|
167
|
+
visibleModules: ["route"],
|
|
168
|
+
lastScopeAndModuleSelection: {
|
|
169
|
+
scope: "Norway",
|
|
170
|
+
moduleName: "Profiles",
|
|
171
|
+
routingPerformed: false,
|
|
172
|
+
},
|
|
173
|
+
},
|
|
156
174
|
settings: { defaultScope: "myScope" },
|
|
157
175
|
}),
|
|
158
176
|
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import React, { useEffect, useState } from "react";
|
|
2
|
+
import { useDispatch, useSelector } from "react-redux";
|
|
3
|
+
import { getDefaultScope, getScopes } from "../actions/scopes";
|
|
4
|
+
import {
|
|
5
|
+
defaultScopeSelector,
|
|
6
|
+
getApplicationModulesSelector,
|
|
7
|
+
getLoadedModulesScopeSelector,
|
|
8
|
+
} from "../selectors/settings";
|
|
9
|
+
import { Loader } from "./Authenticate";
|
|
10
|
+
import { overtureModule, scopeTypes } from "../constants";
|
|
11
|
+
import { initializeFirstModuleScope } from "../actions/modules";
|
|
12
|
+
|
|
13
|
+
const ApplicationModuleLoader = ({ children }) => {
|
|
14
|
+
const dispatch = useDispatch();
|
|
15
|
+
|
|
16
|
+
const [scopesLoaded, setScopesLoaded] = useState(false);
|
|
17
|
+
|
|
18
|
+
const loadedModules = useSelector(getLoadedModulesScopeSelector);
|
|
19
|
+
const applicationModules = useSelector(getApplicationModulesSelector);
|
|
20
|
+
const defaultScope = useSelector(defaultScopeSelector);
|
|
21
|
+
|
|
22
|
+
useEffect(() => {
|
|
23
|
+
if (applicationModules.length > 0 && scopesLoaded === false) {
|
|
24
|
+
if (applicationModules.includes(overtureModule.System)) {
|
|
25
|
+
dispatch(initializeFirstModuleScope(scopeTypes.global));
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
applicationModules.forEach(x => {
|
|
29
|
+
// For the default scope, the latest that will be returned will be the chosen one
|
|
30
|
+
dispatch(getDefaultScope(x));
|
|
31
|
+
// For scopes, they need to be merged
|
|
32
|
+
dispatch(getScopes(x));
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
setScopesLoaded(true);
|
|
36
|
+
}
|
|
37
|
+
}, [dispatch, applicationModules, scopesLoaded]);
|
|
38
|
+
|
|
39
|
+
const scopeLoadedFromAllModules =
|
|
40
|
+
applicationModules.length > 0 &&
|
|
41
|
+
applicationModules.reduce((prev, current) => prev && loadedModules.includes(current), true);
|
|
42
|
+
|
|
43
|
+
const applicationModuleReady = scopeLoadedFromAllModules && defaultScope != null;
|
|
44
|
+
|
|
45
|
+
if (!applicationModuleReady) {
|
|
46
|
+
return <Loader />;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
return React.Children.only(children);
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export default ApplicationModuleLoader;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Immutable from "immutable";
|
|
3
|
+
import { Provider } from "react-redux";
|
|
4
|
+
import { ThemeProvider } from "styled-components";
|
|
5
|
+
import { Loader } from "./Authenticate";
|
|
6
|
+
import ApplicationModuleLoader from "./ApplicationModuleLoader";
|
|
7
|
+
import { mount } from "enzyme";
|
|
8
|
+
import { getDefaultScope, getScopes } from "../actions/scopes";
|
|
9
|
+
import sinon from "sinon";
|
|
10
|
+
import { initializeFirstModuleScope } from "../actions/modules";
|
|
11
|
+
import { scopeTypes } from "../constants";
|
|
12
|
+
|
|
13
|
+
const TestComp = () => {
|
|
14
|
+
return <div className="test" />;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
jest.mock("../utils/buildUrl", () => {
|
|
18
|
+
const modExport = {};
|
|
19
|
+
modExport.loadConfig = () => Promise.resolve({});
|
|
20
|
+
modExport.buildUrl = (path = [], params = "") => "URL: " + path.join("/") + " " + JSON.stringify(params);
|
|
21
|
+
return modExport;
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
describe("ApplicationModuleLoader", () => {
|
|
25
|
+
let state, store;
|
|
26
|
+
|
|
27
|
+
beforeEach(() => {
|
|
28
|
+
state = Immutable.fromJS({
|
|
29
|
+
requests: {},
|
|
30
|
+
scopes: {
|
|
31
|
+
test1: {
|
|
32
|
+
id: "test1",
|
|
33
|
+
name: { "en-CA": "Test 1", "en-US": "Test 1" },
|
|
34
|
+
children: ["test2"],
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
authentication: {
|
|
38
|
+
name: "foo@bar.com",
|
|
39
|
+
},
|
|
40
|
+
settings: {
|
|
41
|
+
defaultScope: "aDefaultScope",
|
|
42
|
+
loadedModulesScope: ["moduleA", "moduleB"],
|
|
43
|
+
modules: ["moduleA", "moduleB"],
|
|
44
|
+
},
|
|
45
|
+
});
|
|
46
|
+
store = state => ({
|
|
47
|
+
subscribe: () => {},
|
|
48
|
+
getState: () => state,
|
|
49
|
+
dispatch: sinon.spy().named("dispatch"),
|
|
50
|
+
});
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
it("shows the component when scopes configuration are all loaded", () =>
|
|
54
|
+
expect(
|
|
55
|
+
<Provider store={store(state)}>
|
|
56
|
+
<ApplicationModuleLoader>
|
|
57
|
+
<TestComp />
|
|
58
|
+
</ApplicationModuleLoader>
|
|
59
|
+
</Provider>,
|
|
60
|
+
"when mounted",
|
|
61
|
+
"to exhaustively satisfy",
|
|
62
|
+
<TestComp />,
|
|
63
|
+
));
|
|
64
|
+
|
|
65
|
+
it("shows a load indicator component when default scope is still unknown", () => {
|
|
66
|
+
state = state.setIn(["settings", "defaultScope"], null);
|
|
67
|
+
return expect(
|
|
68
|
+
<Provider store={store(state)}>
|
|
69
|
+
<ThemeProvider theme={{}}>
|
|
70
|
+
<ApplicationModuleLoader>
|
|
71
|
+
<TestComp />
|
|
72
|
+
</ApplicationModuleLoader>
|
|
73
|
+
</ThemeProvider>
|
|
74
|
+
</Provider>,
|
|
75
|
+
"when mounted",
|
|
76
|
+
"to exhaustively satisfy",
|
|
77
|
+
<ThemeProvider theme={{}}>
|
|
78
|
+
<Loader />
|
|
79
|
+
</ThemeProvider>,
|
|
80
|
+
);
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
it("shows a load indicator component when scopes trees are not loaded for all modules", () => {
|
|
84
|
+
state = state.setIn(["settings", "loadedModulesScope"], Immutable.fromJS(["moduleA"]));
|
|
85
|
+
return expect(
|
|
86
|
+
<Provider store={store(state)}>
|
|
87
|
+
<ThemeProvider theme={{}}>
|
|
88
|
+
<ApplicationModuleLoader>
|
|
89
|
+
<TestComp />
|
|
90
|
+
</ApplicationModuleLoader>
|
|
91
|
+
</ThemeProvider>
|
|
92
|
+
</Provider>,
|
|
93
|
+
"when mounted",
|
|
94
|
+
"to exhaustively satisfy",
|
|
95
|
+
<ThemeProvider theme={{}}>
|
|
96
|
+
<Loader />
|
|
97
|
+
</ThemeProvider>,
|
|
98
|
+
);
|
|
99
|
+
});
|
|
100
|
+
|
|
101
|
+
it("scopes tree and default scope should be loaded when rendering the component", () => {
|
|
102
|
+
const theStore = store(state);
|
|
103
|
+
|
|
104
|
+
const component = (
|
|
105
|
+
<Provider store={theStore}>
|
|
106
|
+
<ThemeProvider theme={{}}>
|
|
107
|
+
<ApplicationModuleLoader>
|
|
108
|
+
<TestComp />
|
|
109
|
+
</ApplicationModuleLoader>
|
|
110
|
+
</ThemeProvider>
|
|
111
|
+
</Provider>
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
mount(component);
|
|
115
|
+
|
|
116
|
+
expect(theStore.dispatch, "to have calls satisfying", [
|
|
117
|
+
{ args: [getDefaultScope("moduleA")] },
|
|
118
|
+
{ args: [getScopes("moduleA")] },
|
|
119
|
+
{ args: [getDefaultScope("moduleB")] },
|
|
120
|
+
{ args: [getScopes("moduleB")] },
|
|
121
|
+
]);
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
it("First module scope should be initialized when System is part application modules", () => {
|
|
125
|
+
state = state.setIn(["settings", "modules"], Immutable.fromJS(["moduleA", "System"]));
|
|
126
|
+
|
|
127
|
+
const theStore = store(state);
|
|
128
|
+
|
|
129
|
+
const component = (
|
|
130
|
+
<Provider store={theStore}>
|
|
131
|
+
<ThemeProvider theme={{}}>
|
|
132
|
+
<ApplicationModuleLoader>
|
|
133
|
+
<TestComp />
|
|
134
|
+
</ApplicationModuleLoader>
|
|
135
|
+
</ThemeProvider>
|
|
136
|
+
</Provider>
|
|
137
|
+
);
|
|
138
|
+
|
|
139
|
+
mount(component);
|
|
140
|
+
|
|
141
|
+
expect(theStore.dispatch, "to have calls satisfying", [
|
|
142
|
+
{ args: [initializeFirstModuleScope(scopeTypes.global)] },
|
|
143
|
+
{ args: [getDefaultScope("moduleA")] },
|
|
144
|
+
{ args: [getScopes("moduleA")] },
|
|
145
|
+
{ args: [getDefaultScope("System")] },
|
|
146
|
+
{ args: [getScopes("System")] },
|
|
147
|
+
]);
|
|
148
|
+
});
|
|
149
|
+
});
|
|
@@ -6,10 +6,10 @@ import { useSelector } from "react-redux";
|
|
|
6
6
|
import { unwrapImmutable } from "../utils";
|
|
7
7
|
import { GET_AUTHENTICATION_PROFILE } from "../actions/authentication";
|
|
8
8
|
import { ERROR, LOGOUT } from "../reducers/request";
|
|
9
|
+
import ApplicationModuleLoader from "./ApplicationModuleLoader";
|
|
9
10
|
|
|
10
11
|
export const useAuthenticationData = () => ({
|
|
11
12
|
loading: useSelector(state => state.getIn(["requests", "actives", GET_AUTHENTICATION_PROFILE])),
|
|
12
|
-
defaultScope: useSelector(state => state.getIn(["settings", "defaultScope"])) || null,
|
|
13
13
|
authedUser: useSelector(state => state.getIn(["authentication", "name"])),
|
|
14
14
|
requestError: unwrapImmutable(useSelector(state => state.getIn(["requests", ERROR]) || null)),
|
|
15
15
|
needLogin: useSelector(state => state.getIn(["requests", LOGOUT])),
|
|
@@ -47,14 +47,15 @@ export const Error = ({ requestError, needLogin }) => {
|
|
|
47
47
|
};
|
|
48
48
|
|
|
49
49
|
const Authenticate = ({ children }) => {
|
|
50
|
-
const { loading,
|
|
51
|
-
|
|
50
|
+
const { loading, authedUser, requestError, needLogin } = useAuthenticationData();
|
|
51
|
+
|
|
52
|
+
if (loading) {
|
|
52
53
|
return <Loader />;
|
|
53
54
|
}
|
|
54
55
|
if (!authedUser) {
|
|
55
56
|
return <Error {...{ requestError, needLogin }} />;
|
|
56
57
|
} else {
|
|
57
|
-
return
|
|
58
|
+
return <ApplicationModuleLoader children={children} />;
|
|
58
59
|
}
|
|
59
60
|
};
|
|
60
61
|
|