Fix function naming

This commit is contained in:
Deluan
2020-06-09 20:45:53 -04:00
parent 1c466d6083
commit 8bd9787c51
2 changed files with 3 additions and 3 deletions
+29
View File
@@ -0,0 +1,29 @@
import { useSelector } from 'react-redux'
import get from 'lodash.get'
const getPerPage = (width) => {
if (width === 'xs') return 12
if (width === 'sm') return 12
if (width === 'md') return 15
if (width === 'lg') return 18
return 21
}
const getPerPageOptions = (width) => {
const options = [3, 6, 12]
if (width === 'xs') return [12]
if (width === 'sm') return [12]
if (width === 'md') return options.map((v) => v * 4)
return options.map((v) => v * 6)
}
const useAlbumsPerPage = (width) => {
const perPage =
useSelector((state) =>
get(state.admin.resources, ['album', 'list', 'params', 'perPage'])
) || getPerPage(width)
return [perPage, getPerPageOptions(width)]
}
export default useAlbumsPerPage