d0226ab4cc
* first run updates for sync * finish sync implementation and fix build for openssl 1.1.1b required for sdk * fix openssl recipe and tweak build * fix NativeModules import on wallet page * display total wallet balance. fix dispatch prop. * add pipeline status to README.md * remove unused build recipes * hide 'No, thanks' button during email new request * bumpversion 0.6.0 --> 0.6.1 * move unclaimed reward amount to the left of floating wallet balance * Upgrade to React Native 0.59.3 (#513) * upgrade to react native 0.59.3 * add FOREGROUND_SERVICE permission for Android 9 Pie (target sdk 28) * put android.permission.FOREGROUND_SERVICE permission directly in AndroidManifest * allow cleartext traffic * minor copy changes * enable secure password input and auto account_unlock on startup
59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
JavaScript
const Constants = {
|
|
FIRST_RUN_PAGE_WELCOME: "welcome",
|
|
FIRST_RUN_PAGE_EMAIL_COLLECT: "email-collect",
|
|
FIRST_RUN_PAGE_WALLET: "wallet",
|
|
FIRST_RUN_PAGE_SKIP_ACCOUNT: "skip-account",
|
|
|
|
KEY_FIRST_RUN_EMAIL: "firstRunEmail",
|
|
KEY_FIRST_RUN_PASSWORD: "firstRunPassword",
|
|
KEY_SHOULD_VERIFY_EMAIL: "shouldVerifyEmail",
|
|
KEY_EMAIL_VERIFY_PENDING: "emailVerifyPending",
|
|
|
|
SETTING_ALPHA_UNDERSTANDS_RISKS: "alphaUnderstandRisks",
|
|
SETTING_SUBSCRIPTIONS_VIEW_MODE: "subscriptionsViewMode",
|
|
SETTING_RATING_REMINDER_LAST_SHOWN: "ratingReminderLastShown",
|
|
SETTING_RATING_REMINDER_DISABLED: "ratingReminderDisabled",
|
|
|
|
ACTION_DELETE_COMPLETED_BLOBS: "DELETE_COMPLETED_BLOBS",
|
|
ACTION_FIRST_RUN_PAGE_CHANGED: "FIRST_RUN_PAGE_CHANGED",
|
|
|
|
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",
|
|
DRAWER_ROUTE_SEARCH: "Search",
|
|
DRAWER_ROUTE_TRANSACTION_HISTORY: "TransactionHistory",
|
|
|
|
SUBSCRIPTIONS_VIEW_ALL: 'view_all',
|
|
SUBSCRIPTIONS_VIEW_LATEST_FIRST: 'view_latest_first',
|
|
|
|
PLAY_STORE_URL: 'https://play.google.com/store/apps/details?id=io.lbry.browser',
|
|
RATING_REMINDER_INTERVAL: 604800, // 7 days (7 * 24 * 3600s)
|
|
};
|
|
|
|
export default Constants;
|
|
|
|
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,
|
|
Constants.DRAWER_ROUTE_SEARCH,
|
|
Constants.DRAWER_ROUTE_TRANSACTION_HISTORY
|
|
];
|