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

@@ -49,3 +49,9 @@ export const UNBLOCK_UI = 'UNBLOCK_UI';
export const SET_ACTIVE_EVENT = 'SET_ACTIVE_EVENT';
export const UNSET_ACTIVE_EVENT = 'UNSET_ACTIVE_EVENT';
export const SET_ACTIVE_ITEM = 'SET_ACTIVE_ITEM';
export const UNSET_ACTIVE_ITEM = 'UNSET_ACTIVE_ITEM';
export const SET_AUCTION_FILTER = 'SET_AUCTION_FILTER';
export const SET_AUCTION_VIEW_MODE = 'SET_AUCTION_VIEW_MODE';

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 = {