feat/search api is added

This commit is contained in:
suryac 2026-08-18 13:19:58 +05:30
parent 060ec00d8d
commit caf15840aa
6 changed files with 47 additions and 83 deletions

View File

@ -271,5 +271,5 @@ export const HIDDEN_FORM_FIELDS = [
'store_code_3' 'store_code_3'
]; ];
export const LOOKUP_RECORD_LIMIT = 500; export const LOOKUP_RECORD_LIMIT = 200;
export const MAX_SKUS_PER_CHUNK = 20; export const MAX_SKUS_PER_CHUNK = 20;

View File

@ -174,43 +174,6 @@ export function DynamicForm({ client, activityId: initialActivityId, instanceId:
} }
} }
if (currentActivityId === ORDER_BOOKING.activities.LOG_VISIT.uid) {
const user = client.currentUser();
const userMobile = user?.mobile || localStorage.getItem('krishna_sales_user_mobile') || user?.email;
if (userMobile) {
try {
const headers: Record<string, string> = {
'templateid': '192',
'x-pipeline-version': 'latest',
'orgid': '57',
'groupid': '25'
};
const summaryRes = await client.request<any>(
'POST',
PIPELINE.endpoints.productiveCallSummary,
{ mobile: userMobile },
headers
);
let summaryData = summaryRes.data || summaryRes;
if (Array.isArray(summaryData)) {
summaryData = summaryData[0] || {};
}
if (summaryData.productive_call !== undefined) {
summaryData.total_productive_calls = summaryData.productive_call;
}
if (summaryData.non_productive_call !== undefined) {
summaryData.total_non_productive_calls = summaryData.non_productive_call;
}
mapPrefillData(summaryData);
} catch (e) {
console.warn('Failed to load productive call summary for Log Visit', e);
}
}
}
setValues(defaultValues); setValues(defaultValues);
setLoading(false); setLoading(false);
if (res.activity_name) { if (res.activity_name) {

View File

@ -61,9 +61,9 @@ export function LogVisitForm({ client, onSuccess, onCancel, onActivityChange }:
}, [values]); }, [values]);
const [storeOptions, setStoreOptions] = useState<{ value: string; label: string; _raw?: any }[]>([]); const [storeOptions, setStoreOptions] = useState<{ value: string; label: string; _raw?: any }[]>([]);
const [storeSearchQuery, setStoreSearchQuery] = useState('');
const [fetchingDailyLog, setFetchingDailyLog] = useState(false); const [fetchingDailyLog, setFetchingDailyLog] = useState(false);
const [fetchingStores, setFetchingStores] = useState(false); const [fetchingStores, setFetchingStores] = useState(false);
const fetchingStoresRef = useRef(false);
const [chainedActivity, setChainedActivity] = useState<{ const [chainedActivity, setChainedActivity] = useState<{
activityId: string; activityId: string;
@ -119,40 +119,6 @@ export function LogVisitForm({ client, onSuccess, onCancel, onActivityChange }:
Object.assign(initialValues, res.data); Object.assign(initialValues, res.data);
} }
// Execute mobile pipeline prefill
const user = client.currentUser();
const userMobile = user?.mobile || localStorage.getItem('krishna_sales_user_mobile') || user?.email;
if (userMobile) {
try {
const headers: Record<string, string> = {
'templateid': '192',
'x-pipeline-version': 'latest',
'orgid': '57',
'groupid': '25'
};
const summaryRes = await client.request<any>(
'POST',
PIPELINE.endpoints.productiveCallSummary,
{ mobile: userMobile },
headers
);
let summaryData = summaryRes.data || summaryRes;
if (Array.isArray(summaryData)) {
summaryData = summaryData[0] || {};
}
if (summaryData.productive_call !== undefined) {
summaryData.total_productive_calls = summaryData.productive_call;
}
if (summaryData.non_productive_call !== undefined) {
summaryData.total_non_productive_calls = summaryData.non_productive_call;
}
Object.assign(initialValues, summaryData);
} catch (e) {
console.warn('Failed to load productive call summary for Log Visit', e);
}
}
setValues(prev => { setValues(prev => {
const next = { ...initialValues, ...prev }; const next = { ...initialValues, ...prev };
valuesRef.current = next; valuesRef.current = next;
@ -170,9 +136,7 @@ export function LogVisitForm({ client, onSuccess, onCancel, onActivityChange }:
}, [client, activityId, todayStr, nowTimeStr]); }, [client, activityId, todayStr, nowTimeStr]);
// 2. Helper to fetch select_store options ONLY using updated prefilled formData // 2. Helper to fetch select_store options ONLY using updated prefilled formData
const fetchStoreOptions = useCallback(async (formDataOverride?: Record<string, any>) => { const fetchStoreOptions = useCallback(async (formDataOverride?: Record<string, any>, search: string = '') => {
if (fetchingStoresRef.current) return;
fetchingStoresRef.current = true;
setFetchingStores(true); setFetchingStores(true);
setStoreError(null); setStoreError(null);
@ -184,6 +148,7 @@ export function LogVisitForm({ client, onSuccess, onCancel, onActivityChange }:
activityId, activityId,
fieldId: 'select_store', fieldId: 'select_store',
formData: formDataToSend, formData: formDataToSend,
search,
limit: LOOKUP_RECORD_LIMIT, limit: LOOKUP_RECORD_LIMIT,
}); });
@ -234,10 +199,16 @@ export function LogVisitForm({ client, onSuccess, onCancel, onActivityChange }:
} }
} finally { } finally {
setFetchingStores(false); setFetchingStores(false);
fetchingStoresRef.current = false;
} }
}, [client, activityId]); }, [client, activityId]);
useEffect(() => {
const timer = setTimeout(() => {
fetchStoreOptions(undefined, storeSearchQuery);
}, 300);
return () => clearTimeout(timer);
}, [storeSearchQuery, fetchStoreOptions]);
// 3. Fetch Daily Log lookup data initially & prefill form state // 3. Fetch Daily Log lookup data initially & prefill form state
const loadDailyLogData = useCallback(async (dateVal: string, timeVal: string) => { const loadDailyLogData = useCallback(async (dateVal: string, timeVal: string) => {
setFetchingDailyLog(true); setFetchingDailyLog(true);
@ -464,6 +435,8 @@ export function LogVisitForm({ client, onSuccess, onCancel, onActivityChange }:
options={[{ value: '', label: `Select ${f.name}...` }, ...storeOptions]} options={[{ value: '', label: `Select ${f.name}...` }, ...storeOptions]}
onDropdownOpen={handleStoreDropdownOpen} onDropdownOpen={handleStoreDropdownOpen}
onChange={e => handleStoreSelect(fieldId, e.target.value)} onChange={e => handleStoreSelect(fieldId, e.target.value)}
onSearchChange={setStoreSearchQuery}
disableLocalSearch={true}
disabled={isDisabled} disabled={isDisabled}
/> />
{fetchingStores && ( {fetchingStores && (

View File

@ -6,12 +6,16 @@ export function SelectField({
value, value,
options, options,
onChange, onChange,
onSearchChange,
disableLocalSearch,
}: { }: {
label: string; label: string;
required?: boolean; required?: boolean;
value: string; value: string;
options: any[]; options: any[];
onChange: (val: string, fullRow?: any) => void; onChange: (val: string, fullRow?: any) => void;
onSearchChange?: (query: string) => void;
disableLocalSearch?: boolean;
}) { }) {
return ( return (
<Select <Select
@ -24,6 +28,8 @@ export function SelectField({
onChange(val, opt?._raw); onChange(val, opt?._raw);
}} }}
options={[{ value: '', label: 'Select...' }, ...options.map((o: any) => ({ value: String(o.value), label: o.label }))]} options={[{ value: '', label: 'Select...' }, ...options.map((o: any) => ({ value: String(o.value), label: o.label }))]}
onSearchChange={onSearchChange}
disableLocalSearch={disableLocalSearch}
/> />
); );
} }

View File

@ -20,6 +20,7 @@ export function WfLookupField({ label, required, value, onChange, client, config
const [options, setOptions] = useState<{ label: string; value: string }[]>([]); const [options, setOptions] = useState<{ label: string; value: string }[]>([]);
const [records, setRecords] = useState<any[]>([]); const [records, setRecords] = useState<any[]>([]);
const [loading, setLoading] = useState(true); const [loading, setLoading] = useState(true);
const [searchQuery, setSearchQuery] = useState('');
const formDataStr = JSON.stringify(formData); const formDataStr = JSON.stringify(formData);
@ -32,6 +33,7 @@ export function WfLookupField({ label, required, value, onChange, client, config
activityId, activityId,
fieldId, fieldId,
formData: JSON.parse(formDataStr), formData: JSON.parse(formDataStr),
search: searchQuery,
limit: LOOKUP_RECORD_LIMIT limit: LOOKUP_RECORD_LIMIT
}) })
.then(res => { .then(res => {
@ -72,7 +74,7 @@ export function WfLookupField({ label, required, value, onChange, client, config
mounted = false; mounted = false;
clearTimeout(timer); clearTimeout(timer);
}; };
}, [client, config, activityId, fieldId, formDataStr]); }, [client, config, activityId, fieldId, formDataStr, searchQuery]);
return ( return (
<SelectField <SelectField
@ -84,6 +86,8 @@ export function WfLookupField({ label, required, value, onChange, client, config
onChange(val, row); onChange(val, row);
}} }}
options={options} options={options}
onSearchChange={setSearchQuery}
disableLocalSearch={true}
/> />
); );
} }

View File

@ -21,6 +21,8 @@ export interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
/** Disable search header filter if set to false */ /** Disable search header filter if set to false */
searchable?: boolean; searchable?: boolean;
onDropdownOpen?: () => void; onDropdownOpen?: () => void;
onSearchChange?: (query: string) => void;
disableLocalSearch?: boolean;
} }
/** Custom searchable select component using React Portal to prevent container clipping. */ /** Custom searchable select component using React Portal to prevent container clipping. */
@ -35,6 +37,8 @@ export function Select({
placeholder, placeholder,
searchable = true, searchable = true,
onDropdownOpen, onDropdownOpen,
onSearchChange,
disableLocalSearch,
...rest ...rest
}: SelectProps) { }: SelectProps) {
const [isOpen, setIsOpen] = useState(false); const [isOpen, setIsOpen] = useState(false);
@ -52,7 +56,9 @@ export function Select({
const selectedOption = normalizedOptions.find((o) => o.value === currentValue); const selectedOption = normalizedOptions.find((o) => o.value === currentValue);
const selectedOptionLabel = selectedOption ? selectedOption.label : ''; const selectedOptionLabel = selectedOption ? selectedOption.label : '';
const filteredOptions = normalizedOptions.filter((o) => const filteredOptions = disableLocalSearch
? normalizedOptions
: normalizedOptions.filter((o) =>
o.label.toLowerCase().includes(searchQuery.toLowerCase()) o.label.toLowerCase().includes(searchQuery.toLowerCase())
); );
@ -180,7 +186,11 @@ export function Select({
<input <input
type="text" type="text"
value={searchQuery} value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)} onChange={(e) => {
const val = e.target.value;
setSearchQuery(val);
onSearchChange?.(val);
}}
placeholder="Search options..." placeholder="Search options..."
className="w-full text-xs bg-transparent border-none outline-none text-strong placeholder:text-muted" className="w-full text-xs bg-transparent border-none outline-none text-strong placeholder:text-muted"
autoFocus autoFocus
@ -192,6 +202,7 @@ export function Select({
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
setSearchQuery(''); setSearchQuery('');
onSearchChange?.('');
}} }}
className="text-muted hover:text-strong p-0.5 rounded cursor-pointer" className="text-muted hover:text-strong p-0.5 rounded cursor-pointer"
> >
@ -270,6 +281,7 @@ export interface MultiSelectProps {
className?: string; className?: string;
/** Disable search header filter if set to false */ /** Disable search header filter if set to false */
searchable?: boolean; searchable?: boolean;
onSearchChange?: (query: string) => void;
} }
/** Custom searchable multiselect component using React Portal. */ /** Custom searchable multiselect component using React Portal. */
@ -285,6 +297,7 @@ export function MultiSelect({
disabled, disabled,
placeholder, placeholder,
searchable = true, searchable = true,
onSearchChange,
}: MultiSelectProps) { }: MultiSelectProps) {
const [isOpen, setIsOpen] = useState(false); const [isOpen, setIsOpen] = useState(false);
const [searchQuery, setSearchQuery] = useState(''); const [searchQuery, setSearchQuery] = useState('');
@ -453,7 +466,11 @@ export function MultiSelect({
<input <input
type="text" type="text"
value={searchQuery} value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)} onChange={(e) => {
const val = e.target.value;
setSearchQuery(val);
onSearchChange?.(val);
}}
placeholder="Search options..." placeholder="Search options..."
className="w-full text-xs bg-transparent border-none outline-none text-strong placeholder:text-muted" className="w-full text-xs bg-transparent border-none outline-none text-strong placeholder:text-muted"
autoFocus autoFocus
@ -465,6 +482,7 @@ export function MultiSelect({
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
setSearchQuery(''); setSearchQuery('');
onSearchChange?.('');
}} }}
className="text-muted hover:text-strong p-0.5 rounded cursor-pointer" className="text-muted hover:text-strong p-0.5 rounded cursor-pointer"
> >