use ag grid search
This commit is contained in:
parent
2a2a5562cb
commit
ab277bd807
5 changed files with 163 additions and 140 deletions
|
|
@ -6,7 +6,7 @@ import { Input } from "@/components/ui/input";
|
||||||
|
|
||||||
import { Label } from "@/components/ui/label";
|
import { Label } from "@/components/ui/label";
|
||||||
import { Textarea } from "@/components/ui/textarea";
|
import { Textarea } from "@/components/ui/textarea";
|
||||||
import { Filter, X, Loader2, Plus, Save } from "lucide-react";
|
import { Filter, Loader2, Plus, Save } from "lucide-react";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import {
|
import {
|
||||||
useGetFiltersSearchQuery,
|
useGetFiltersSearchQuery,
|
||||||
|
|
@ -41,7 +41,7 @@ export function KnowledgeFilterList({
|
||||||
selectedFilter,
|
selectedFilter,
|
||||||
onFilterSelect,
|
onFilterSelect,
|
||||||
}: KnowledgeFilterListProps) {
|
}: KnowledgeFilterListProps) {
|
||||||
const [searchQuery, setSearchQuery] = useState("");
|
const [searchQuery] = useState("");
|
||||||
const [showCreateModal, setShowCreateModal] = useState(false);
|
const [showCreateModal, setShowCreateModal] = useState(false);
|
||||||
const [createName, setCreateName] = useState("");
|
const [createName, setCreateName] = useState("");
|
||||||
const [createDescription, setCreateDescription] = useState("");
|
const [createDescription, setCreateDescription] = useState("");
|
||||||
|
|
@ -60,10 +60,6 @@ export function KnowledgeFilterList({
|
||||||
onFilterSelect(filter);
|
onFilterSelect(filter);
|
||||||
};
|
};
|
||||||
|
|
||||||
// const handleClearFilter = () => {
|
|
||||||
// onFilterSelect(null);
|
|
||||||
// };
|
|
||||||
|
|
||||||
const handleCreateNew = () => {
|
const handleCreateNew = () => {
|
||||||
setShowCreateModal(true);
|
setShowCreateModal(true);
|
||||||
};
|
};
|
||||||
|
|
@ -176,8 +172,10 @@ export function KnowledgeFilterList({
|
||||||
</div>
|
</div>
|
||||||
<span className="text-xs bg-muted text-muted-foreground px-1 py-0.5 rounded-sm">
|
<span className="text-xs bg-muted text-muted-foreground px-1 py-0.5 rounded-sm">
|
||||||
{(() => {
|
{(() => {
|
||||||
const count = parseQueryData(filter.query_data).filters
|
const dataSources =
|
||||||
.data_sources.length;
|
parseQueryData(filter.query_data).filters.data_sources;
|
||||||
|
if (dataSources[0] === "*") return "All sources";
|
||||||
|
const count = dataSources.length;
|
||||||
return `${count} ${count === 1 ? "source" : "sources"}`;
|
return `${count} ${count === 1 ? "source" : "sources"}`;
|
||||||
})()}
|
})()}
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,11 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { X, Edit3, Save, Settings, RefreshCw } from "lucide-react";
|
import { X, Edit3, Save, RefreshCw } from "lucide-react";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import {
|
import {
|
||||||
Card,
|
Card,
|
||||||
CardContent,
|
CardContent,
|
||||||
CardDescription,
|
|
||||||
CardHeader,
|
CardHeader,
|
||||||
CardTitle,
|
CardTitle,
|
||||||
} from "@/components/ui/card";
|
} from "@/components/ui/card";
|
||||||
|
|
@ -17,6 +16,8 @@ import { MultiSelect } from "@/components/ui/multi-select";
|
||||||
import { Slider } from "@/components/ui/slider";
|
import { Slider } from "@/components/ui/slider";
|
||||||
import { useKnowledgeFilter } from "@/contexts/knowledge-filter-context";
|
import { useKnowledgeFilter } from "@/contexts/knowledge-filter-context";
|
||||||
import { useDeleteFilter } from "@/app/api/mutations/useDeleteFilter";
|
import { useDeleteFilter } from "@/app/api/mutations/useDeleteFilter";
|
||||||
|
import { useUpdateFilter } from "@/app/api/mutations/useUpdateFilter";
|
||||||
|
import { useGetSearchAggregations } from "@/src/app/api/queries/useGetSearchAggregations";
|
||||||
|
|
||||||
interface FacetBucket {
|
interface FacetBucket {
|
||||||
key: string;
|
key: string;
|
||||||
|
|
@ -39,6 +40,7 @@ export function KnowledgeFilterPanel() {
|
||||||
closePanelOnly,
|
closePanelOnly,
|
||||||
} = useKnowledgeFilter();
|
} = useKnowledgeFilter();
|
||||||
const deleteFilterMutation = useDeleteFilter();
|
const deleteFilterMutation = useDeleteFilter();
|
||||||
|
const updateFilterMutation = useUpdateFilter();
|
||||||
|
|
||||||
// Edit mode states
|
// Edit mode states
|
||||||
const [isEditingMeta, setIsEditingMeta] = useState(false);
|
const [isEditingMeta, setIsEditingMeta] = useState(false);
|
||||||
|
|
@ -92,49 +94,24 @@ export function KnowledgeFilterPanel() {
|
||||||
}
|
}
|
||||||
}, [selectedFilter, parsedFilterData]);
|
}, [selectedFilter, parsedFilterData]);
|
||||||
|
|
||||||
// Load available facets from API
|
// Load available facets using search aggregations hook
|
||||||
|
const { data: aggregations } = useGetSearchAggregations("*", 1, 0, {
|
||||||
|
enabled: isPanelOpen,
|
||||||
|
placeholderData: prev => prev,
|
||||||
|
staleTime: 60_000,
|
||||||
|
gcTime: 5 * 60_000,
|
||||||
|
});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isPanelOpen) {
|
if (!aggregations) return;
|
||||||
loadAvailableFacets();
|
const facets = {
|
||||||
}
|
data_sources: aggregations.data_sources?.buckets || [],
|
||||||
}, [isPanelOpen]);
|
document_types: aggregations.document_types?.buckets || [],
|
||||||
|
owners: aggregations.owners?.buckets || [],
|
||||||
const loadAvailableFacets = async () => {
|
connector_types: aggregations.connector_types?.buckets || [],
|
||||||
console.log("[DEBUG] Loading available facets...");
|
};
|
||||||
try {
|
setAvailableFacets(facets);
|
||||||
// Do a search to get facets (similar to search page)
|
}, [aggregations]);
|
||||||
const response = await fetch("/api/search", {
|
|
||||||
method: "POST",
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
},
|
|
||||||
body: JSON.stringify({
|
|
||||||
query: "*", // Use wildcard like search page to get all documents/facets
|
|
||||||
limit: 1,
|
|
||||||
scoreThreshold: 0,
|
|
||||||
// Omit filters entirely to get all available facets
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
|
|
||||||
const result = await response.json();
|
|
||||||
console.log("[DEBUG] Search API response:", result);
|
|
||||||
|
|
||||||
if (response.ok && result.aggregations) {
|
|
||||||
const facets = {
|
|
||||||
data_sources: result.aggregations.data_sources?.buckets || [],
|
|
||||||
document_types: result.aggregations.document_types?.buckets || [],
|
|
||||||
owners: result.aggregations.owners?.buckets || [],
|
|
||||||
connector_types: result.aggregations.connector_types?.buckets || [],
|
|
||||||
};
|
|
||||||
console.log("[DEBUG] Setting facets:", facets);
|
|
||||||
setAvailableFacets(facets);
|
|
||||||
} else {
|
|
||||||
console.log("[DEBUG] No aggregations in response or response not ok");
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Failed to load available facets:", error);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Don't render if panel is closed or no filter selected
|
// Don't render if panel is closed or no filter selected
|
||||||
if (!isPanelOpen || !selectedFilter || !parsedFilterData) return null;
|
if (!isPanelOpen || !selectedFilter || !parsedFilterData) return null;
|
||||||
|
|
@ -173,29 +150,14 @@ export function KnowledgeFilterPanel() {
|
||||||
|
|
||||||
setIsSaving(true);
|
setIsSaving(true);
|
||||||
try {
|
try {
|
||||||
const response = await fetch(
|
const result = await updateFilterMutation.mutateAsync({
|
||||||
`/api/knowledge-filter/${selectedFilter.id}`,
|
id: selectedFilter.id,
|
||||||
{
|
name: editingName.trim(),
|
||||||
method: "PUT",
|
description: editingDescription.trim(),
|
||||||
headers: {
|
});
|
||||||
"Content-Type": "application/json",
|
|
||||||
},
|
|
||||||
body: JSON.stringify({
|
|
||||||
name: editingName.trim(),
|
|
||||||
description: editingDescription.trim(),
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
const result = await response.json();
|
if (result.success && result.filter) {
|
||||||
if (response.ok && result.success) {
|
setSelectedFilter(result.filter);
|
||||||
const updatedFilter = {
|
|
||||||
...selectedFilter,
|
|
||||||
name: editingName.trim(),
|
|
||||||
description: editingDescription.trim(),
|
|
||||||
updated_at: new Date().toISOString(),
|
|
||||||
};
|
|
||||||
setSelectedFilter(updatedFilter);
|
|
||||||
setIsEditingMeta(false);
|
setIsEditingMeta(false);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|
@ -215,28 +177,13 @@ export function KnowledgeFilterPanel() {
|
||||||
|
|
||||||
setIsSaving(true);
|
setIsSaving(true);
|
||||||
try {
|
try {
|
||||||
const response = await fetch(
|
const result = await updateFilterMutation.mutateAsync({
|
||||||
`/api/knowledge-filter/${selectedFilter.id}`,
|
id: selectedFilter.id,
|
||||||
{
|
queryData: JSON.stringify(filterData),
|
||||||
method: "PUT",
|
});
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
},
|
|
||||||
body: JSON.stringify({
|
|
||||||
queryData: JSON.stringify(filterData),
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
const result = await response.json();
|
if (result.success && result.filter) {
|
||||||
if (response.ok && result.success) {
|
setSelectedFilter(result.filter);
|
||||||
// Update the filter in context
|
|
||||||
const updatedFilter = {
|
|
||||||
...selectedFilter,
|
|
||||||
query_data: JSON.stringify(filterData),
|
|
||||||
updated_at: new Date().toISOString(),
|
|
||||||
};
|
|
||||||
setSelectedFilter(updatedFilter);
|
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Error updating filter configuration:", error);
|
console.error("Error updating filter configuration:", error);
|
||||||
|
|
|
||||||
52
frontend/src/app/api/mutations/useUpdateFilter.ts
Normal file
52
frontend/src/app/api/mutations/useUpdateFilter.ts
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
||||||
|
import { KnowledgeFilter } from "../queries/useGetFiltersSearchQuery";
|
||||||
|
|
||||||
|
export interface UpdateFilterRequest {
|
||||||
|
id: string;
|
||||||
|
name?: string;
|
||||||
|
description?: string;
|
||||||
|
queryData?: string; // stringified ParsedQueryData
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface UpdateFilterResponse {
|
||||||
|
success: boolean;
|
||||||
|
filter: KnowledgeFilter;
|
||||||
|
message?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function updateFilter(data: UpdateFilterRequest): Promise<UpdateFilterResponse> {
|
||||||
|
// Build a body with only provided fields
|
||||||
|
const body: Record<string, unknown> = {};
|
||||||
|
if (typeof data.name !== "undefined") body.name = data.name;
|
||||||
|
if (typeof data.description !== "undefined") body.description = data.description;
|
||||||
|
if (typeof data.queryData !== "undefined") body.queryData = data.queryData;
|
||||||
|
|
||||||
|
const response = await fetch(`/api/knowledge-filter/${data.id}`, {
|
||||||
|
method: "PUT",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify(body),
|
||||||
|
});
|
||||||
|
|
||||||
|
const json = await response.json().catch(() => ({}));
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const errorMessage = (json && (json.error as string)) || "Failed to update knowledge filter";
|
||||||
|
throw new Error(errorMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
return json as UpdateFilterResponse;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const useUpdateFilter = () => {
|
||||||
|
const queryClient = useQueryClient();
|
||||||
|
|
||||||
|
return useMutation({
|
||||||
|
mutationFn: updateFilter,
|
||||||
|
onSuccess: () => {
|
||||||
|
// Refresh any knowledge filter lists/searches
|
||||||
|
queryClient.invalidateQueries({ queryKey: ["knowledge-filters"], exact: false });
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
47
frontend/src/app/api/queries/useGetSearchAggregations.ts
Normal file
47
frontend/src/app/api/queries/useGetSearchAggregations.ts
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
import { useQuery, useQueryClient, type UseQueryOptions } from "@tanstack/react-query";
|
||||||
|
|
||||||
|
export interface FacetBucket {
|
||||||
|
key: string;
|
||||||
|
count: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SearchAggregations {
|
||||||
|
data_sources?: { buckets: FacetBucket[] };
|
||||||
|
document_types?: { buckets: FacetBucket[] };
|
||||||
|
owners?: { buckets: FacetBucket[] };
|
||||||
|
connector_types?: { buckets: FacetBucket[] };
|
||||||
|
}
|
||||||
|
|
||||||
|
type Options = Omit<UseQueryOptions<SearchAggregations>, "queryKey" | "queryFn">;
|
||||||
|
|
||||||
|
export const useGetSearchAggregations = (
|
||||||
|
query: string,
|
||||||
|
limit: number,
|
||||||
|
scoreThreshold: number,
|
||||||
|
options?: Options
|
||||||
|
) => {
|
||||||
|
const queryClient = useQueryClient();
|
||||||
|
|
||||||
|
async function fetchAggregations(): Promise<SearchAggregations> {
|
||||||
|
const response = await fetch("/api/search", {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ query, limit, scoreThreshold }),
|
||||||
|
});
|
||||||
|
|
||||||
|
const json = await response.json().catch(() => ({}));
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error((json && json.error) || "Failed to load search aggregations");
|
||||||
|
}
|
||||||
|
|
||||||
|
return (json.aggregations || {}) as SearchAggregations;
|
||||||
|
}
|
||||||
|
|
||||||
|
return useQuery<SearchAggregations>({
|
||||||
|
queryKey: ["search-aggregations", query, limit, scoreThreshold],
|
||||||
|
queryFn: fetchAggregations,
|
||||||
|
placeholderData: prev => prev,
|
||||||
|
...options,
|
||||||
|
}, queryClient);
|
||||||
|
};
|
||||||
|
|
@ -5,19 +5,12 @@ import {
|
||||||
Cloud,
|
Cloud,
|
||||||
Filter,
|
Filter,
|
||||||
HardDrive,
|
HardDrive,
|
||||||
Loader2,
|
|
||||||
Search,
|
Search,
|
||||||
Trash2,
|
Trash2,
|
||||||
X,
|
X,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import { AgGridReact, CustomCellRendererProps } from "ag-grid-react";
|
import { AgGridReact, CustomCellRendererProps } from "ag-grid-react";
|
||||||
import {
|
import { useCallback, useEffect, useState, useRef, ChangeEvent } from "react";
|
||||||
type FormEvent,
|
|
||||||
useCallback,
|
|
||||||
useEffect,
|
|
||||||
useState,
|
|
||||||
useRef,
|
|
||||||
} from "react";
|
|
||||||
import { useRouter } from "next/navigation";
|
import { useRouter } from "next/navigation";
|
||||||
import { SiGoogledrive } from "react-icons/si";
|
import { SiGoogledrive } from "react-icons/si";
|
||||||
import { TbBrandOnedrive } from "react-icons/tb";
|
import { TbBrandOnedrive } from "react-icons/tb";
|
||||||
|
|
@ -62,8 +55,6 @@ function SearchPage() {
|
||||||
const { isMenuOpen } = useTask();
|
const { isMenuOpen } = useTask();
|
||||||
const { selectedFilter, setSelectedFilter, parsedFilterData, isPanelOpen } =
|
const { selectedFilter, setSelectedFilter, parsedFilterData, isPanelOpen } =
|
||||||
useKnowledgeFilter();
|
useKnowledgeFilter();
|
||||||
const [query, setQuery] = useState("");
|
|
||||||
const [queryInputText, setQueryInputText] = useState("");
|
|
||||||
const [selectedRows, setSelectedRows] = useState<File[]>([]);
|
const [selectedRows, setSelectedRows] = useState<File[]>([]);
|
||||||
const [showBulkDeleteDialog, setShowBulkDeleteDialog] = useState(false);
|
const [showBulkDeleteDialog, setShowBulkDeleteDialog] = useState(false);
|
||||||
|
|
||||||
|
|
@ -73,26 +64,11 @@ function SearchPage() {
|
||||||
data = [],
|
data = [],
|
||||||
isFetching,
|
isFetching,
|
||||||
refetch: refetchSearch,
|
refetch: refetchSearch,
|
||||||
} = useGetSearchQuery(query, parsedFilterData);
|
} = useGetSearchQuery(parsedFilterData?.query || "", parsedFilterData);
|
||||||
|
|
||||||
// Update query when global filter changes
|
const handleTableSearch = (e: ChangeEvent<HTMLInputElement>) => {
|
||||||
useEffect(() => {
|
gridRef.current?.api.setGridOption("quickFilterText", e.target.value);
|
||||||
if (parsedFilterData?.query) {
|
};
|
||||||
setQueryInputText(parsedFilterData.query);
|
|
||||||
}
|
|
||||||
}, [parsedFilterData]);
|
|
||||||
|
|
||||||
const handleSearch = useCallback(
|
|
||||||
(e?: FormEvent<HTMLFormElement>) => {
|
|
||||||
if (e) e.preventDefault();
|
|
||||||
if (query.trim() === queryInputText.trim()) {
|
|
||||||
refetchSearch();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
setQuery(queryInputText);
|
|
||||||
},
|
|
||||||
[queryInputText, refetchSearch, query]
|
|
||||||
);
|
|
||||||
|
|
||||||
const fileResults = data as File[];
|
const fileResults = data as File[];
|
||||||
|
|
||||||
|
|
@ -224,6 +200,10 @@ function SearchPage() {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
refetchSearch();
|
||||||
|
}, [selectedFilter, refetchSearch]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={`fixed inset-0 md:left-72 top-[53px] flex flex-col transition-all duration-300 ${
|
className={`fixed inset-0 md:left-72 top-[53px] flex flex-col transition-all duration-300 ${
|
||||||
|
|
@ -247,8 +227,8 @@ function SearchPage() {
|
||||||
|
|
||||||
{/* Search Input Area */}
|
{/* Search Input Area */}
|
||||||
<div className="flex-shrink-0 mb-6 xl:max-w-[75%]">
|
<div className="flex-shrink-0 mb-6 xl:max-w-[75%]">
|
||||||
<form onSubmit={handleSearch} className="flex gap-3">
|
<form className="flex gap-3">
|
||||||
<div className="primary-input !flex items-center flex-nowrap gap-2 focus-within:border-foreground transition-colors !py-0">
|
<div className="primary-input min-h-10 !flex items-center flex-nowrap gap-2 focus-within:border-foreground transition-colors !py-0">
|
||||||
{selectedFilter?.name && (
|
{selectedFilter?.name && (
|
||||||
<div className="flex items-center gap-2 bg-accent text-accent-foreground px-1 py-0.5 rounded max-w-[300px]">
|
<div className="flex items-center gap-2 bg-accent text-accent-foreground px-1 py-0.5 rounded max-w-[300px]">
|
||||||
<Filter className="h-3 w-3 flex-shrink-0 ml-1" />
|
<Filter className="h-3 w-3 flex-shrink-0 ml-1" />
|
||||||
|
|
@ -266,12 +246,10 @@ function SearchPage() {
|
||||||
id="search-query"
|
id="search-query"
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Search your documents..."
|
placeholder="Search your documents..."
|
||||||
onChange={(e) => setQueryInputText(e.target.value)}
|
onChange={handleTableSearch}
|
||||||
value={queryInputText}
|
|
||||||
defaultValue={parsedFilterData?.query}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<Button
|
{/* <Button
|
||||||
type="submit"
|
type="submit"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className="rounded-lg p-0 flex-shrink-0"
|
className="rounded-lg p-0 flex-shrink-0"
|
||||||
|
|
@ -281,7 +259,7 @@ function SearchPage() {
|
||||||
) : (
|
) : (
|
||||||
<Search className="h-4 w-4" />
|
<Search className="h-4 w-4" />
|
||||||
)}
|
)}
|
||||||
</Button>
|
</Button> */}
|
||||||
{/* //TODO: Implement sync button */}
|
{/* //TODO: Implement sync button */}
|
||||||
{/* <Button
|
{/* <Button
|
||||||
type="button"
|
type="button"
|
||||||
|
|
@ -291,15 +269,16 @@ function SearchPage() {
|
||||||
>
|
>
|
||||||
Sync
|
Sync
|
||||||
</Button> */}
|
</Button> */}
|
||||||
<Button
|
{selectedRows.length > 0 && (
|
||||||
type="button"
|
<Button
|
||||||
variant="destructive"
|
type="button"
|
||||||
className="rounded-lg flex-shrink-0"
|
variant="destructive"
|
||||||
onClick={() => setShowBulkDeleteDialog(true)}
|
className="rounded-lg flex-shrink-0"
|
||||||
disabled={selectedRows.length === 0}
|
onClick={() => setShowBulkDeleteDialog(true)}
|
||||||
>
|
>
|
||||||
<Trash2 className="h-4 w-4" /> Delete
|
<Trash2 className="h-4 w-4" /> Delete
|
||||||
</Button>
|
</Button>
|
||||||
|
)}
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<AgGridReact
|
<AgGridReact
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue