-
Notifications
You must be signed in to change notification settings - Fork 8.2k
/
index.ts
53 lines (49 loc) · 1.96 KB
/
index.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
/*
* 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", the "GNU Affero General Public License v3.0 only", 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", the "GNU Affero General Public
* License v3.0 only", or the "Server Side Public License, v 1".
*/
import { CoreSetup } from '@kbn/core/server';
import { CustomIntegrationRegistry } from '../custom_integration_registry';
import { CustomIntegrationIcon, PLUGIN_ID } from '../../common';
import { languageIntegrations } from '../../common/language_integrations';
import type { LanguageIntegration } from '../../common/language_integrations';
export function registerLanguageClients(
core: CoreSetup,
registry: CustomIntegrationRegistry,
branch: string
) {
languageIntegrations.forEach((integration: LanguageIntegration) => {
const icons: CustomIntegrationIcon[] = [];
if (integration.euiIconName) {
icons.push({
type: 'eui',
src: integration.euiIconName,
});
} else if (integration.icon) {
icons.push({
type: 'svg',
src: core.http.basePath.prepend(
`/plugins/${PLUGIN_ID}/assets/language_clients/${integration.icon}`
),
});
}
registry.registerCustomIntegration({
id: `language_client.${integration.id}`,
title: integration.title,
description: integration.description,
type: 'ui_link',
shipper: 'language_clients',
uiInternalPath: integration.exportLanguageUiComponent
? integration?.integrationsAppUrl
: // Documentation for `main` branches is still published at a `master` URL.
integration.docUrlTemplate.replace('{branch}', branch === 'main' ? 'master' : branch),
isBeta: false,
icons,
categories: ['elastic_stack', 'elasticsearch_sdk'],
});
});
}