godcrm/components/TasksSourceInlineSelector.tsx
GOD CRM Release f89e074dd1
Some checks failed
CI / Lint / Typecheck / Test / Build (push) Has been cancelled
CI / PostgreSQL Integration Tests (push) Has been cancelled
GOD CRM — public scrubbed snapshot
Governed substrate for autonomous agents: scoped identity (passports),
audited actions, MCP workspace. Infra IPs and secrets redacted for public release.
2026-08-10 04:01:45 +03:00

136 lines
5.3 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* TasksSourceInlineSelector
* Extracted from AIChatPanel.tsx (lines 5294-5419)
* Inline component for selecting a tasks/tickets source table.
*/
import React, { useState, useMemo } from 'react';
import { X, Loader2 } from 'lucide-react';
import { useAllTables } from '@/features/tables/hooks/useAllTables';
import type { TasksSourceConfig } from './AIChatPanel.types';
interface TasksSourceInlineSelectorProps {
defaultSpaceId?: number;
onSelect: (config: TasksSourceConfig) => void;
onCancel: () => void;
showHeader?: boolean;
}
export function TasksSourceInlineSelector({ defaultSpaceId, onSelect, onCancel, showHeader = true }: TasksSourceInlineSelectorProps) {
const [selectedProjectId, setSelectedProjectId] = useState<number | null>(null);
const [selectedTableId, setSelectedTableId] = useState<number | null>(null);
const { data: allTablesData, isLoading } = useAllTables();
// Filter spaces
const filteredSpaces = useMemo(() => {
if (!allTablesData?.spacesWithTables) return [];
if (!defaultSpaceId) return allTablesData.spacesWithTables;
return allTablesData.spacesWithTables.filter(s => s.id === defaultSpaceId);
}, [allTablesData, defaultSpaceId]);
// Get tables for selected project
const projectTables = useMemo(() => {
if (!selectedProjectId || !allTablesData?.spacesWithTables) return [];
for (const space of allTablesData.spacesWithTables) {
const project = space.projects.find(p => p.id === selectedProjectId);
if (project) return project.tables || [];
}
return [];
}, [selectedProjectId, allTablesData]);
// Get selected table info
const selectedTable = useMemo(() => {
if (!selectedTableId) return null;
return allTablesData?.flat?.find(t => t.id === String(selectedTableId));
}, [selectedTableId, allTablesData]);
const handleSave = () => {
if (!selectedTable) return;
onSelect({
tableId: Number(selectedTable.id),
tableName: selectedTable.displayName || selectedTable.name,
tableIcon: selectedTable.icon,
displayColumn: selectedTable.displayField
});
};
if (isLoading) {
return (
<div className="p-3 rounded-lg bg-[var(--bg-tertiary)] flex items-center justify-center">
<Loader2 className="w-4 h-4 animate-spin text-[var(--text-tertiary)]" />
</div>
);
}
return (
<div className="p-3 rounded-lg bg-[var(--bg-tertiary)] space-y-3">
{/* Header with close button */}
{showHeader && (
<div className="flex items-center justify-between">
<label htmlFor="tasks-project-select" className="text-xs text-[var(--text-tertiary)]">Проект</label>
<button
onClick={onCancel}
className="p-1 text-[var(--text-tertiary)] hover:text-[var(--text-primary)] transition-colors"
>
<X className="w-4 h-4" />
</button>
</div>
)}
{/* Project selector with label if no header */}
{!showHeader && <label htmlFor="tasks-project-select" className="block text-xs text-[var(--text-tertiary)]">Проект</label>}
{/* Project selector */}
<select
id="tasks-project-select"
value={selectedProjectId || ''}
onChange={(e) => {
setSelectedProjectId(e.target.value ? Number(e.target.value) : null);
setSelectedTableId(null);
}}
className="w-full px-3 py-2 text-sm rounded-lg bg-[var(--bg-secondary)] text-[var(--text-primary)] border border-[var(--border-primary)] focus:outline-none focus:ring-2 focus:ring-[var(--color-primary-500)]/30"
>
<option value=""> Выберите проект </option>
{filteredSpaces.map(space => (
<optgroup key={space.id} label={`${space.icon || '\uD83D\uDCC1'} ${space.name}`}>
{space.projects.map(project => (
<option key={project.id} value={project.id}>
{project.icon || '\uD83D\uDCC2'} {project.name}
</option>
))}
</optgroup>
))}
</select>
{/* Table selector */}
<div>
<label htmlFor="tasks-table-select" className="block text-xs text-[var(--text-tertiary)] mb-1">Таблица</label>
<select
id="tasks-table-select"
value={selectedTableId || ''}
onChange={(e) => setSelectedTableId(e.target.value ? Number(e.target.value) : null)}
disabled={!selectedProjectId}
className="w-full px-3 py-2 text-sm rounded-lg bg-[var(--bg-secondary)] text-[var(--text-primary)] border border-[var(--border-primary)] focus:outline-none focus:ring-2 focus:ring-[var(--color-primary-500)]/30 disabled:opacity-50"
>
<option value=""> Выберите таблицу </option>
{projectTables.map(table => (
<option key={table.id} value={table.id}>
{table.icon || '\uD83D\uDCCB'} {table.displayName || table.name}
</option>
))}
</select>
</div>
{/* Save button only */}
<div className="flex justify-end pt-1">
<button
onClick={handleSave}
disabled={!selectedTableId}
className="px-3 py-1.5 text-xs bg-[var(--color-primary-500)] text-white rounded-lg hover:bg-[var(--color-primary-600)] disabled:opacity-50 disabled:cursor-not-allowed transition-colors"
>
Сохранить
</button>
</div>
</div>
);
}