forked from github/plane
6595a387d0
* fix: event tracker changes * fix: App provider implementation using wrappers * fix: updating packages * fix: handling warning * fix: wrapper fixes and minor optimization changes * fix: chore app-provider clearnup * fix: cleanup * fix: removing jitsu tracking * fix: minor updates * fix: adding event to posthog event tracker (#2802) * dev: posthog event tracker update intitiate * fix: adding events for posthog integration * fix: event payload --------- Co-authored-by: Ramesh Kumar Chandra <31303617+rameshkumarchandra@users.noreply.github.com>
175 lines
6.4 KiB
TypeScript
175 lines
6.4 KiB
TypeScript
import React, { useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Dialog, Transition } from "@headlessui/react";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// services
|
|
import { ProjectExportService } from "services/project";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
import { Button, CustomSearchSelect } from "@plane/ui";
|
|
// types
|
|
import { IUser, IImporterService } from "types";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
handleClose: () => void;
|
|
data: IImporterService | null;
|
|
user: IUser | undefined;
|
|
provider: string | string[];
|
|
mutateServices: () => void;
|
|
};
|
|
|
|
const projectExportService = new ProjectExportService();
|
|
|
|
export const Exporter: React.FC<Props> = observer((props) => {
|
|
const { isOpen, handleClose, user, provider, mutateServices } = props;
|
|
|
|
const [exportLoading, setExportLoading] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const { project: projectStore } = useMobxStore();
|
|
|
|
const projects = workspaceSlug ? projectStore.projects[workspaceSlug.toString()] : undefined;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const options = projects?.map((project) => ({
|
|
value: project.id,
|
|
query: project.name + project.identifier,
|
|
content: (
|
|
<div className="flex items-center gap-2">
|
|
<span className="text-custom-text-200 text-[0.65rem]">{project.identifier}</span>
|
|
{project.name}
|
|
</div>
|
|
),
|
|
}));
|
|
|
|
const [value, setValue] = React.useState<string[]>([]);
|
|
const [multiple, setMultiple] = React.useState<boolean>(false);
|
|
const onChange = (val: any) => {
|
|
setValue(val);
|
|
};
|
|
const ExportCSVToMail = async () => {
|
|
setExportLoading(true);
|
|
if (workspaceSlug && user && typeof provider === "string") {
|
|
const payload = {
|
|
provider: provider,
|
|
project: value,
|
|
multiple: multiple,
|
|
};
|
|
await projectExportService
|
|
.csvExport(workspaceSlug as string, payload)
|
|
.then(() => {
|
|
mutateServices();
|
|
router.push(`/${workspaceSlug}/settings/exports`);
|
|
setExportLoading(false);
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Export Successful",
|
|
message: `You will be able to download the exported ${
|
|
provider === "csv" ? "CSV" : provider === "xlsx" ? "Excel" : provider === "json" ? "JSON" : ""
|
|
} from the previous export.`,
|
|
});
|
|
})
|
|
.catch(() => {
|
|
setExportLoading(false);
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Export was unsuccessful. Please try again.",
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Transition.Root show={isOpen} as={React.Fragment}>
|
|
<Dialog as="div" className="relative z-20" onClose={handleClose}>
|
|
<Transition.Child
|
|
as={React.Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 bg-custom-backdrop transition-opacity" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 z-20 overflow-y-auto">
|
|
<div className="flex min-h-full items-end justify-center p-4 text-center sm:items-center sm:p-0">
|
|
<Transition.Child
|
|
as={React.Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
enterTo="opacity-100 translate-y-0 sm:scale-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
|
|
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
>
|
|
<Dialog.Panel className="relative transform rounded-lg bg-custom-background-100 text-left shadow-custom-shadow-md transition-all sm:my-8 sm:w-full sm:max-w-2xl">
|
|
<div className="flex flex-col gap-6 gap-y-4 p-6">
|
|
<div className="flex w-full items-center justify-start gap-6">
|
|
<span className="flex items-center justify-start">
|
|
<h3 className="text-xl font-medium 2xl:text-2xl">
|
|
Export to{" "}
|
|
{provider === "csv" ? "CSV" : provider === "xlsx" ? "Excel" : provider === "json" ? "JSON" : ""}
|
|
</h3>
|
|
</span>
|
|
</div>
|
|
<div>
|
|
<CustomSearchSelect
|
|
value={value ?? []}
|
|
onChange={(val: string[]) => onChange(val)}
|
|
options={options}
|
|
input
|
|
label={
|
|
value && value.length > 0
|
|
? projects &&
|
|
projects
|
|
.filter((p) => value.includes(p.id))
|
|
.map((p) => p.identifier)
|
|
.join(", ")
|
|
: "All projects"
|
|
}
|
|
optionsClassName="min-w-full"
|
|
multiple
|
|
/>
|
|
</div>
|
|
<div
|
|
onClick={() => setMultiple(!multiple)}
|
|
className="flex items-center gap-2 max-w-min cursor-pointer"
|
|
>
|
|
<input type="checkbox" checked={multiple} onChange={() => setMultiple(!multiple)} />
|
|
<div className="text-sm whitespace-nowrap">Export the data into separate files</div>
|
|
</div>
|
|
<div className="flex justify-end gap-2">
|
|
<Button variant="neutral-primary" size="sm" onClick={handleClose}>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
onClick={ExportCSVToMail}
|
|
disabled={exportLoading}
|
|
loading={exportLoading}
|
|
>
|
|
{exportLoading ? "Exporting..." : "Export"}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
);
|
|
});
|