Fix query params on emulator/private instance
This commit is contained in:
parent
8fb3b42ea1
commit
98806a806f
|
@ -1,4 +1,4 @@
|
||||||
import { defaults, debounce } from 'lodash'
|
import { debounce } from 'lodash'
|
||||||
import { useRouter } from 'next/router'
|
import { useRouter } from 'next/router'
|
||||||
import { useEffect, useMemo, useState } from 'react'
|
import { useEffect, useMemo, useState } from 'react'
|
||||||
import { DEFAULT_SORT } from 'web/components/contract-search'
|
import { DEFAULT_SORT } from 'web/components/contract-search'
|
||||||
|
@ -25,53 +25,6 @@ export function getSavedSort() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useInitialQueryAndSort(options?: {
|
|
||||||
defaultSort: Sort
|
|
||||||
shouldLoadFromStorage?: boolean
|
|
||||||
}) {
|
|
||||||
const { defaultSort, shouldLoadFromStorage } = defaults(options, {
|
|
||||||
defaultSort: DEFAULT_SORT,
|
|
||||||
shouldLoadFromStorage: true,
|
|
||||||
})
|
|
||||||
const router = useRouter()
|
|
||||||
|
|
||||||
const [initialSort, setInitialSort] = useState<Sort | undefined>(undefined)
|
|
||||||
const [initialQuery, setInitialQuery] = useState('')
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
// If there's no sort option, then set the one from localstorage
|
|
||||||
if (router.isReady) {
|
|
||||||
const { s: sort, q: query } = router.query as {
|
|
||||||
q?: string
|
|
||||||
s?: Sort
|
|
||||||
}
|
|
||||||
|
|
||||||
setInitialQuery(query ?? '')
|
|
||||||
|
|
||||||
if (!sort && shouldLoadFromStorage) {
|
|
||||||
console.log('ready loading from storage ', sort ?? defaultSort)
|
|
||||||
const localSort = getSavedSort()
|
|
||||||
if (localSort) {
|
|
||||||
// Use replace to not break navigating back.
|
|
||||||
router.replace(
|
|
||||||
{ query: { ...router.query, s: localSort } },
|
|
||||||
undefined,
|
|
||||||
{ shallow: true }
|
|
||||||
)
|
|
||||||
}
|
|
||||||
setInitialSort(localSort ?? defaultSort)
|
|
||||||
} else {
|
|
||||||
setInitialSort(sort ?? defaultSort)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, [defaultSort, router.isReady, shouldLoadFromStorage])
|
|
||||||
|
|
||||||
return {
|
|
||||||
initialSort,
|
|
||||||
initialQuery,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function useQueryAndSortParams(options?: {
|
export function useQueryAndSortParams(options?: {
|
||||||
defaultSort?: Sort
|
defaultSort?: Sort
|
||||||
shouldLoadFromStorage?: boolean
|
shouldLoadFromStorage?: boolean
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
import { Answer } from 'common/answer'
|
import { Answer } from 'common/answer'
|
||||||
import { searchInAny } from 'common/util/parse'
|
import { searchInAny } from 'common/util/parse'
|
||||||
import { sortBy } from 'lodash'
|
import { sortBy } from 'lodash'
|
||||||
import { useState } from 'react'
|
|
||||||
import { ContractsGrid } from 'web/components/contract/contracts-grid'
|
import { ContractsGrid } from 'web/components/contract/contracts-grid'
|
||||||
import { useContracts } from 'web/hooks/use-contracts'
|
import { useContracts } from 'web/hooks/use-contracts'
|
||||||
import {
|
import {
|
||||||
Sort,
|
Sort,
|
||||||
useInitialQueryAndSort,
|
useQueryAndSortParams,
|
||||||
} from 'web/hooks/use-sort-and-query-params'
|
} from 'web/hooks/use-sort-and-query-params'
|
||||||
|
|
||||||
const MAX_CONTRACTS_RENDERED = 100
|
const MAX_CONTRACTS_RENDERED = 100
|
||||||
|
@ -26,9 +25,8 @@ export default function ContractSearchFirestore(props: {
|
||||||
const contracts = useContracts()
|
const contracts = useContracts()
|
||||||
const { querySortOptions, additionalFilter } = props
|
const { querySortOptions, additionalFilter } = props
|
||||||
|
|
||||||
const { initialSort, initialQuery } = useInitialQueryAndSort(querySortOptions)
|
const { query, setQuery, sort, setSort } =
|
||||||
const [sort, setSort] = useState(initialSort ?? 'score')
|
useQueryAndSortParams(querySortOptions)
|
||||||
const [query, setQuery] = useState(initialQuery)
|
|
||||||
|
|
||||||
let matches = (contracts ?? []).filter((c) =>
|
let matches = (contracts ?? []).filter((c) =>
|
||||||
searchInAny(
|
searchInAny(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user