AW-1959 Add global help-menu
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
2021-02-16 16:49:23 +01:00
parent f802f41bbb
commit 102d96ded9
9 changed files with 167 additions and 6 deletions

View File

@@ -66,6 +66,8 @@ export const TOGGLEAPPMENU = '[AppCommon] ToggleAppMenu';
export const TOGGLENOTIFICATIONMENU = '[AppCommon] ToggleNotificationMenu';
export const TOGGLEHELPMENU = '[AppCommon] ToggleHelpMenu';
export const SETMENUVISIBLE = '[AppCommon] SetMenuVisible';
export const ONLINE = '[AppCommon] Online';
@@ -307,6 +309,12 @@ export class ToggleNotificationMenu implements Action {
constructor() { }
}
export class ToggleHelpMenu implements Action {
readonly type = TOGGLEHELPMENU;
constructor() { }
}
export class SetMenuVisible implements Action {
readonly type = SETMENUVISIBLE;
@@ -373,6 +381,7 @@ export type Actions = OpenModal
| SetPageMode
| ToggleAppMenu
| ToggleNotificationMenu
| ToggleHelpMenu
| NotificationEvent;