All files / publisher/listing/components/ListingForm ListingForm.tsx

72.22% Statements 13/18
50% Branches 7/14
50% Functions 2/4
72.22% Lines 13/18

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 194 195 196 197 198 199 200 201 202 203 204 205                                                  5x                       5x       5x     5x     5x     5x   5x       5x                       5x 5x       5x 5x                                   5x                                                                                                                                                                                                                                
import { useState, useEffect } 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 "../../../shared/SaveAndPreview";
import ListingDetails from "../ListingDetails";
import ContactInformation from "../ContactInformation";
import AdditionalInformation from "../AdditionalInformation";
import PreviewForm from "../PreviewForm";
import UpdateMetadataModal from "../../../shared/UpdateMetadataModal";
 
import { shouldShowUpdateMetadataWarning, getDefaultData } from "../../utils";
import { initListingTour } from "../../../tour";
 
import { useMutateListingData } from "../../hooks";
 
import type { Data } from "../../types";
 
type Props = {
  data: Data;
  refetch: Function;
};
 
function ListingForm({ data, refetch }: Props): JSX.Element {
  const { snapName } = useParams();
 
  const {
    register,
    reset,
    formState,
    getValues,
    setValue,
    control,
    getFieldState,
    handleSubmit,
    watch,
  } = useForm<FieldValues>({
    defaultValues: getDefaultData(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]: any } | null>(
    null,
  );
 
  const { mutate, isLoading } = useMutateListingData({
    data,
    dirtyFields,
    getDefaultData,
    refetch,
    reset,
    setShowSuccessNotification,
    setUpdateMetadataOnRelease,
    shouldShowUpdateMetadataWarning,
    snapName,
  });
 
  useEffect(() => {
    const tourContainer = document.getElementById(
      "tour-container",
    ) as HTMLElement;
 
    Eif (snapName) {
      initListingTour({
        snapName,
        container: tourContainer,
        formFields: {
          title: data.title,
          snap_name: snapName,
          categories: [],
          video_urls: [],
          images: [],
          summary: data.summary,
          website: [],
          contact: [],
        },
        steps: data.tour_steps,
      });
    }
  }, []);
 
  return (
    <>
      <form
        className="p-form"
        onSubmit={handleSubmit((values: any) => {
          if (
            data.update_metadata_on_release &&
            shouldShowUpdateMetadataWarning(dirtyFields)
          ) {
            setFormValues(values);
            setShowMetadataWarningModal(true);
          } else {
            mutate(values);
          }
        })}
      >
        <SaveAndPreview
          snapName={snapName}
          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}
                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>
      {snapName && <PreviewForm snapName={snapName} getValues={getValues} />}
      <div id="tour-container" />
    </>
  );
}
 
export default ListingForm;