2019-04-11 08:26:41 -04:00
|
|
|
import { SORTABLE_COLUMNS } from '../../initializers/constants'
|
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)
|
2020-07-01 10:05:30 -04:00
|
|
|
const SORTABLE_ABUSES_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.ABUSES)
|
2017-05-15 16:22:03 -04:00
|
|
|
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)
|
2020-11-13 10:38:23 -05:00
|
|
|
const SORTABLE_VIDEO_COMMENTS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_COMMENT_THREADS)
|
2017-12-22 04:50:07 -05:00
|
|
|
const SORTABLE_VIDEO_COMMENT_THREADS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_COMMENT_THREADS)
|
2019-04-09 05:02:02 -04:00
|
|
|
const SORTABLE_VIDEO_RATES_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_RATES)
|
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)
|
2018-12-26 04:36:24 -05:00
|
|
|
const SORTABLE_USER_NOTIFICATIONS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.USER_NOTIFICATIONS)
|
2019-02-26 04:55:40 -05:00
|
|
|
const SORTABLE_VIDEO_PLAYLISTS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_PLAYLISTS)
|
2019-07-10 10:59:53 -04:00
|
|
|
const SORTABLE_PLUGINS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.PLUGINS)
|
2019-07-16 05:33:22 -04:00
|
|
|
const SORTABLE_AVAILABLE_PLUGINS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.AVAILABLE_PLUGINS)
|
2020-01-10 04:11:28 -05:00
|
|
|
const SORTABLE_VIDEO_REDUNDANCIES_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_REDUNDANCIES)
|
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)
|
2021-03-09 03:22:05 -05:00
|
|
|
const jobsSortValidator = checkSort(SORTABLE_JOBS_COLUMNS, [ 'jobs' ])
|
2020-07-01 10:05:30 -04:00
|
|
|
const abusesSortValidator = checkSort(SORTABLE_ABUSES_COLUMNS)
|
2017-09-15 06:17:08 -04:00
|
|
|
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)
|
2020-11-13 10:38:23 -05:00
|
|
|
const videoCommentsValidator = checkSort(SORTABLE_VIDEO_COMMENTS_COLUMNS)
|
2017-12-22 04:50:07 -05:00
|
|
|
const videoCommentThreadsSortValidator = checkSort(SORTABLE_VIDEO_COMMENT_THREADS_COLUMNS)
|
2019-04-09 05:02:02 -04:00
|
|
|
const videoRatesSortValidator = checkSort(SORTABLE_VIDEO_RATES_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)
|
2018-12-26 04:36:24 -05:00
|
|
|
const userNotificationsSortValidator = checkSort(SORTABLE_USER_NOTIFICATIONS_COLUMNS)
|
2019-02-26 04:55:40 -05:00
|
|
|
const videoPlaylistsSortValidator = checkSort(SORTABLE_VIDEO_PLAYLISTS_COLUMNS)
|
2019-07-10 10:59:53 -04:00
|
|
|
const pluginsSortValidator = checkSort(SORTABLE_PLUGINS_COLUMNS)
|
2019-07-16 05:33:22 -04:00
|
|
|
const availablePluginsSortValidator = checkSort(SORTABLE_AVAILABLE_PLUGINS_COLUMNS)
|
2020-01-10 04:11:28 -05:00
|
|
|
const videoRedundanciesSortValidator = checkSort(SORTABLE_VIDEO_REDUNDANCIES_COLUMNS)
|
2017-01-04 14:59:23 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
usersSortValidator,
|
2020-07-01 10:05:30 -04:00
|
|
|
abusesSortValidator,
|
2017-10-24 13:41:09 -04:00
|
|
|
videoChannelsSortValidator,
|
2018-08-02 11:48:50 -04:00
|
|
|
videoImportsSortValidator,
|
2020-11-13 10:38:23 -05:00
|
|
|
videoCommentsValidator,
|
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,
|
2019-04-09 05:02:02 -04:00
|
|
|
videoRatesSortValidator,
|
2018-08-23 11:58:39 -04:00
|
|
|
userSubscriptionsSortValidator,
|
2019-07-16 05:33:22 -04:00
|
|
|
availablePluginsSortValidator,
|
2018-10-12 09:26:04 -04:00
|
|
|
videoChannelsSearchSortValidator,
|
|
|
|
accountsBlocklistSortValidator,
|
2018-12-26 04:36:24 -05:00
|
|
|
serversBlocklistSortValidator,
|
2019-02-26 04:55:40 -05:00
|
|
|
userNotificationsSortValidator,
|
2019-07-10 10:59:53 -04:00
|
|
|
videoPlaylistsSortValidator,
|
2020-01-10 04:11:28 -05:00
|
|
|
videoRedundanciesSortValidator,
|
2019-07-10 10:59:53 -04:00
|
|
|
pluginsSortValidator
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|