/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import { CallbackType, TaskResult } from "../interface"; import { RecoveryJobMetaData } from "../../models/interfaces"; import { CommonService } from "../../services"; import { triggerEvent, EVENT_MAP } from "../utils"; import { DetailLink } from "../components/DetailLink"; import { FormatResourceWithClusterInfo } from "../components/FormatResourceWithClusterInfo"; export const callbackForShrink: CallbackType = async (job: RecoveryJobMetaData, { core }) => { const extras = job.extras; const commonService = new CommonService(core.http); if (extras.taskId) { const tasksResult = await commonService.apiCaller({ endpoint: "transport.request", data: { path: `/.tasks/_doc/${extras.taskId}`, method: "GET", }, }); if (tasksResult.ok) { const { _source, found } = tasksResult.response; const { completed, error } = (_source || {}) as TaskResult["_source"]; if (completed && found) { if (extras.toastId) { core.notifications.toasts.remove(extras.toastId); } if (!error?.reason) { triggerEvent(EVENT_MAP.SHRINK_COMPLETE, job); core.notifications.toasts.addSuccess( { title: (( <> Shrink operation on has been completed. ) as unknown) as string, text: (( <> The shrunken index is . ) as unknown) as string, }, { toastLifeTimeMs: 1000 * 60 * 60 * 24 * 5, } ); } else { core.notifications.toasts.addDanger( { iconType: "alert", title: (( <> Shrink operation on has failed. ) as unknown) as string, text: ((
{error.reason}
) as unknown) as string, }, { toastLifeTimeMs: 1000 * 60 * 60 * 24 * 5, } ); } return true; } } } return false; }; export const callbackForShrinkTimeout: CallbackType = (job: RecoveryJobMetaData, { core }) => { const extras = job.extras; if (extras.toastId) { core.notifications.toasts.remove(extras.toastId); } core.notifications.toasts.addWarning( { title: (( <> Shrink operation on has timed out. ) as unknown) as string, text: (( <>The shrink operation has taken more than one hour to complete. To see the latest status, use `GET /_tasks/{extras.taskId}` ) as unknown) as string, }, { toastLifeTimeMs: 1000 * 60 * 60 * 24 * 5, } ); return Promise.resolve(true); };