| import { AlertBlock } from "@/components/shared/alert-block"; |
| import { CodeEditor } from "@/components/shared/code-editor"; |
| import { Button } from "@/components/ui/button"; |
| import { |
| Dialog, |
| DialogContent, |
| DialogDescription, |
| DialogHeader, |
| DialogTitle, |
| DialogTrigger, |
| } from "@/components/ui/dialog"; |
| import { api } from "@/utils/api"; |
| import { Loader2, Puzzle, RefreshCw } from "lucide-react"; |
| import { useEffect, useState } from "react"; |
| import { toast } from "sonner"; |
|
|
| interface Props { |
| composeId: string; |
| } |
|
|
| export const ShowConvertedCompose = ({ composeId }: Props) => { |
| const [isOpen, setIsOpen] = useState(false); |
| const { |
| data: compose, |
| error, |
| isError, |
| refetch, |
| } = api.compose.getConvertedCompose.useQuery( |
| { composeId }, |
| { |
| retry: false, |
| }, |
| ); |
|
|
| const { mutateAsync, isLoading } = api.compose.fetchSourceType.useMutation(); |
|
|
| useEffect(() => { |
| if (isOpen) { |
| mutateAsync({ composeId }) |
| .then(() => { |
| refetch(); |
| }) |
| .catch((_err) => {}); |
| } |
| }, [isOpen]); |
|
|
| return ( |
| <Dialog open={isOpen} onOpenChange={setIsOpen}> |
| <DialogTrigger asChild> |
| <Button className="max-lg:w-full" variant="outline"> |
| <Puzzle className="h-4 w-4" /> |
| Preview Compose |
| </Button> |
| </DialogTrigger> |
| <DialogContent className="sm:max-w-6xl max-h-[50rem] overflow-y-auto"> |
| <DialogHeader> |
| <DialogTitle>Converted Compose</DialogTitle> |
| <DialogDescription> |
| Preview your docker-compose file with added domains. Note: At least |
| one domain must be specified for this conversion to take effect. |
| </DialogDescription> |
| </DialogHeader> |
| {isError && <AlertBlock type="error">{error?.message}</AlertBlock>} |
| |
| <AlertBlock type="info"> |
| Preview your docker-compose file with added domains. Note: At least |
| one domain must be specified for this conversion to take effect. |
| </AlertBlock> |
| {isLoading ? ( |
| <div className="flex flex-row items-center justify-center min-h-[25rem] border p-4 rounded-md"> |
| <Loader2 className="h-8 w-8 text-muted-foreground mb-2 animate-spin" /> |
| </div> |
| ) : compose?.length === 5 ? ( |
| <div className="border p-4 rounded-md flex flex-col items-center justify-center min-h-[25rem]"> |
| <Puzzle className="h-8 w-8 text-muted-foreground mb-2" /> |
| <span className="text-muted-foreground"> |
| No converted compose data available. |
| </span> |
| </div> |
| ) : ( |
| <> |
| <div className="flex flex-row gap-2 justify-end"> |
| <Button |
| variant="secondary" |
| isLoading={isLoading} |
| onClick={() => { |
| mutateAsync({ composeId }) |
| .then(() => { |
| refetch(); |
| toast.success("Fetched source type"); |
| }) |
| .catch((err) => { |
| toast.error("Error fetching source type", { |
| description: err.message, |
| }); |
| }); |
| }} |
| > |
| Refresh <RefreshCw className="ml-2 h-4 w-4" /> |
| </Button> |
| </div> |
| |
| <pre> |
| <CodeEditor |
| value={compose || ""} |
| language="yaml" |
| readOnly |
| height="50rem" |
| /> |
| </pre> |
| </> |
| )} |
| </DialogContent> |
| </Dialog> |
| ); |
| }; |
|
|