Interface ShowOrgApplicationDefaultPageViewProps<TOrganizationCustomFields>

interface ShowOrgApplicationDefaultPageViewProps<TOrganizationCustomFields> {
    blockProps: BlockComponentProps;
    isLoading: boolean;
    isUpdating: boolean;
    orgApplication?: OrganizationResponse<TOrganizationCustomFields>;
    setModalState: ((modal) => void);
}

Type Parameters

  • TOrganizationCustomFields

Properties

Standard blockProps

isLoading: boolean

Whether background loading is currently occurring

isUpdating: boolean

Whether we are submitting a update to the application

orgApplication?: OrganizationResponse<TOrganizationCustomFields>

The organization application to display in this component

setModalState: ((modal) => void)

Open or close the current modal

Type declaration

    • (modal): void
    • Open or close the current modal

      Parameters

      • modal: null | "approve" | "reject"

      Returns void

Generated using TypeDoc