Skip to content

Commit

Permalink
[ILM] edit components
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliacech committed Aug 11, 2020
1 parent 5c9d733 commit 54ff2de
Show file tree
Hide file tree
Showing 33 changed files with 299 additions and 341 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* 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.
*/

import React, { cloneElement, Children, Fragment, ReactElement } from 'react';
import { EuiFormRow, EuiFormRowProps } from '@elastic/eui';

type Props = EuiFormRowProps & {
errorKey: string;
isShowingErrors: boolean;
errors: Record<string, string[]>;
};

export const ErrableFormRow: React.FunctionComponent<Props> = ({
errorKey,
isShowingErrors,
errors,
children,
...rest
}) => {
return (
<EuiFormRow
isInvalid={isShowingErrors && errors[errorKey].length > 0}
error={errors[errorKey]}
{...rest}
>
<Fragment>
{Children.map(children, (child) =>
cloneElement(child as ReactElement, {
isInvalid: isShowingErrors && errors[errorKey].length > 0,
})
)}
</Fragment>
</EuiFormRow>
);
};

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
*/

export { ActiveBadge } from './active_badge';
export { ErrableFormRow } from './form_errors';
export { LearnMoreLink } from './learn_more_link';
export { PhaseErrorMessage } from './phase_error_message';
export { MinAgeInput } from './min_age_input';
export { NodeAllocation } from './node_allocation';
export { NodeAttrsDetails } from './node_attrs_details';
export { OptionalLabel } from './optional_label';
export { PhaseErrorMessage } from './phase_error_message';
export { PolicyJsonFlyout } from './policy_json_flyout';
export { SetPriorityInput } from './set_priority_input';
export { SnapshotPolicies } from './snapshot_policies';
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import React, { ReactNode } from 'react';
import { EuiLink } from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n/react';

import { createDocLink } from '../../services/documentation';
import { createDocLink } from '../../../services/documentation';

interface Props {
docPath: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import {
PHASE_COLD,
PHASE_DELETE,
} from '../../../constants';
import { LearnMoreLink } from '../../components';
import { ErrableFormRow } from '../form_errors';
import { LearnMoreLink } from './learn_more_link';
import { ErrableFormRow } from './form_errors';

function getTimingLabelForPhase(phase) {
function getTimingLabelForPhase(phase: string) {
// NOTE: Hot phase isn't necessary, because indices begin in the hot phase.
switch (phase) {
case PHASE_WARM:
Expand All @@ -39,7 +39,7 @@ function getTimingLabelForPhase(phase) {
}
}

function getUnitsAriaLabelForPhase(phase) {
function getUnitsAriaLabelForPhase(phase: string) {
// NOTE: Hot phase isn't necessary, because indices begin in the hot phase.
switch (phase) {
case PHASE_WARM:
Expand Down Expand Up @@ -68,9 +68,23 @@ function getUnitsAriaLabelForPhase(phase) {
}
}

export const MinAgeInput = (props) => {
const { rolloverEnabled, errors, phaseData, phase, setPhaseData, isShowingErrors } = props;
interface Props {
rolloverEnabled: boolean;
errors: Record<string, string[]>;
phaseData: any;
phase: string;
setPhaseData: (dataKey: string, value: any) => void;
isShowingErrors: boolean;
}

export const MinAgeInput: React.FunctionComponent<Props> = ({
rolloverEnabled,
errors,
phaseData,
phase,
setPhaseData,
isShowingErrors,
}) => {
let daysOptionLabel;
let hoursOptionLabel;
let minutesOptionLabel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import {
EuiButton,
} from '@elastic/eui';

import { PHASE_NODE_ATTRS } from '../../../../constants';
import { LearnMoreLink } from '../../../components/learn_more_link';
import { ErrableFormRow } from '../../form_errors';
import { useLoadNodes } from '../../../../services/api';
import { NodeAttrsDetails } from '../node_attrs_details';
import { PHASE_NODE_ATTRS } from '../../../constants';
import { LearnMoreLink } from './learn_more_link';
import { ErrableFormRow } from './form_errors';
import { useLoadNodes } from '../../../services/api';
import { NodeAttrsDetails } from './node_attrs_details';

interface Props {
phase: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
EuiButton,
} from '@elastic/eui';

import { useLoadNodeDetails } from '../../../../services/api';
import { useLoadNodeDetails } from '../../../services/api';

interface Props {
close: () => void;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import React from 'react';
import { EuiBadge } from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n/react';

export const PhaseErrorMessage = ({ isShowingErrors }) => {
export const PhaseErrorMessage = ({ isShowingErrors }: { isShowingErrors: boolean }) => {
return isShowingErrors ? (
<EuiBadge className="eui-alignMiddle" color="danger">
<FormattedMessage
Expand Down

This file was deleted.

Loading

0 comments on commit 54ff2de

Please sign in to comment.