useSortModal
This hook manages the visibility state of the sort modal on product list pages.
Import
import { useSortModal } from '@appmaker-xyz/shopify';
Basic Usage
const {
isSortModalShown,
openSortModal,
closeSortModal,
context,
} = useSortModal();
Return Value
| Property | Type | Description |
|---|---|---|
isSortModalShown | boolean | Whether the sort modal is currently visible. |
openSortModal | Function | Opens the sort modal. |
closeSortModal | Function | Closes the sort modal. |
context | Object | Filter store context data. |