forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersistable_state.ts
65 lines (58 loc) · 1.76 KB
/
persistable_state.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
57
58
59
60
61
62
63
64
65
/*
* 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 uuid from 'uuid';
import { Filter } from '@kbn/es-query';
import { DATA_VIEW_SAVED_OBJECT_TYPE } from '../../common';
import { SavedObjectReference } from '../../../../core/types';
import { MigrateFunctionsObject } from '../../../kibana_utils/common';
export const extract = (filters: Filter[]) => {
const references: SavedObjectReference[] = [];
const updatedFilters = filters.map((filter) => {
if (filter.meta?.index) {
const id = uuid();
references.push({
type: DATA_VIEW_SAVED_OBJECT_TYPE,
name: id,
id: filter.meta.index,
});
return {
...filter,
meta: {
...filter.meta,
index: id,
},
};
}
return filter;
});
return { state: updatedFilters, references };
};
export const inject = (filters: Filter[], references: SavedObjectReference[]) => {
return filters.map((filter) => {
if (!filter.meta.index) {
return filter;
}
const reference = references.find((ref) => ref.name === filter.meta.index);
return {
...filter,
meta: {
...filter.meta,
index: reference && reference.id,
},
};
});
};
export const telemetry = (filters: Filter[], collector: unknown) => {
return {};
};
export const migrateToLatest = (filters: Filter[], version: string) => {
return filters;
};
export const getAllMigrations = (): MigrateFunctionsObject => {
return {};
};