-
Notifications
You must be signed in to change notification settings - Fork 532
Expand file tree
/
Copy pathAppScreenService.ts
More file actions
27 lines (24 loc) · 924 Bytes
/
AppScreenService.ts
File metadata and controls
27 lines (24 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* CloudBeaver - Cloud Database Manager
* Copyright (C) 2020-2026 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
import { PlaceholderContainer } from '@cloudbeaver/core-blocks';
import { injectable } from '@cloudbeaver/core-di';
export const PANEL_ID_LEFT_SIDEBAR = 'dbeaver-left-sidebar';
export const PANEL_ID_RIGHT_SIDEBAR = 'dbeaver-right-sidebar';
export const PANEL_ID_MAIN_CONTENT = 'dbeaver-main-content';
@injectable()
export class AppScreenService {
static screenName = 'app';
readonly placeholder: PlaceholderContainer;
readonly rightAreaTop: PlaceholderContainer;
readonly rightAreaBottom: PlaceholderContainer;
constructor() {
this.placeholder = new PlaceholderContainer();
this.rightAreaTop = new PlaceholderContainer();
this.rightAreaBottom = new PlaceholderContainer();
}
}