-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
Copy pathrender_utils.ts
56 lines (53 loc) · 1.92 KB
/
render_utils.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
45
46
47
48
49
50
51
52
53
54
55
56
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import UiSharedDepsNpm from '@kbn/ui-shared-deps-npm';
import * as UiSharedDepsSrc from '@kbn/ui-shared-deps-src';
import { PublicUiSettingsParams, UserProvidedValues } from '../ui_settings';
export const getSettingValue = <T>(
settingName: string,
settings: {
user?: Record<string, UserProvidedValues<unknown>>;
defaults: Readonly<Record<string, PublicUiSettingsParams>>;
},
convert: (raw: unknown) => T
): T => {
const value = settings.user?.[settingName]?.userValue ?? settings.defaults[settingName].value;
return convert(value);
};
export const getStylesheetPaths = ({
themeVersion,
darkMode,
basePath,
buildNum,
}: {
themeVersion: UiSharedDepsNpm.ThemeVersion;
darkMode: boolean;
buildNum: number;
basePath: string;
}) => {
const regularBundlePath = `${basePath}/${buildNum}/bundles`;
return [
...(darkMode
? [
`${regularBundlePath}/kbn-ui-shared-deps-npm/${UiSharedDepsNpm.darkCssDistFilename(
themeVersion
)}`,
`${regularBundlePath}/kbn-ui-shared-deps-src/${UiSharedDepsSrc.cssDistFilename}`,
`${basePath}/node_modules/@kbn/ui-framework/dist/kui_dark.css`,
`${basePath}/ui/legacy_dark_theme.css`,
]
: [
`${regularBundlePath}/kbn-ui-shared-deps-npm/${UiSharedDepsNpm.lightCssDistFilename(
themeVersion
)}`,
`${regularBundlePath}/kbn-ui-shared-deps-src/${UiSharedDepsSrc.cssDistFilename}`,
`${basePath}/node_modules/@kbn/ui-framework/dist/kui_light.css`,
`${basePath}/ui/legacy_light_theme.css`,
]),
];
};