/* eslint-disable */

// @ts-nocheck

import { Button } from "../../../shared/@patternfly/react-core";
import JSZip from "jszip";
import { ChangeEvent } from "react";
import { useTranslation } from "react-i18next";
import { ThemeRealmRepresentation } from "./QuickTheme";

type UploadJarProps = {
  onUpload: (theme: ThemeRealmRepresentation) => void;
};

export const UploadJar = ({ onUpload }: UploadJarProps) => {
  const { t } = useTranslation();

  const triggerUpload = () => {
    const input = document.getElementById("jarUpload") as HTMLInputElement;
    input.click();
  };

  const handleAcceptedFiles = async (files: ChangeEvent<HTMLInputElement>) => {
    const file = files.target.files?.[0];
    if (!file) {
      return;
    }

    const jsZip = new JSZip();
    const zipFile = await jsZip.loadAsync(file);
    const themeFile = await zipFile
      .file("theme-settings.json")
      ?.async("string");

    const theme = JSON.parse(themeFile || "{}");
    theme.bgimage = await zipFile.file(theme.bgimage)?.async("blob");
    theme.favicon = await zipFile.file(theme.favicon)?.async("blob");
    theme.logo = await zipFile.file(theme.logo)?.async("blob");
    onUpload(theme);
  };

  return (
    <>
      <input
        id="jarUpload"
        type="file"
        accept=".jar"
        style={{ display: "none" }}
        onChange={(acceptedFiles) => handleAcceptedFiles(acceptedFiles)}
      />
      <Button variant="secondary" onClick={triggerUpload}>
        {t("uploadGeneratedThemeJar")}
      </Button>
    </>
  );
};
