/*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/* eslint-disable react/display-name */
import React from "react";
import PagePanel from "components/PagePanel";
import HeaderPanel from "components/HeaderPanel";
import FormItem from "components/FormItem";
import TextInput from "components/TextInput";
import { Instance, LogSourceType } from "API";
import { InstanceGroupType } from "../instanceGroup/create/CreateInstanceGroup";
import { useTranslation } from "react-i18next";
import CrossAccountSelect from "pages/comps/account/CrossAccountSelect";
import InstanceTable from "./InstanceTable";
import SelectType from "../instanceGroup/SelectType";
import ASGSelect from "./ASGSelect";
import { OptionType } from "components/AutoComplete/autoComplete";

export interface InstanceWithStatus extends Instance {
  instanceStatus: string;
  isChecked: boolean;
}
interface InstanceGroupCompProps {
  accountId: string;
  instanceGroup?: InstanceGroupType;
  changeGroupName: (name: string) => void;
  changeGroupType: (type: string) => void;
  changeInstanceSet: (sets: InstanceWithStatus[]) => void;
  showNameEmptyError: boolean;
  setCreateDisabled: (disable: boolean) => void;
  changeCurAccount: (accountId: string) => void;
  changeASG: (asg: OptionType | null) => void;
  hideAccountSetting?: boolean;
}

const InstanceGroupComp: React.FC<InstanceGroupCompProps> = (
  props: InstanceGroupCompProps
) => {
  const {
    accountId,
    instanceGroup,
    changeGroupName,
    changeGroupType,
    showNameEmptyError,
    changeInstanceSet,
    setCreateDisabled,
    changeCurAccount,
    changeASG,
    hideAccountSetting,
  } = props;

  const { t } = useTranslation();

  return (
    <div>
      <PagePanel
        title={t("resource:group.comp.instanceGroup")}
        desc={t("resource:group.comp.instanceGroupDesc")}
      >
        <div>
          <div className="ptb-10">
            <ul>
              <li>{t("resource:group.comp.tips1")}</li>
              <li>{t("resource:group.comp.tips2")}</li>
              <li>{t("resource:group.comp.tips3")}</li>
              <li>{t("resource:group.comp.tips4")}</li>
              <li>{t("resource:group.comp.tips5")}</li>
            </ul>
          </div>

          {!hideAccountSetting && (
            <HeaderPanel title={t("resource:crossAccount.accountSettings")}>
              <CrossAccountSelect
                accountId={accountId || ""}
                changeAccount={(id) => {
                  console.info(id);
                  changeCurAccount(id);
                }}
              />
            </HeaderPanel>
          )}

          <HeaderPanel
            title={t("resource:group.comp.settings")}
            marginBottom={0}
          >
            <FormItem
              optionTitle={t("resource:group.comp.groupName")}
              optionDesc={t("resource:group.comp.groupNameDesc")}
              errorText={
                showNameEmptyError
                  ? t("resource:group.comp.groupNameError")
                  : ""
              }
            >
              <TextInput
                className="m-w-75p"
                value={instanceGroup?.groupName || ""}
                onChange={(event) => {
                  changeGroupName(event.target.value);
                }}
                placeholder="log-example-group"
              />
            </FormItem>
          </HeaderPanel>
          <div style={{ height: 1, borderBottom: "1px solid #ccc" }}></div>

          <div className="mt-20">
            <HeaderPanel title={t("resource:group.config")} contentNoPadding>
              <>
                <SelectType
                  groupType={instanceGroup?.groupType}
                  changeGroupType={(type) => {
                    changeGroupType(type);
                  }}
                />
                {instanceGroup?.groupType === LogSourceType.EC2 && (
                  <InstanceTable
                    accountId={accountId}
                    changeInstanceSet={(sets) => {
                      console.info(sets);
                      changeInstanceSet(sets);
                    }}
                    setCreateDisabled={(disable) => {
                      console.info(disable);
                      setCreateDisabled(disable);
                    }}
                  />
                )}
                {instanceGroup?.groupType === LogSourceType.ASG && (
                  <ASGSelect
                    accountId={accountId}
                    instanceGroupInfo={instanceGroup}
                    changeASG={(asg) => {
                      changeASG(asg);
                    }}
                  />
                )}
              </>
            </HeaderPanel>
          </div>
        </div>
      </PagePanel>
    </div>
  );
};

export default InstanceGroupComp;