navigation.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. export enum NAVIGATION_PAGES {
  2. WELCOME = 'welcome',
  3. LOGIN = 'login',
  4. REGISTER = 'registration',
  5. REGISTER_ACCOUNT_DATA = 'registrationAccountData',
  6. RESET_PASSWORD = 'resetPassword',
  7. RESET_PASSWORD_DEEP = 'resetPasswordDeep',
  8. INFO = 'info',
  9. JOIN_INFO = 'joinInfo',
  10. DISCOVER_INFO = 'discoverInfo',
  11. PLAN_INFO = 'planTravelsInfo',
  12. FIRST_STEPS_INFO = 'firstStepsInfo',
  13. COUNTRIES_INFO = 'countriesInfo',
  14. DARE_INFO = 'dareInfo',
  15. EARTH_INFO = 'earthInfo',
  16. TRIPS_INFO = 'tripsInfo',
  17. REGIONS_INFO = 'regionsInfo',
  18. FIXERS_INFO = 'fixersInfo',
  19. IN_APP = 'inAppStack',
  20. IN_APP_MAP_TAB = 'Map',
  21. MAP_TAB = 'inAppMapTab',
  22. IN_APP_TRAVELLERS_TAB = 'Nomads',
  23. TRAVELLERS_TAB = 'inAppTravellers',
  24. MASTER_RANKING = 'inAppMasterRanking',
  25. LPI_RANKING = 'inAppLpiRanking',
  26. IN_MEMORIAM = 'inAppInMemoriam',
  27. IN_HISTORY = 'inAppInHistory',
  28. UN_MASTERS = 'inAppUNMaster',
  29. STATISTICS = 'inAppStatistics',
  30. IN_APP_PROFILE = 'Profile',
  31. PROFILE_TAB = 'inAppProfile',
  32. PUBLIC_PROFILE_VIEW = 'publicProfileView',
  33. EDIT_PERSONAL_INFO = 'editPersonalInfo',
  34. SETTINGS = 'settings',
  35. IN_APP_TRAVELS_TAB = 'Travels',
  36. TRAVELS_TAB = 'inAppTravels',
  37. SERIES = 'inAppSeries',
  38. SERIES_ITEM = 'inAppSeriesItem',
  39. STATISTICS_LIST_DATA = 'statisticsListData',
  40. EARTH = 'inAppEarth',
  41. PHOTOS = 'inAppPhotos',
  42. MORE_PHOTOS = 'inAppMorePhotos',
  43. ADD_PHOTO = 'inAppAddPhoto',
  44. TRIPS = 'inAppTrips',
  45. ADD_TRIP = 'inAppAddTrip',
  46. ADD_REGIONS = 'inAppAddRegions',
  47. COUNTRIES = 'inAppCountries',
  48. REGIONS = 'inAppRegions',
  49. DARE = 'inAppDare',
  50. TRIUMPHS = 'inAppTriumphs',
  51. SERIES_RANKING = 'inAppSeriesRanking',
  52. SERIES_RANKING_LIST = 'inAppSeriesRankingList',
  53. USERS_MAP = 'inAppUsersMap',
  54. REGION_PREVIEW = 'inAppRegionPreview',
  55. USERS_LIST = 'inAppUsersList',
  56. SUGGEST_SERIES = 'inAppSuggestSeries',
  57. FRIENDS_LIST = 'inAppFriendsList',
  58. MY_FRIENDS = 'inAppMyFriends',
  59. COUNTRY_PREVIEW = 'inAppCountryPreview',
  60. MENU_DRAWER = 'Menu',
  61. FIXERS = 'inAppFixers',
  62. ADD_FIXER = 'inAppAddFixer',
  63. FIXERS_COMMENTS = 'inAppFixersComments',
  64. SHARE_PROFILE = 'inAppShareProfile',
  65. NOTIFICATIONS = 'inAppNotifications',
  66. NOTIFICATIONS_LIST = 'inAppNotificationsList',
  67. FRIENDS_NOTIFICATIONS = 'inAppFriendsNotifications',
  68. MESSAGES_NOTIFICATIONS = 'inAppMessagesNotifications',
  69. SYSTEM_NOTIFICATIONS = 'inAppSystemNotifications',
  70. IN_APP_MESSAGES_TAB = 'Messages',
  71. CHATS_LIST = 'inAppChatsList',
  72. CHAT = 'inAppChat',
  73. GROUP_CHAT = 'inAppGroupChat',
  74. LOCATION_SHARING = 'inAppLocationSharing',
  75. EVENTS = 'inAppEvents',
  76. EVENT = 'inAppEvent',
  77. FULL_MAP_VIEW = 'inAppFullMapView',
  78. GROUP_SETTINGS = 'inAppGroupSettings',
  79. CREATE_EVENT = 'inAppCreateEvent',
  80. MEMBERS_LIST = 'inAppMembersList',
  81. ALL_EVENT_PHOTOS = 'inAppAllEventPhotos',
  82. PARTICIPANTS_LIST = 'inAppParticipantsList',
  83. EVENTS_NOTIFICATIONS = 'inAppEventsNotifications',
  84. OFFLINE_MAPS = 'inAppOfflineMaps',
  85. OFFLINE_SELECT_MAP = 'inAppOfflineSelectMap',
  86. OFFLINE_SELECT_REGIONS = 'inAppOfflineSelectRegions',
  87. OFFLINE_DOWNLOAD_PROGRESS = 'inAppOfflineDownloadProgress',
  88. EDIT_COUNTRY_DATA = 'inAppEditCountryData',
  89. IN_APP_EVENTS_TAB = 'Events'
  90. }