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)
|
2018-07-19 10:17:54 -04:00
|
|
|
const SORTABLE_VIDEOS_SEARCH_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEOS_SEARCH)
|
2018-08-23 11:58:39 -04:00
|
|
|
const SORTABLE_VIDEO_CHANNELS_SEARCH_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_CHANNELS_SEARCH)
|
2018-08-02 11:48:50 -04:00
|
|
|
const SORTABLE_VIDEO_IMPORTS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_IMPORTS)
|
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)
|
2018-08-16 09:25:20 -04:00
|
|
|
const SORTABLE_USER_SUBSCRIPTIONS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.USER_SUBSCRIPTIONS)
|
2018-10-12 09:26:04 -04:00
|
|
|
const SORTABLE_ACCOUNTS_BLOCKLIST_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.ACCOUNTS_BLOCKLIST)
|
|
|
|
const SORTABLE_SERVERS_BLOCKLIST_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.SERVERS_BLOCKLIST)
|
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)
|
2018-08-02 11:48:50 -04:00
|
|
|
const videoImportsSortValidator = checkSort(SORTABLE_VIDEO_IMPORTS_COLUMNS)
|
2018-07-19 10:17:54 -04:00
|
|
|
const videosSearchSortValidator = checkSort(SORTABLE_VIDEOS_SEARCH_COLUMNS)
|
2018-08-23 11:58:39 -04:00
|
|
|
const videoChannelsSearchSortValidator = checkSort(SORTABLE_VIDEO_CHANNELS_SEARCH_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)
|
2018-08-16 09:25:20 -04:00
|
|
|
const userSubscriptionsSortValidator = checkSort(SORTABLE_USER_SUBSCRIPTIONS_COLUMNS)
|
2018-10-12 09:26:04 -04:00
|
|
|
const accountsBlocklistSortValidator = checkSort(SORTABLE_ACCOUNTS_BLOCKLIST_COLUMNS)
|
|
|
|
const serversBlocklistSortValidator = checkSort(SORTABLE_SERVERS_BLOCKLIST_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,
|
2018-08-02 11:48:50 -04:00
|
|
|
videoImportsSortValidator,
|
2018-07-19 10:17:54 -04:00
|
|
|
videosSearchSortValidator,
|
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,
|
2018-08-16 09:25:20 -04:00
|
|
|
videoCommentThreadsSortValidator,
|
2018-08-23 11:58:39 -04:00
|
|
|
userSubscriptionsSortValidator,
|
2018-10-12 09:26:04 -04:00
|
|
|
videoChannelsSearchSortValidator,
|
|
|
|
accountsBlocklistSortValidator,
|
|
|
|
serversBlocklistSortValidator
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|