2017-05-15 16:22:03 -04:00
|
|
|
import { SORTABLE_COLUMNS } from '../../initializers'
|
2018-03-13 06:28:37 -04:00
|
|
|
import { checkSort, createSortableColumns } from './utils'
|
2016-05-17 15:03:00 -04:00
|
|
|
|
2017-02-26 13:26:57 -05:00
|
|
|
// Initialize constants here for better performances
|
2017-05-15 16:22:03 -04:00
|
|
|
const SORTABLE_USERS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.USERS)
|
2018-01-03 10:38:50 -05:00
|
|
|
const SORTABLE_ACCOUNTS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.ACCOUNTS)
|
2017-11-30 04:51:13 -05:00
|
|
|
const SORTABLE_JOBS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.JOBS)
|
2017-05-15 16:22:03 -04:00
|
|
|
const SORTABLE_VIDEO_ABUSES_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_ABUSES)
|
|
|
|
const SORTABLE_VIDEOS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEOS)
|
2017-12-22 04:50:07 -05:00
|
|
|
const SORTABLE_VIDEO_COMMENT_THREADS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_COMMENT_THREADS)
|
2017-09-22 03:13:43 -04:00
|
|
|
const SORTABLE_BLACKLISTS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.BLACKLISTS)
|
2017-10-24 13:41:09 -04:00
|
|
|
const SORTABLE_VIDEO_CHANNELS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_CHANNELS)
|
2017-11-13 11:39:41 -05:00
|
|
|
const SORTABLE_FOLLOWERS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.FOLLOWERS)
|
|
|
|
const SORTABLE_FOLLOWING_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.FOLLOWING)
|
2016-08-16 16:31:45 -04:00
|
|
|
|
2017-09-15 06:17:08 -04:00
|
|
|
const usersSortValidator = checkSort(SORTABLE_USERS_COLUMNS)
|
2018-01-03 10:38:50 -05:00
|
|
|
const accountsSortValidator = checkSort(SORTABLE_ACCOUNTS_COLUMNS)
|
2017-11-30 04:51:13 -05:00
|
|
|
const jobsSortValidator = checkSort(SORTABLE_JOBS_COLUMNS)
|
2017-09-15 06:17:08 -04:00
|
|
|
const videoAbusesSortValidator = checkSort(SORTABLE_VIDEO_ABUSES_COLUMNS)
|
|
|
|
const videosSortValidator = checkSort(SORTABLE_VIDEOS_COLUMNS)
|
2017-12-22 04:50:07 -05:00
|
|
|
const videoCommentThreadsSortValidator = checkSort(SORTABLE_VIDEO_COMMENT_THREADS_COLUMNS)
|
2017-09-22 03:13:43 -04:00
|
|
|
const blacklistSortValidator = checkSort(SORTABLE_BLACKLISTS_COLUMNS)
|
2017-10-24 13:41:09 -04:00
|
|
|
const videoChannelsSortValidator = checkSort(SORTABLE_VIDEO_CHANNELS_COLUMNS)
|
2017-11-13 11:39:41 -05:00
|
|
|
const followersSortValidator = checkSort(SORTABLE_FOLLOWERS_COLUMNS)
|
|
|
|
const followingSortValidator = checkSort(SORTABLE_FOLLOWING_COLUMNS)
|
2017-01-04 14:59:23 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
usersSortValidator,
|
|
|
|
videoAbusesSortValidator,
|
2017-10-24 13:41:09 -04:00
|
|
|
videoChannelsSortValidator,
|
2017-09-22 03:13:43 -04:00
|
|
|
videosSortValidator,
|
2017-11-13 11:39:41 -05:00
|
|
|
blacklistSortValidator,
|
2018-01-03 10:38:50 -05:00
|
|
|
accountsSortValidator,
|
2017-11-13 11:39:41 -05:00
|
|
|
followersSortValidator,
|
2017-11-30 04:51:13 -05:00
|
|
|
followingSortValidator,
|
2017-12-22 04:50:07 -05:00
|
|
|
jobsSortValidator,
|
|
|
|
videoCommentThreadsSortValidator
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|