import posthog from "posthog-js"; import React from "react"; import { useSelector } from "react-redux"; import { SuggestionItem } from "#/components/features/suggestions/suggestion-item"; import { useAuth } from "#/context/auth-context"; import { DownloadModal } from "#/components/shared/download-modal"; import type { RootState } from "#/store"; interface ActionSuggestionsProps { onSuggestionsClick: (value: string) => void; } export function ActionSuggestions({ onSuggestionsClick, }: ActionSuggestionsProps) { const { gitHubToken } = useAuth(); const { selectedRepository } = useSelector( (state: RootState) => state.initialQuery, ); const [isDownloading, setIsDownloading] = React.useState(false); const [hasPullRequest, setHasPullRequest] = React.useState(false); const handleDownloadClose = () => { setIsDownloading(false); }; return (
{gitHubToken && selectedRepository ? (
{!hasPullRequest ? ( <> { posthog.capture("push_to_branch_button_clicked"); onSuggestionsClick(value); }} /> { posthog.capture("create_pr_button_clicked"); onSuggestionsClick(value); setHasPullRequest(true); }} /> ) : ( { posthog.capture("push_to_pr_button_clicked"); onSuggestionsClick(value); }} /> )}
) : ( { posthog.capture("download_workspace_button_clicked"); if (!isDownloading) { setIsDownloading(true); } }} /> )}
); }