-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathComponent.ts
44 lines (37 loc) · 1.44 KB
/
Component.ts
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import UIComponent from "sap/ui/core/UIComponent";
import Device from "sap/ui/Device";
/**
* @namespace ui5.typescript.helloworld
*/
export default class Component extends UIComponent {
public static metadata = {
interfaces: ["sap.ui.core.IAsyncContentCreation"],
manifest: "json"
};
private contentDensityClass : string;
public init() : void {
// call the base component's init function
super.init();
}
/**
* This method can be called to determine whether the sapUiSizeCompact or sapUiSizeCozy
* design mode class should be set, which influences the size appearance of some controls.
*
* @public
* @return {string} css class, either 'sapUiSizeCompact' or 'sapUiSizeCozy' - or an empty string if no css class should be set
*/
public getContentDensityClass() : string {
if (this.contentDensityClass === undefined) {
// check whether FLP has already set the content density class; do nothing in this case
if (document.body.classList.contains("sapUiSizeCozy") || document.body.classList.contains("sapUiSizeCompact")) {
this.contentDensityClass = "";
} else if (!Device.support.touch) { // apply "compact" mode if touch is not supported
this.contentDensityClass = "sapUiSizeCompact";
} else {
// "cozy" in case of touch support; default for most sap.m controls, but needed for desktop-first controls like sap.ui.table.Table
this.contentDensityClass = "sapUiSizeCozy";
}
}
return this.contentDensityClass;
}
}