Skip to content

Commit

Permalink
[Reporting] Fix job completion notification to disappear after 24 hou…
Browse files Browse the repository at this point in the history
…rs (#133381)

(cherry picked from commit 1e39a2c)
  • Loading branch information
dokmic committed Jun 2, 2022
1 parent 5fd5130 commit c9f8c76
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 42 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions x-pack/plugins/reporting/public/lib/stream_handler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* 2.0.
*/

import { omit } from 'lodash';
import sinon, { stub } from 'sinon';
import { NotificationsStart } from 'src/core/public';
import { coreMock, themeServiceMock } from '../../../../../src/core/public/mocks';
Expand Down Expand Up @@ -103,7 +102,7 @@ describe('stream handler', () => {
expect(mockShowDanger.callCount).toBe(0);
expect(mockShowSuccess.callCount).toBe(1);
expect(mockShowWarning.callCount).toBe(0);
expect(omit(mockShowSuccess.args[0][0], 'toastLifeTimeMs')).toMatchSnapshot();
expect(mockShowSuccess.args[0]).toMatchSnapshot();
done();
});
});
Expand Down
20 changes: 16 additions & 4 deletions x-pack/plugins/reporting/public/lib/stream_handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ import {
import { Job } from './job';
import { ReportingAPIClient } from './reporting_api_client';

/**
* @todo Replace with `Infinity` once elastic/eui#5945 is resolved.
* @see https://github.com/elastic/eui/issues/5945
*/
const COMPLETED_JOB_TOAST_TIMEOUT = 24 * 60 * 60 * 1000; // 24 hours

function updateStored(jobIds: JobId[]): void {
sessionStorage.setItem(JOB_COMPLETION_NOTIFICATIONS_SESSION_KEY, JSON.stringify(jobIds));
}
Expand Down Expand Up @@ -52,6 +58,8 @@ export class ReportingNotifierStreamHandler {
failed: failedJobs,
}: JobSummarySet): Rx.Observable<JobSummarySet> {
const showNotificationsAsync = async () => {
const completedOptions = { toastLifeTimeMs: COMPLETED_JOB_TOAST_TIMEOUT };

// notifications with download link
for (const job of completedJobs) {
if (job.csvContainsFormulas) {
Expand All @@ -61,7 +69,8 @@ export class ReportingNotifierStreamHandler {
this.apiClient.getManagementLink,
this.apiClient.getDownloadLink,
this.theme
)
),
completedOptions
);
} else if (job.maxSizeReached) {
this.notifications.toasts.addWarning(
Expand All @@ -70,7 +79,8 @@ export class ReportingNotifierStreamHandler {
this.apiClient.getManagementLink,
this.apiClient.getDownloadLink,
this.theme
)
),
completedOptions
);
} else if (job.status === JOB_STATUSES.WARNINGS) {
this.notifications.toasts.addWarning(
Expand All @@ -79,7 +89,8 @@ export class ReportingNotifierStreamHandler {
this.apiClient.getManagementLink,
this.apiClient.getDownloadLink,
this.theme
)
),
completedOptions
);
} else {
this.notifications.toasts.addSuccess(
Expand All @@ -88,7 +99,8 @@ export class ReportingNotifierStreamHandler {
this.apiClient.getManagementLink,
this.apiClient.getDownloadLink,
this.theme
)
),
completedOptions
);
}
}
Expand Down
7 changes: 0 additions & 7 deletions x-pack/plugins/reporting/public/notifier/job_success.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,5 @@ export const getSuccessToast = (
</>,
{ theme$: theme.theme$ }
),
/**
* If timeout is an Infinity value, a Not-a-Number (NaN) value, or negative, then timeout will be zero.
* And we cannot use `Number.MAX_SAFE_INTEGER` because EUI's Timer implementation
* subtracts it from the current time to evaluate the remainder.
* @see https://www.w3.org/TR/2011/WD-html5-20110525/timers.html
*/
toastLifeTimeMs: Number.MAX_SAFE_INTEGER - Date.now(),
'data-test-subj': 'completeReportSuccess',
});

0 comments on commit c9f8c76

Please sign in to comment.