All files / publisher/pages/Listing/ListingForm ListingForm.tsx

64.28% Statements 9/14
35.71% Branches 5/14
33.33% Functions 1/3
64.28% Lines 9/14

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193                                                          13x                       13x       13x     13x     13x     13x   13x       13x                       13x                                                                                                                                                                                                                                                
import { useState } from "react";
import { useParams } from "react-router-dom";
import { useForm, useFormState, FieldValues } from "react-hook-form";
import { Strip, Notification } from "@canonical/react-components";
 
import SaveAndPreview from "../../../components/SaveAndPreview";
import ListingDetails from "../ListingDetails";
import ContactInformation from "../ContactInformation";
import AdditionalInformation from "../AdditionalInformation";
import PreviewForm from "../PreviewForm";
import UpdateMetadataModal from "../../../components/UpdateMetadataModal";
import Tour from "../../../components/Tour";
 
import {
  shouldShowUpdateMetadataWarning,
  getDefaultListingData,
  listingTourSteps,
} from "../../../utils";
 
import { useMutateListingData } from "../../../hooks";
 
import type { ListingData } from "../../../types";
 
type Props = {
  data: ListingData;
  refetch: () => void;
};
 
function ListingForm({ data, refetch }: Props): React.JSX.Element {
  const { snapId } = useParams();
 
  const {
    register,
    reset,
    formState,
    getValues,
    setValue,
    control,
    getFieldState,
    handleSubmit,
    watch,
  } = useForm<FieldValues>({
    defaultValues: getDefaultListingData(data),
  });
 
  const { dirtyFields } = useFormState({ control });
 
  const [showSuccessNotification, setShowSuccessNotification] =
    useState<boolean>(false);
 
  const [updateMetadataOnRelease, setUpdateMetadataOnRelease] =
    useState<boolean>(data.update_metadata_on_release);
 
  const [showMetadataWarningModal, setShowMetadataWarningModal] =
    useState<boolean>(false);
 
  const [formValues, setFormValues] = useState<{
    [key: string]: unknown;
  } | null>(null);
 
  const { mutate, isLoading } = useMutateListingData({
    data,
    dirtyFields,
    getDefaultData: getDefaultListingData,
    refetch,
    reset,
    setShowSuccessNotification,
    setUpdateMetadataOnRelease,
    shouldShowUpdateMetadataWarning,
    snapName: snapId,
  });
 
  return (
    <>
      <form
        className="p-form"
        onSubmit={handleSubmit((values: FieldValues) => {
          if (
            data.update_metadata_on_release &&
            shouldShowUpdateMetadataWarning(dirtyFields)
          ) {
            setFormValues(values);
            setShowMetadataWarningModal(true);
          } else {
            mutate(values);
          }
        })}
      >
        <Tour steps={listingTourSteps} />
        <SaveAndPreview
          snapName={snapId || ""}
          isDirty={formState.isDirty}
          reset={reset}
          isSaving={isLoading}
          isValid={formState.isValid}
          showPreview={true}
        />
 
        {updateMetadataOnRelease && (
          <>
            <Strip shallow className="u-no-padding--bottom">
              <div className="u-fixed-width">
                <Notification severity="caution">
                  Information here was automatically updated to the latest
                  version of the snapcraft.yaml released to the stable channel.{" "}
                  <a
                    className="p-link--external"
                    href="/docs/snapcraft-top-level-metadata"
                  >
                    Learn more
                  </a>
                  .
                </Notification>
              </div>
            </Strip>
 
            {showMetadataWarningModal ? (
              <UpdateMetadataModal
                setShowMetadataWarningModal={setShowMetadataWarningModal}
                submitForm={mutate}
                // @ts-expect-error Conflict between React Query and React Hook Form
                formData={formValues}
              />
            ) : null}
          </>
        )}
 
        {showSuccessNotification && (
          <Strip shallow className="u-no-padding--bottom">
            <Notification
              severity="positive"
              onDismiss={() => {
                setShowSuccessNotification(false);
              }}
              className="u-no-margin--bottom"
            >
              Changes applied successfully.
            </Notification>
          </Strip>
        )}
 
        <Strip shallow>
          <ListingDetails
            data={data}
            register={register}
            getValues={getValues}
            setValue={setValue}
            control={control}
          />
 
          <Strip shallow>
            <div className="u-fixed-width">
              <hr className="u-no-margin--bottom" />
            </div>
          </Strip>
 
          <ContactInformation
            data={data}
            register={register}
            control={control}
            getFieldState={getFieldState}
            getValues={getValues}
          />
 
          <Strip shallow>
            <div className="u-fixed-width">
              <hr className="u-no-margin--bottom" />
            </div>
          </Strip>
 
          <AdditionalInformation
            data={data}
            register={register}
            getValues={getValues}
            setValue={setValue}
            watch={watch}
          />
        </Strip>
      </form>
      {snapId && (
        <PreviewForm
          snapName={snapId}
          getValues={getValues}
          watch={watch}
          data={data}
        />
      )}
    </>
  );
}
 
export default ListingForm;