This repo holds the core logic for our learning resource search. The basic API
is a React hook (useCourseSearch
) which provides for deserializing the params from
the URL, managing the internal state of which facets are selected, etc.
run the tests:
npm run test
npm run test:watch # for watch mode
run the typechecker:
npm run typecheck
to publish a new version, open a PR with your changes and, once that is merged, check out the latest commit locally and do the following:
npm version x.x.x # increment this from the previous version appropriately
npm publish
git push origin # npm writes a version increment commit
git push --tags # and it tags it too
@mitodl/course-search-utils
exports a few hooks to assist in making search requests to MIT Open's APIs. They are:
-
useResourceSearchParams({ searchParams, setSearchParams, ...opts? })
anduseContentFileSearchParams
: Derive search API parameters from aURLSearchParams
object. Often, theURLSearchParams
object will be derived from the browser URL, though it could be state internal to react.The hook extracts validated API parameters from the
URLSearchParams
object and returns setters that can be used to manipulate theURLSearchParams
(e.g., toggling a search facet on or off).The
URLSearchParams
keys are mapped directly to API parameters. -
useInfiniteSearch({ params, endpoint, baseUrl, ...opts? })
: Assists in making search API calls used in an infinite scrolling UI. The initial page is loaded by the hook, susbsequent pages via returm value{ fetchNextPage }
. The hook's result is based on useInfiniteQuery.
See Typescript annotations and docstrings for more information on hook props and results. Typical usage might look like:
import { useSearchQueryParams, useInfiniteSearch, } from "@mitodl/course-search-utils"
import type { UseInfiniteSearchProps } from "@mitodl/course-search-utils"
const CONSTANT_PARAMETERS = {
platform: ["ocw"],
aggregations: ["topic", "offered_by"]
}
const SearchPage: React.FC = () => {
const [searchParams, setSearchParams] = useSearchParams()
const {
params,
toggleParamValue,
clearAllFacets,
currentText,
setCurrentText,
setCurrentTextAndQuery,
} = useSearchQueryParams({
searchParams,
setSearchParams,
facets: FACETS
})
// If necessary
const allParams = useMemo(() => {
return _.merge(params, CONSTANT_PARAMETERS)
}, [params])
const { pages, hasNextPage, fetchNextPage } = useInfiniteSearch({
params: allParams,
baseUrl: "http://mitopen.odl.mit.edu/",
keepPreviousData: true,
})
const results = pages?.flatMap(p => p.results) ?? []
return (/* Search component JSX*/)
}