GitHub

DaffCategoryPageChangeSortingOption

An action for changing the sorting option for the selected category.

import { DaffCategoryPageChangeSortingOption } from '@daffodil/category/state'
class DaffCategoryPageChangeSortingOption implements Action {
  readonly type: DaffCategoryPageProductCollectionActionTypes.CategoryPageChangeSortingOptionAction
  sort: {
      option: DaffCategoryRequest['appliedSortOption'];
      direction: DaffCategoryRequest['appliedSortDirection'];
  }
}

Properties

Name Type Description
type DaffCategoryPageProductCollectionActionTypes.CategoryPageChangeSortingOptionAction
sort { option: DaffCategoryRequest['appliedSortOption']; direction: DaffCategoryRequest['appliedSortDirection']; }