2020-02-10 20:43:24 +01:00
|
|
|
export const PAGE_SIZE = 20;
|
|
|
|
|
|
|
|
export const FRESH_KEY = 'fresh';
|
|
|
|
export const ORDER_BY_KEY = 'order';
|
|
|
|
export const DURATION_KEY = 'duration';
|
2020-10-15 19:56:55 +02:00
|
|
|
export const LANGUAGE_KEY = 'language';
|
2020-02-10 20:43:24 +01:00
|
|
|
export const TAGS_KEY = 't';
|
|
|
|
export const CONTENT_KEY = 'content';
|
2020-03-31 22:30:56 +02:00
|
|
|
export const REPOSTED_URI_KEY = 'reposted_uri';
|
2020-05-21 17:38:28 +02:00
|
|
|
export const CHANNEL_IDS_KEY = 'channel_ids';
|
2020-03-12 02:43:52 +01:00
|
|
|
export const TAGS_ALL = 'tags_any';
|
|
|
|
export const TAGS_FOLLOWED = 'tags_followed';
|
|
|
|
|
2020-05-21 17:38:28 +02:00
|
|
|
export const FEE_AMOUNT_KEY = 'fee_amount';
|
|
|
|
export const FEE_AMOUNT_ANY = '>=0';
|
|
|
|
export const FEE_AMOUNT_ONLY_PAID = '>0';
|
2020-07-07 16:27:53 +02:00
|
|
|
export const FEE_AMOUNT_ONLY_FREE = '<=0';
|
2020-05-21 17:38:28 +02:00
|
|
|
|
2020-10-15 19:56:55 +02:00
|
|
|
export const LANGUAGES_ALL = 'all';
|
|
|
|
|
2020-02-10 20:43:24 +01:00
|
|
|
export const FRESH_DAY = 'day';
|
|
|
|
export const FRESH_WEEK = 'week';
|
|
|
|
export const FRESH_MONTH = 'month';
|
|
|
|
export const FRESH_YEAR = 'year';
|
|
|
|
export const FRESH_ALL = 'all';
|
2020-02-27 23:15:17 +01:00
|
|
|
export const FRESH_DEFAULT = 'default';
|
|
|
|
export const FRESH_TYPES = [FRESH_DEFAULT, FRESH_DAY, FRESH_WEEK, FRESH_MONTH, FRESH_YEAR, FRESH_ALL];
|
2020-02-10 20:43:24 +01:00
|
|
|
|
|
|
|
export const ORDER_BY_TRENDING = 'trending';
|
|
|
|
export const ORDER_BY_TRENDING_VALUE = ['trending_group', 'trending_mixed'];
|
|
|
|
export const ORDER_BY_TOP = 'top';
|
|
|
|
export const ORDER_BY_TOP_VALUE = ['effective_amount'];
|
|
|
|
export const ORDER_BY_NEW = 'new';
|
|
|
|
export const ORDER_BY_NEW_VALUE = ['release_time'];
|
|
|
|
export const ORDER_BY_TYPES = [ORDER_BY_TRENDING, ORDER_BY_NEW, ORDER_BY_TOP];
|
|
|
|
|
|
|
|
export const DURATION_SHORT = 'short';
|
|
|
|
export const DURATION_LONG = 'long';
|
|
|
|
export const DURATION_ALL = 'all';
|
2020-11-13 21:52:28 +01:00
|
|
|
export const DURATION_TYPES = [DURATION_ALL, DURATION_SHORT, DURATION_LONG];
|
2020-02-10 20:43:24 +01:00
|
|
|
|
|
|
|
export const FILE_VIDEO = 'video';
|
|
|
|
export const FILE_AUDIO = 'audio';
|
|
|
|
export const FILE_DOCUMENT = 'document';
|
2020-02-29 18:24:13 +01:00
|
|
|
export const FILE_BINARY = 'binary';
|
|
|
|
export const FILE_IMAGE = 'image';
|
|
|
|
export const FILE_MODEL = 'model';
|
|
|
|
export const FILE_TYPES = [FILE_VIDEO, FILE_AUDIO, FILE_DOCUMENT, FILE_IMAGE, FILE_MODEL, FILE_BINARY];
|
2020-02-10 20:43:24 +01:00
|
|
|
|
2020-05-21 17:38:28 +02:00
|
|
|
export const CLAIM_TYPE = 'claim_type';
|
2020-02-10 20:43:24 +01:00
|
|
|
export const CLAIM_CHANNEL = 'channel';
|
|
|
|
export const CLAIM_STREAM = 'stream';
|
|
|
|
export const CLAIM_REPOST = 'repost';
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
export const CLAIM_COLLECTION = 'collection';
|
|
|
|
export const CLAIM_TYPES = [CLAIM_CHANNEL, CLAIM_REPOST, CLAIM_STREAM, CLAIM_COLLECTION];
|
2020-02-10 20:43:24 +01:00
|
|
|
|
|
|
|
export const CONTENT_ALL = 'all';
|
wip
wip
wip - everything but publish, autoplay, and styling
collection publishing
add channel to collection publish
cleanup
wip
bump
clear mass add after success
move collection item management controls
redirect replace to published collection id
bump
playlist selector on create
bump
use new collection add ui element
bump
wip
gitignore
add content json
wip
bump
context add to playlist
basic collections page style pass wip
wip: edits, buttons, styles...
change fileAuthor to claimAuthor
update, pending bugfixes, delete modal progress, collection header, other bugfixes
bump
cleaning
show page bugfix
builtin collection headers
no playlists, no grid title
wip
style tweaks
use normal looking claim previews for collection tiles
add collection changes
style library previews
collection menulist for delete/view on library
delete modal works for unpublished
rearrange collection publish tabs
clean up collection publishing and items
show on odysee
begin collectoin edit header and css renaming
better thumbnails
bump
fix collection publish redirect
view collection in menu does something
copy and thumbs
list previews, pending, context menus, list page
enter to add collection, lists page empty state
playable lists only, delete feature, bump
put fileListDownloaded back
better collection titles
improve collection claim details
fix horiz more icon
fix up channel page
style, copy, bump
refactor preview overlay properties,
fix reposts showing as floppydisk
add watch later toast,
small overlay properties on wunderbar results,
fix collection actions buttons
bump
cleanup
cleaning, refactoring
bump
preview thumb styling, cleanup
support discover page lists search
sync, bump
bump, fix sync more
enforce builtin order for now
new lists page empty state
try to indicate unpublished edits in lists
bump
fix autoplay and linting
consts, fix autoplay
bugs
fixes
cleanup
fix, bump
lists experimental ui, fixes
refactor listIndex out
hack in collection fallback thumb
bump
2021-02-06 08:03:51 +01:00
|
|
|
export const CONTENT_TYPES = [CONTENT_ALL, CLAIM_CHANNEL, CLAIM_REPOST, CLAIM_COLLECTION, ...FILE_TYPES];
|
2020-02-10 20:43:24 +01:00
|
|
|
export const KEYS = [ORDER_BY_KEY, TAGS_KEY, FRESH_KEY, CONTENT_KEY, DURATION_KEY];
|