/*
 * Copyright (C) 2007-2022 Crafter Software Corporation. All Rights Reserved.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import { DetailedItem } from '../../models/Item';
import { ApiResponse } from '../../models/ApiResponse';
import StandardAction from '../../models/StandardAction';
import { GoLiveResponse } from '../../services/publishing';
import { EnhancedDialogProps } from '../EnhancedDialog';
import { EnhancedDialogState } from '../../hooks/useEnhancedDialogState';
import React, { ReactNode } from 'react';
import LookupTable from '../../models/LookupTable';
import { DependencySelectionProps } from '../DependencySelection/DependencySelection';
import { FetchDependenciesResponse } from '../../services/dependencies';
import { PublishingTarget } from '../../models';
export interface ExtendedGoLiveResponse extends GoLiveResponse {
  schedule: 'now' | 'custom';
  publishingTarget: string;
  type: 'submit' | 'publish';
  items: DetailedItem[];
}
export interface PublishDialogBaseProps {
  items?: DetailedItem[];
  scheduling?: 'now' | 'custom';
}
export interface PublishDialogProps extends PublishDialogBaseProps, EnhancedDialogProps {
  onSuccess?(response?: ExtendedGoLiveResponse): any;
}
export interface PublishDialogStateProps extends PublishDialogBaseProps, EnhancedDialogState {
  onClose?: StandardAction;
  onClosed?: StandardAction;
  onSuccess?: StandardAction;
}
export interface PublishDialogContainerProps
  extends PublishDialogBaseProps,
    Pick<PublishDialogProps, 'isSubmitting' | 'onSuccess' | 'onClose'> {}
export interface InternalDialogState {
  emailOnApprove: boolean;
  requestApproval: boolean;
  publishingTarget: string;
  submissionComment: string;
  scheduling: 'now' | 'custom';
  scheduledDateTime: any;
  publishingChannel: string;
  error: ApiResponse;
  fetchingDependencies: boolean;
}
export interface PublishDialogUIProps {
  items: DetailedItem[];
  publishingTargets: PublishingTarget[];
  isFetching: boolean;
  error: ApiResponse;
  published: boolean;
  publishingTargetsStatus: string;
  onPublishingChannelsFailRetry(): void;
  onCloseButtonClick?(e: React.MouseEvent<HTMLButtonElement, MouseEvent>): void;
  handleSubmit: any;
  isSubmitting: boolean;
  submitDisabled: boolean;
  state: InternalDialogState;
  selectedItems: LookupTable<boolean>;
  onItemClicked: DependencySelectionProps['onItemClicked'];
  dependencies: FetchDependenciesResponse;
  onSelectAll(): void;
  onSelectAllSoftDependencies(): void;
  onClickShowAllDeps?: any;
  isRequestPublish?: boolean;
  showRequestApproval: boolean;
  classes?: any;
  submitLabel: ReactNode;
  mixedPublishingDates?: boolean;
  mixedPublishingTargets?: boolean;
  submissionCommentRequired: boolean;
  onPublishingArgumentChange(e: React.ChangeEvent<HTMLInputElement>): void;
}
export declare const updateCheckedList: (path: string[], isChecked: boolean, checked: any) => any;
export declare const paths: (checked: any) => string[];
