Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

queryStringConstants.js 546B

1234567891011121314
  1. export const KEY_SIZE = "size";
  2. export const KEY_PAGE = "page";
  3. export const KEY_CATEGORY = "category";
  4. export const KEY_SUBCATEGORY = "subcategory";
  5. export const KEY_SORTBY = "sortBy";
  6. export const KEY_SORT_DATE = "_des_date";
  7. export const KEY_SORT_POPULAR = "_des_popular";
  8. export const KEY_LOCATION = "location"
  9. export const KEY_NAME = "name";
  10. export const KEY_SEARCH = "search"
  11. export const VALUE_SORTBY_NEW = "newest";
  12. export const VALUE_SORTBY_OLD = "oldest";
  13. export const VALUE_SORTBY_POPULAR = "popular";
  14. export const initialSize = "10";