This commit is contained in:
2019-07-24 00:53:01 -04:00
parent 434a1ded24
commit a9f4324f29
21 changed files with 345 additions and 100 deletions

View File

@@ -1,3 +1,7 @@
export const ITEM_FILTERS = {
ALL: 'ALL',
};
export const ITEM_TYPES = {
AUCTION: 'auction',
DONATION: 'donation',
@@ -19,9 +23,11 @@ export const SORT_MODES = {
TITLE_DSC: 'TITLE_DSC',
};
export const VIEW_MODES = {
LIST: 'LIST',
GRID: 'GRID',
export const AUCTION_VIEW_MODES = {
ALL: 'ALL',
BIDDING: 'BIDDING',
NO_BIDS: 'NO_BIDS',
WINNING: 'WINNING',
};
export const API_ENDPOINTS = {