From 4d6b3c8f089e51b11453b6c4c20d186646a1299c Mon Sep 17 00:00:00 2001 From: Weves Date: Wed, 7 Feb 2024 00:06:18 -0800 Subject: [PATCH] FE to allow full re-indexing --- .../connector/[ccPairId]/ReIndexButton.tsx | 113 +++++++++++++++--- web/src/lib/connector.ts | 9 +- 2 files changed, 104 insertions(+), 18 deletions(-) diff --git a/web/src/app/admin/connector/[ccPairId]/ReIndexButton.tsx b/web/src/app/admin/connector/[ccPairId]/ReIndexButton.tsx index 84c4de555..35da4e099 100644 --- a/web/src/app/admin/connector/[ccPairId]/ReIndexButton.tsx +++ b/web/src/app/admin/connector/[ccPairId]/ReIndexButton.tsx @@ -1,11 +1,94 @@ "use client"; -import { usePopup } from "@/components/admin/connectors/Popup"; +import { PopupSpec, usePopup } from "@/components/admin/connectors/Popup"; import { runConnector } from "@/lib/connector"; -import { Button } from "@tremor/react"; +import { Button, Divider, Text } from "@tremor/react"; import { useRouter } from "next/navigation"; import { mutate } from "swr"; import { buildCCPairInfoUrl } from "./lib"; +import { useState } from "react"; +import { Modal } from "@/components/Modal"; + +function ReIndexPopup({ + connectorId, + credentialId, + ccPairId, + setPopup, + hide, +}: { + connectorId: number; + credentialId: number; + ccPairId: number; + setPopup: (popupSpec: PopupSpec | null) => void; + hide: () => void; +}) { + async function triggerIndexing(fromBeginning: boolean) { + const errorMsg = await runConnector( + connectorId, + [credentialId], + fromBeginning + ); + if (errorMsg) { + setPopup({ + message: errorMsg, + type: "error", + }); + } else { + setPopup({ + message: "Triggered connector run", + type: "success", + }); + } + mutate(buildCCPairInfoUrl(ccPairId)); + } + + return ( + +
+ + + + This will pull in and index all documents that have changed and/or + have been added since the last successful indexing run. + + + + + + + + This will cause a complete re-indexing of all documents from the + source. + + + + NOTE: depending on the number of documents stored in the + source, this may take a long time. + +
+
+ ); +} export function ReIndexButton({ ccPairId, @@ -19,28 +102,26 @@ export function ReIndexButton({ isDisabled: boolean; }) { const { popup, setPopup } = usePopup(); + const [reIndexPopupVisible, setReIndexPopupVisible] = useState(false); return ( <> + {reIndexPopupVisible && ( + setReIndexPopupVisible(false)} + /> + )} {popup}