本文整理汇总了TypeScript中ui/chrome.getBasePath函数的典型用法代码示例。如果您正苦于以下问题:TypeScript getBasePath函数的具体用法?TypeScript getBasePath怎么用?TypeScript getBasePath使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了getBasePath函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: compose
export function compose(): FrontendLibs {
const api = new AxiosRestAPIAdapter(chrome.getXsrfToken(), chrome.getBasePath());
const esAdapter = new RestElasticsearchAdapter(api, INDEX_NAMES.BEATS);
const elasticsearchLib = new ElasticsearchLib(esAdapter);
const configBlocks = new ConfigBlocksLib(
new RestConfigBlocksAdapter(api),
translateConfigSchema(configBlockSchemas)
);
const tags = new TagsLib(new RestTagsAdapter(api), elasticsearchLib);
const tokens = new RestTokensAdapter(api);
const beats = new BeatsLib(new RestBeatsAdapter(api), elasticsearchLib);
const framework = new FrameworkLib(
new KibanaFrameworkAdapter(
camelCase(PLUGIN.ID),
management,
routes,
chrome.getBasePath,
onKibanaReady,
XPackInfoProvider,
chrome.getKibanaVersion()
)
);
const libs: FrontendLibs = {
framework,
elasticsearch: elasticsearchLib,
tags,
tokens,
beats,
configBlocks,
};
return libs;
}
示例2: compose
export function compose(): FrontendLibs {
const api = new AxiosRestAPIAdapter(chrome.getXsrfToken(), chrome.getBasePath());
const esAdapter = new RestElasticsearchAdapter(api, INDEX_NAMES.BEATS);
const tags = new TagsLib(new RestTagsAdapter(api), supportedConfigs);
const tokens = new RestTokensAdapter(api);
const beats = new BeatsLib(new RestBeatsAdapter(api), {
tags,
});
const domainLibs: FrontendDomainLibs = {
tags,
tokens,
beats,
};
const pluginUIModule = uiModules.get('app/beats_management');
const framework = new KibanaFrameworkAdapter(
pluginUIModule,
management,
routes,
chrome,
XPackInfoProvider,
Notifier
);
const libs: FrontendLibs = {
framework,
elasticsearch: new ElasticsearchLib(esAdapter),
...domainLibs,
};
return libs;
}
示例3: compose
export function compose(): FrontendLibs {
const api = new AxiosRestAPIAdapter(chrome.getXsrfToken(), chrome.getBasePath());
const esAdapter = new RestElasticsearchAdapter(api, INDEX_NAMES.BEATS);
const tags = new TagsLib(new RestTagsAdapter(api), getSupportedConfig());
const tokens = new RestTokensAdapter(api);
const beats = new BeatsLib(new RestBeatsAdapter(api), {
tags,
});
const framework = new FrameworkLib(
new KibanaFrameworkAdapter(
PLUGIN.ID,
management,
routes,
chrome.getBasePath,
onKibanaReady,
XPackInfoProvider,
chrome.getUiSettingsClient()
)
);
const libs: FrontendLibs = {
framework,
elasticsearch: new ElasticsearchLib(esAdapter),
tags,
tokens,
beats,
};
return libs;
}
示例4: compose
export function compose(): AppFrontendLibs {
const cache = new InMemoryCache({
dataIdFromObject: () => null,
fragmentMatcher: new IntrospectionFragmentMatcher({
introspectionQueryResultData,
}),
});
const observableApi = new AppKibanaObservableApiAdapter({
basePath: chrome.getBasePath(),
xsrfToken: chrome.getXsrfToken(),
});
const graphQLOptions = {
connectToDevTools: process.env.NODE_ENV !== 'production',
cache,
link: ApolloLink.from([
errorLink,
withClientState({
cache,
resolvers: {},
}),
new HttpLink({
credentials: 'same-origin',
headers: {
'kbn-xsrf': chrome.getXsrfToken(),
},
uri: `${chrome.getBasePath()}/api/siem/graphql`,
}),
]),
};
const apolloClient = new ApolloClient(graphQLOptions);
const appModule = uiModules.get('app/siem');
const framework = new AppKibanaFrameworkAdapter(appModule, uiRoutes, timezoneProvider);
const libs: AppFrontendLibs = {
apolloClient,
framework,
observableApi,
};
return libs;
}
示例5: constructor
constructor() {
const logKey = createLogKey('recentlyAccessed', chrome.getBasePath());
this.history = new PersistedLog(logKey, {
maxLength: 20,
filterDuplicates: true,
isDuplicate: (oldItem, newItem) => {
return oldItem.id === newItem.id;
},
});
}
示例6: compose
export function compose(): InfraFrontendLibs {
const cache = new InMemoryCache({
addTypename: false,
fragmentMatcher: new IntrospectionFragmentMatcher({
introspectionQueryResultData,
}),
});
const observableApi = new InfraKibanaObservableApiAdapter({
basePath: chrome.getBasePath(),
xsrfToken: chrome.getXsrfToken(),
});
const graphQLOptions = {
cache,
link: ApolloLink.from([
withClientState({
cache,
resolvers: {},
}),
new HttpLink({
credentials: 'same-origin',
headers: {
'kbn-xsrf': chrome.getXsrfToken(),
},
uri: `${chrome.getBasePath()}/api/infra/graphql`,
}),
]),
};
const apolloClient = new ApolloClient(graphQLOptions);
const infraModule = uiModules.get('app/infa');
const framework = new InfraKibanaFrameworkAdapter(infraModule, uiRoutes, timezoneProvider);
const libs: InfraFrontendLibs = {
apolloClient,
framework,
observableApi,
};
return libs;
}
示例7:
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
// @ts-ignore unconverted Elastic lib
import chrome from 'ui/chrome';
import { AxiosPromise } from 'axios';
// @ts-ignore unconverted local file
import { API_ROUTE_CUSTOM_ELEMENT } from '../../common/lib/constants';
// @ts-ignore unconverted local file
import { fetch } from '../../common/lib/fetch';
import { CustomElement } from './custom_element';
const basePath = chrome.getBasePath();
const apiPath = `${basePath}${API_ROUTE_CUSTOM_ELEMENT}`;
export const create = (customElement: CustomElement): AxiosPromise =>
fetch.post(apiPath, customElement);
export const get = (customElementId: string): Promise<CustomElement> =>
fetch
.get(`${apiPath}/${customElementId}`)
.then(({ data: element }: { data: CustomElement }) => element);
export const update = (id: string, element: CustomElement): AxiosPromise =>
fetch.put(`${apiPath}/${id}`, element);
export const remove = (id: string): AxiosPromise => fetch.delete(`${apiPath}/${id}`);
示例8: ajax
export function ajaxStream<T>(opts: BatchOpts<T>) {
return ajax(chrome.getBasePath(), defaultHeaders, new XMLHttpRequest(), opts);
}