-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathIndexSetRotationRetentionDataTieringConfiguration.tsx
More file actions
61 lines (57 loc) · 2.03 KB
/
Copy pathIndexSetRotationRetentionDataTieringConfiguration.tsx
File metadata and controls
61 lines (57 loc) · 2.03 KB
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
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* <http://www.mongodb.com/licensing/server-side-public-license>.
*/
import React from 'react';
import styled, { css } from 'styled-components';
import { DataTieringVisualisation, DataTieringConfiguration } from 'components/indices/data-tiering';
import type { IndexSetFormValues } from 'stores/indices/IndexSetsStore';
type Props = {
values: IndexSetFormValues;
hiddenFields?: string[];
immutableFields?: string[];
ignoreFieldRestrictions: boolean;
};
const DataTieringConfigContainer = styled.div(
({ theme }) => css`
margin-top: ${theme.spacings.lg};
`,
);
const IndexSetRotationRetentionDataTieringConfiguration = ({
values,
hiddenFields = [],
immutableFields = [],
ignoreFieldRestrictions,
}: Props) => (
<>
<DataTieringVisualisation
minDays={values.data_tiering?.index_lifetime_min}
maxDays={values.data_tiering?.index_lifetime_max}
minDaysInHot={values.data_tiering?.index_hot_lifetime_min}
warmTierEnabled={values.data_tiering?.warm_tier_enabled}
archiveData={values.data_tiering?.archive_before_deletion}
/>
{(!hiddenFields.includes('data_tiering') || ignoreFieldRestrictions) && (
<DataTieringConfigContainer>
<DataTieringConfiguration
hiddenFields={hiddenFields}
immutableFields={immutableFields}
ignoreFieldRestrictions={ignoreFieldRestrictions}
/>
</DataTieringConfigContainer>
)}
</>
);
export default IndexSetRotationRetentionDataTieringConfiguration;