Home / Function/ UpdateCustomReportModal() — supabase Function Reference

UpdateCustomReportModal() — supabase Function Reference

Architecture documentation for the UpdateCustomReportModal() function in UpdateModal.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/studio/components/interfaces/Reports/UpdateModal.tsx lines 16–100

export const UpdateCustomReportModal = ({
  selectedReport,
  initialValues,
  onCancel,
}: UpdateCustomReportProps) => {
  const { ref } = useParams()
  const { mutate: updateReport, isPending: isUpdating } = useContentUpsertMutation({
    onSuccess: () => {
      toast.success('Successfully updated report')
      onCancel()
    },
    onError: (error) => {
      toast.error(`Failed to update report: ${error.message}`)
    },
  })

  const onConfirmUpdateReport = (newVals: { name: string; description?: string }) => {
    if (!ref) return console.error('Project ref is required')
    if (!selectedReport) return
    if (!selectedReport.id) return
    if (!selectedReport.project_id) return

    updateReport({
      projectRef: ref,
      payload: {
        ...selectedReport,
        owner_id: selectedReport.owner_id!,
        project_id: selectedReport.project_id,
        id: selectedReport.id,
        name: newVals.name,
        description: newVals.description || '',
      },
    })
  }

  function validate(values: CustomReport) {
    const errors: Partial<CustomReport> = {}
    if (!values.name) errors.name = 'This field is required'
    return errors
  }

  return (
    <Modal
      visible={selectedReport !== undefined}
      onCancel={onCancel}
      hideFooter
      header="Update custom report"
      size="small"
    >
      <Form
        onReset={onCancel}
        validateOnBlur
        initialValues={initialValues}
        validate={validate}
        onSubmit={onConfirmUpdateReport}
      >
        {() => (
          <>
            <Modal.Content>
              <Input label="Name" id="name" name="name" />
            </Modal.Content>
            <Modal.Content>
              <Input.TextArea
                label="Description"
                id="description"
                placeholder="Describe your custom report"
                size="medium"
                textAreaClassName="resize-none"
              />
            </Modal.Content>
            <Modal.Separator />
            <Modal.Content className="flex items-center justify-end gap-2">
              <Button htmlType="reset" type="default" onClick={onCancel} disabled={isUpdating}>
                Cancel
              </Button>
              <Button htmlType="submit" loading={isUpdating} disabled={isUpdating}>
                Save custom report
              </Button>
            </Modal.Content>
          </>
        )}
      </Form>
    </Modal>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free