This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2019-10-13T03:18:30.028Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Alert} from 'react-native'; | |
import logger from 'logger'; | |
import * as types from 'auth/constants'; | |
import * as endpoints from 'endpoints'; | |
import * as cache from 'utils/cache'; | |
import {AUTH_STATUS} from 'enums/authStatus'; | |
import * as requester from 'services/Requester'; | |
import {clearSurveys} from 'surveys-ballots/actions'; | |
import {clearEvents} from 'events/actions'; | |
import * as repsActions from 'representatives/actions'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// !$*UTF8*$! | |
{ | |
archiveVersion = 1; | |
classes = { | |
}; | |
objectVersion = 46; | |
objects = { | |
/* Begin PBXBuildFile section */ | |
00E356F31AD99517003FC87E /* NFIBEngageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* NFIBEngageTests.m */; }; | |
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { PureComponent } from "react"; | |
import { | |
FlatList, | |
StyleSheet, | |
AppState, | |
Platform, | |
Dimensions, | |
View, | |
Alert | |
} from "react-native"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import PropTypes from "prop-types"; | |
import React from "react"; | |
import Switch from "../ThemedSwitch"; | |
import { | |
genericObjectSort, | |
SortProperty, | |
SORT_DIRECTION | |
} from "../../../../common/utils/object-sort"; | |
import styles from "./SwitchList.css"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import PropTypes from "prop-types"; | |
import { bindActionCreators } from "redux"; | |
import { connect } from "react-redux"; | |
import glamorous from "glamorous"; | |
import { Button } from "../../../../common/components"; | |
import { Card, CardText } from "react-toolbox/lib/card"; | |
import { getCurrentUser } from "../../../../redux-modules/current-user"; | |
import { withLoading } from "../../../../redux-modules/loading-overlay"; | |
import PreferencesActions from "../../actions/customers/preferences"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import PropTypes from "prop-types"; | |
import { bindActionCreators } from "redux"; | |
import { connect } from "react-redux"; | |
import glamorous from "glamorous"; | |
import { Button } from "../../../../common/components"; | |
import { Card, CardText } from "react-toolbox/lib/card"; | |
import { getCurrentUser } from "../../../../redux-modules/current-user"; | |
import { withLoading } from "../../../../redux-modules/loading-overlay"; | |
import PreferencesActions from "../../actions/customers/preferences"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//eslint-disable-next-line | |
console.ignoredYellowBox = ["Setting a timer"]; | |
import "./ReactotronConfig"; | |
import React, { PureComponent } from "react"; | |
import { | |
StyleSheet, | |
View, | |
StatusBar, | |
Linking, | |
Platform, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/action-alerts/reducer.js: | |
import * as types from 'action-alerts/constants'; | |
import * as helpers from 'action-alerts/helpers/reducer-helpers'; | |
const INITIAL_STATE = { | |
alerts: [], | |
email: '', | |
error: null, | |
loading: false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import {View, StyleSheet, ActivityIndicator } from 'react-native'; | |
// import Spinner from 'react-native-spinkit'; | |
import PropTypes from 'prop-types'; | |
// import {v2Colors} from 'theme'; | |
// import {moderateScale} from 'react-native-size-matters'; | |
const Loading = (props) => ( | |
<View style={styles.container}> | |
<ActivityIndicator {...props} |