mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
27 lines
555 B
TypeScript
27 lines
555 B
TypeScript
import { MenusState } from './menus-state.model';
|
|
import { MenuID } from './menu-id.model';
|
|
|
|
/**
|
|
* The initial state of the menus
|
|
*/
|
|
export const initialMenusState: MenusState = {
|
|
[MenuID.ADMIN]:
|
|
{
|
|
id: MenuID.ADMIN,
|
|
collapsed: true,
|
|
previewCollapsed: true,
|
|
visible: false,
|
|
sections: {},
|
|
sectionToSubsectionIndex: {}
|
|
},
|
|
[MenuID.PUBLIC]:
|
|
{
|
|
id: MenuID.PUBLIC,
|
|
collapsed: true,
|
|
previewCollapsed: true,
|
|
visible: true,
|
|
sections: {},
|
|
sectionToSubsectionIndex: {}
|
|
}
|
|
};
|