2019-04-11 14:26:41 +02:00
|
|
|
import { SORTABLE_COLUMNS } from '../../initializers/constants'
|
2018-03-13 11:28:37 +01:00
|
|
|
import { checkSort, createSortableColumns } from './utils'
|
2016-05-17 21:03:00 +02:00
|
|
|
|
2017-02-26 19:26:57 +01:00
|
|
|
// Initialize constants here for better performances
|
2017-05-15 22:22:03 +02:00
|
|
|
const SORTABLE_USERS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.USERS)
|
2018-01-03 16:38:50 +01:00
|
|
|
const SORTABLE_ACCOUNTS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.ACCOUNTS)
|
2017-11-30 10:51:13 +01:00
|
|
|
const SORTABLE_JOBS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.JOBS)
|
2020-07-01 16:05:30 +02:00
|
|
|
const SORTABLE_ABUSES_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.ABUSES)
|
2017-05-15 22:22:03 +02:00
|
|
|
const SORTABLE_VIDEOS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEOS)
|
2018-07-19 16:17:54 +02:00
|
|
|
const SORTABLE_VIDEOS_SEARCH_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEOS_SEARCH)
|
2018-08-23 17:58:39 +02:00
|
|
|
const SORTABLE_VIDEO_CHANNELS_SEARCH_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_CHANNELS_SEARCH)
|
2018-08-02 17:48:50 +02:00
|
|
|
const SORTABLE_VIDEO_IMPORTS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_IMPORTS)
|
2017-12-22 10:50:07 +01:00
|
|
|
const SORTABLE_VIDEO_COMMENT_THREADS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_COMMENT_THREADS)
|
2019-04-09 11:02:02 +02:00
|
|
|
const SORTABLE_VIDEO_RATES_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_RATES)
|
2017-09-22 09:13:43 +02:00
|
|
|
const SORTABLE_BLACKLISTS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.BLACKLISTS)
|
2017-10-24 19:41:09 +02:00
|
|
|
const SORTABLE_VIDEO_CHANNELS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_CHANNELS)
|
2017-11-13 17:39:41 +01:00
|
|
|
const SORTABLE_FOLLOWERS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.FOLLOWERS)
|
|
|
|
const SORTABLE_FOLLOWING_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.FOLLOWING)
|
2018-08-16 15:25:20 +02:00
|
|
|
const SORTABLE_USER_SUBSCRIPTIONS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.USER_SUBSCRIPTIONS)
|
2018-10-12 15:26:04 +02:00
|
|
|
const SORTABLE_ACCOUNTS_BLOCKLIST_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.ACCOUNTS_BLOCKLIST)
|
|
|
|
const SORTABLE_SERVERS_BLOCKLIST_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.SERVERS_BLOCKLIST)
|
2018-12-26 10:36:24 +01:00
|
|
|
const SORTABLE_USER_NOTIFICATIONS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.USER_NOTIFICATIONS)
|
2019-02-26 10:55:40 +01:00
|
|
|
const SORTABLE_VIDEO_PLAYLISTS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_PLAYLISTS)
|
2019-07-10 16:59:53 +02:00
|
|
|
const SORTABLE_PLUGINS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.PLUGINS)
|
2019-07-16 11:33:22 +02:00
|
|
|
const SORTABLE_AVAILABLE_PLUGINS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.AVAILABLE_PLUGINS)
|
2020-01-10 10:11:28 +01:00
|
|
|
const SORTABLE_VIDEO_REDUNDANCIES_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_REDUNDANCIES)
|
2016-08-16 22:31:45 +02:00
|
|
|
|
2017-09-15 12:17:08 +02:00
|
|
|
const usersSortValidator = checkSort(SORTABLE_USERS_COLUMNS)
|
2018-01-03 16:38:50 +01:00
|
|
|
const accountsSortValidator = checkSort(SORTABLE_ACCOUNTS_COLUMNS)
|
2017-11-30 10:51:13 +01:00
|
|
|
const jobsSortValidator = checkSort(SORTABLE_JOBS_COLUMNS)
|
2020-07-01 16:05:30 +02:00
|
|
|
const abusesSortValidator = checkSort(SORTABLE_ABUSES_COLUMNS)
|
2017-09-15 12:17:08 +02:00
|
|
|
const videosSortValidator = checkSort(SORTABLE_VIDEOS_COLUMNS)
|
2018-08-02 17:48:50 +02:00
|
|
|
const videoImportsSortValidator = checkSort(SORTABLE_VIDEO_IMPORTS_COLUMNS)
|
2018-07-19 16:17:54 +02:00
|
|
|
const videosSearchSortValidator = checkSort(SORTABLE_VIDEOS_SEARCH_COLUMNS)
|
2018-08-23 17:58:39 +02:00
|
|
|
const videoChannelsSearchSortValidator = checkSort(SORTABLE_VIDEO_CHANNELS_SEARCH_COLUMNS)
|
2017-12-22 10:50:07 +01:00
|
|
|
const videoCommentThreadsSortValidator = checkSort(SORTABLE_VIDEO_COMMENT_THREADS_COLUMNS)
|
2019-04-09 11:02:02 +02:00
|
|
|
const videoRatesSortValidator = checkSort(SORTABLE_VIDEO_RATES_COLUMNS)
|
2017-09-22 09:13:43 +02:00
|
|
|
const blacklistSortValidator = checkSort(SORTABLE_BLACKLISTS_COLUMNS)
|
2017-10-24 19:41:09 +02:00
|
|
|
const videoChannelsSortValidator = checkSort(SORTABLE_VIDEO_CHANNELS_COLUMNS)
|
2017-11-13 17:39:41 +01:00
|
|
|
const followersSortValidator = checkSort(SORTABLE_FOLLOWERS_COLUMNS)
|
|
|
|
const followingSortValidator = checkSort(SORTABLE_FOLLOWING_COLUMNS)
|
2018-08-16 15:25:20 +02:00
|
|
|
const userSubscriptionsSortValidator = checkSort(SORTABLE_USER_SUBSCRIPTIONS_COLUMNS)
|
2018-10-12 15:26:04 +02:00
|
|
|
const accountsBlocklistSortValidator = checkSort(SORTABLE_ACCOUNTS_BLOCKLIST_COLUMNS)
|
|
|
|
const serversBlocklistSortValidator = checkSort(SORTABLE_SERVERS_BLOCKLIST_COLUMNS)
|
2018-12-26 10:36:24 +01:00
|
|
|
const userNotificationsSortValidator = checkSort(SORTABLE_USER_NOTIFICATIONS_COLUMNS)
|
2019-02-26 10:55:40 +01:00
|
|
|
const videoPlaylistsSortValidator = checkSort(SORTABLE_VIDEO_PLAYLISTS_COLUMNS)
|
2019-07-10 16:59:53 +02:00
|
|
|
const pluginsSortValidator = checkSort(SORTABLE_PLUGINS_COLUMNS)
|
2019-07-16 11:33:22 +02:00
|
|
|
const availablePluginsSortValidator = checkSort(SORTABLE_AVAILABLE_PLUGINS_COLUMNS)
|
2020-01-10 10:11:28 +01:00
|
|
|
const videoRedundanciesSortValidator = checkSort(SORTABLE_VIDEO_REDUNDANCIES_COLUMNS)
|
2017-01-04 20:59:23 +01:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
usersSortValidator,
|
2020-07-01 16:05:30 +02:00
|
|
|
abusesSortValidator,
|
2017-10-24 19:41:09 +02:00
|
|
|
videoChannelsSortValidator,
|
2018-08-02 17:48:50 +02:00
|
|
|
videoImportsSortValidator,
|
2018-07-19 16:17:54 +02:00
|
|
|
videosSearchSortValidator,
|
2017-09-22 09:13:43 +02:00
|
|
|
videosSortValidator,
|
2017-11-13 17:39:41 +01:00
|
|
|
blacklistSortValidator,
|
2018-01-03 16:38:50 +01:00
|
|
|
accountsSortValidator,
|
2017-11-13 17:39:41 +01:00
|
|
|
followersSortValidator,
|
2017-11-30 10:51:13 +01:00
|
|
|
followingSortValidator,
|
2017-12-22 10:50:07 +01:00
|
|
|
jobsSortValidator,
|
2018-08-16 15:25:20 +02:00
|
|
|
videoCommentThreadsSortValidator,
|
2019-04-09 11:02:02 +02:00
|
|
|
videoRatesSortValidator,
|
2018-08-23 17:58:39 +02:00
|
|
|
userSubscriptionsSortValidator,
|
2019-07-16 11:33:22 +02:00
|
|
|
availablePluginsSortValidator,
|
2018-10-12 15:26:04 +02:00
|
|
|
videoChannelsSearchSortValidator,
|
|
|
|
accountsBlocklistSortValidator,
|
2018-12-26 10:36:24 +01:00
|
|
|
serversBlocklistSortValidator,
|
2019-02-26 10:55:40 +01:00
|
|
|
userNotificationsSortValidator,
|
2019-07-10 16:59:53 +02:00
|
|
|
videoPlaylistsSortValidator,
|
2020-01-10 10:11:28 +01:00
|
|
|
videoRedundanciesSortValidator,
|
2019-07-10 16:59:53 +02:00
|
|
|
pluginsSortValidator
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|