2018-05-10 23:10:12 +02:00
|
|
|
const Constants = {
|
2018-08-17 20:11:15 +02:00
|
|
|
KEY_FIRST_RUN_EMAIL: "firstRunEmail",
|
|
|
|
KEY_SHOULD_VERIFY_EMAIL: "shouldVerifyEmail",
|
2019-02-18 07:50:32 +01:00
|
|
|
KEY_EMAIL_VERIFY_PENDING: "emailVerifyPending",
|
2018-08-16 11:48:34 +02:00
|
|
|
|
2018-08-17 20:11:15 +02:00
|
|
|
SETTING_ALPHA_UNDERSTANDS_RISKS: "alphaUnderstandRisks",
|
2018-08-16 11:48:34 +02:00
|
|
|
|
2018-08-17 20:11:15 +02:00
|
|
|
ACTION_DELETE_COMPLETED_BLOBS: "DELETE_COMPLETED_BLOBS",
|
|
|
|
ACTION_FIRST_RUN_PAGE_CHANGED: "FIRST_RUN_PAGE_CHANGED",
|
2018-12-01 23:56:33 +01:00
|
|
|
|
2019-01-21 14:35:11 +01:00
|
|
|
ACTION_PUSH_DRAWER_STACK: "PUSH_DRAWER_STACK",
|
|
|
|
ACTION_POP_DRAWER_STACK: "POP_DRAWER_STACK",
|
|
|
|
|
|
|
|
PAGE_REWARDS: "rewards",
|
|
|
|
PAGE_SETTINGS: "settings",
|
|
|
|
PAGE_TRENDING: "trending",
|
|
|
|
PAGE_WALLET: "wallet",
|
|
|
|
|
|
|
|
DRAWER_ROUTE_DISCOVER: "Discover",
|
|
|
|
DRAWER_ROUTE_TRENDING: "Trending",
|
|
|
|
DRAWER_ROUTE_SUBSCRIPTIONS: "Subscriptions",
|
|
|
|
DRAWER_ROUTE_MY_LBRY: "Downloads",
|
|
|
|
DRAWER_ROUTE_REWARDS: "Rewards",
|
|
|
|
DRAWER_ROUTE_WALLET: "Wallet",
|
|
|
|
DRAWER_ROUTE_SETTINGS: "Settings",
|
|
|
|
DRAWER_ROUTE_ABOUT: "About"
|
2018-05-10 23:10:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Constants;
|
2019-01-21 14:35:11 +01:00
|
|
|
|
|
|
|
export const DrawerRoutes = [
|
|
|
|
Constants.DRAWER_ROUTE_DISCOVER,
|
|
|
|
Constants.DRAWER_ROUTE_TRENDING,
|
|
|
|
Constants.DRAWER_ROUTE_SUBSCRIPTIONS,
|
|
|
|
Constants.DRAWER_ROUTE_MY_LBRY,
|
|
|
|
Constants.DRAWER_ROUTE_REWARDS,
|
|
|
|
Constants.DRAWER_ROUTE_WALLET,
|
|
|
|
Constants.DRAWER_ROUTE_SETTINGS,
|
|
|
|
Constants.DRAWER_ROUTE_ABOUT
|
|
|
|
];
|