forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Upgrade Assistant] Add checkpoint feature to Overview page (elastic#…
- Loading branch information
1 parent
5c3b8ba
commit 047fe77
Showing
14 changed files
with
419 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
...ts/overview/fix_logs_step/deprecations_count_checkpoint/deprecations_count_checkpoint.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
/* | ||
* 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; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import React, { FunctionComponent, useState } from 'react'; | ||
import moment from 'moment-timezone'; | ||
import { FormattedDate, FormattedTime, FormattedMessage } from '@kbn/i18n/react'; | ||
|
||
import { i18n } from '@kbn/i18n'; | ||
import { EuiCallOut, EuiButton, EuiLoadingContent } from '@elastic/eui'; | ||
import { useAppContext } from '../../../../app_context'; | ||
import { Storage } from '../../../../../shared_imports'; | ||
|
||
const LS_SETTING_ID = 'kibana.upgradeAssistant.lastCheckpoint'; | ||
const localStorage = new Storage(window.localStorage); | ||
|
||
const i18nTexts = { | ||
calloutTitle: (warningsCount: number, previousCheck: string) => ( | ||
<FormattedMessage | ||
id="xpack.upgradeAssistant.overview.verifyChanges.calloutTitle" | ||
defaultMessage="{warningsCount, plural, =0 {No} other {{warningsCount}}} deprecation {warningsCount, plural, one {warning} other {warnings}} since {previousCheck}" | ||
values={{ | ||
warningsCount, | ||
previousCheck: ( | ||
<> | ||
<FormattedDate value={previousCheck} year="numeric" month="long" day="2-digit" />{' '} | ||
<FormattedTime value={previousCheck} timeZoneName="short" hour12={false} /> | ||
</> | ||
), | ||
}} | ||
/> | ||
), | ||
calloutBody: i18n.translate('xpack.upgradeAssistant.overview.verifyChanges.calloutBody', { | ||
defaultMessage: | ||
'Reset the counter after making changes and continue monitoring to verify that you are no longer using deprecated APIs.', | ||
}), | ||
loadingError: i18n.translate('xpack.upgradeAssistant.overview.verifyChanges.loadingError', { | ||
defaultMessage: 'An error occurred while retrieving the count of deprecation logs', | ||
}), | ||
retryButton: i18n.translate('xpack.upgradeAssistant.overview.verifyChanges.retryButton', { | ||
defaultMessage: 'Try again', | ||
}), | ||
resetCounterButton: i18n.translate( | ||
'xpack.upgradeAssistant.overview.verifyChanges.resetCounterButton', | ||
{ | ||
defaultMessage: 'Reset counter', | ||
} | ||
), | ||
}; | ||
|
||
const getPreviousCheckpointDate = () => { | ||
const storedValue = moment(localStorage.get(LS_SETTING_ID)); | ||
|
||
if (storedValue.isValid()) { | ||
return storedValue.toISOString(); | ||
} | ||
|
||
const now = moment().toISOString(); | ||
localStorage.set(LS_SETTING_ID, now); | ||
|
||
return now; | ||
}; | ||
|
||
export const DeprecationsCountCheckpoint: FunctionComponent = () => { | ||
const { api } = useAppContext(); | ||
const [previousCheck, setPreviousCheck] = useState(getPreviousCheckpointDate()); | ||
const { data, error, isLoading, resendRequest, isInitialRequest } = api.getDeprecationLogsCount( | ||
previousCheck | ||
); | ||
|
||
const warningsCount = data?.count || 0; | ||
const calloutTint = warningsCount > 0 ? 'warning' : 'success'; | ||
const calloutIcon = warningsCount > 0 ? 'alert' : 'check'; | ||
const calloutTestId = warningsCount > 0 ? 'hasWarningsCallout' : 'noWarningsCallout'; | ||
|
||
const onResetClick = () => { | ||
const now = moment().toISOString(); | ||
|
||
setPreviousCheck(now); | ||
localStorage.set(LS_SETTING_ID, now); | ||
}; | ||
|
||
if (isInitialRequest && isLoading) { | ||
return <EuiLoadingContent lines={6} />; | ||
} | ||
|
||
if (error) { | ||
return ( | ||
<EuiCallOut | ||
title={i18nTexts.loadingError} | ||
color="danger" | ||
iconType="alert" | ||
data-test-subj="errorCallout" | ||
> | ||
<p> | ||
{error.statusCode} - {error.message} | ||
</p> | ||
<EuiButton color="danger" onClick={resendRequest} data-test-subj="retryButton"> | ||
{i18nTexts.retryButton} | ||
</EuiButton> | ||
</EuiCallOut> | ||
); | ||
} | ||
|
||
return ( | ||
<EuiCallOut | ||
title={i18nTexts.calloutTitle(warningsCount, previousCheck)} | ||
color={calloutTint} | ||
iconType={calloutIcon} | ||
data-test-subj={calloutTestId} | ||
> | ||
<p>{i18nTexts.calloutBody}</p> | ||
<EuiButton color={calloutTint} onClick={onResetClick} data-test-subj="resetLastStoredDate"> | ||
{i18nTexts.resetCounterButton} | ||
</EuiButton> | ||
</EuiCallOut> | ||
); | ||
}; |
8 changes: 8 additions & 0 deletions
8
...blic/application/components/overview/fix_logs_step/deprecations_count_checkpoint/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* | ||
* 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; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
export { DeprecationsCountCheckpoint } from './deprecations_count_checkpoint'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.