2
2
3
3
import { CommandIcon , CornerDownLeft , LoaderIcon , PauseIcon , PlayIcon } from "lucide-react" ;
4
4
import { KeyCode , KeyMod , editor } from "monaco-editor/esm/vs/editor/editor.api" ;
5
- import { parseAsJson , useQueryState } from "nuqs" ;
5
+ import { useQueryState } from "nuqs" ;
6
6
import { useEffect , useRef , useState } from "react" ;
7
7
import { useForm } from "react-hook-form" ;
8
8
import { Table } from "@latticexyz/config" ;
9
9
import Editor from "@monaco-editor/react" ;
10
- import { PaginationState } from "@tanstack/react-table" ;
11
10
import { Tooltip } from "../../../../../../components/Tooltip" ;
12
11
import { Button } from "../../../../../../components/ui/Button" ;
13
12
import { Form , FormField } from "../../../../../../components/ui/Form" ;
14
13
import { cn } from "../../../../../../utils" ;
15
14
import { useTableDataQuery } from "../../../../queries/useTableDataQuery" ;
16
15
import { PAGE_SIZE_OPTIONS , monacoOptions } from "./consts" ;
16
+ import { usePaginationQueryState } from "./hooks/usePaginationQueryState" ;
17
17
import { useMonacoSuggestions } from "./useMonacoSuggestions" ;
18
18
import { useQueryValidator } from "./useQueryValidator" ;
19
19
import { getLimitOffset } from "./utils/getLimitOffset" ;
@@ -30,13 +30,7 @@ export function SQLEditor({ table, isLiveQuery, setIsLiveQuery }: Props) {
30
30
const [ isFocused , setIsFocused ] = useState ( false ) ;
31
31
const [ isUserTriggeredRefetch , setIsUserTriggeredRefetch ] = useState ( false ) ;
32
32
const [ query , setQuery ] = useQueryState ( "query" , { defaultValue : "" } ) ;
33
- const [ pagination , setPagination ] = useQueryState (
34
- "pagination" ,
35
- parseAsJson < PaginationState > ( ) . withDefault ( {
36
- pageIndex : 0 ,
37
- pageSize : 10 ,
38
- } ) ,
39
- ) ;
33
+ const [ pagination , setPagination ] = usePaginationQueryState ( ) ;
40
34
41
35
const validateQuery = useQueryValidator ( table ) ;
42
36
const {
0 commit comments