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":"2021-01-27T16:22:06.205Z","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
/** | |
* loading component styles | |
*/ | |
.dissolve-animation.hide-remove { | |
display: inline !important; | |
} | |
.dissolve-animation.hide-remove, | |
.dissolve-animation.hide-add { |
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 classNames from 'classnames'; | |
export default ({loading}) => { | |
let loading_class = classNames('dissolve-animation', { | |
'hide': !loading.show | |
}); | |
let message_class = classNames('loading-overlay-message', { |
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
/** | |
* LoadingOverlay component styles | |
*/ | |
.loading-overlay .mdl-spinner { | |
height: 150px; | |
width: 150px; | |
} | |
.page-loading { |
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, {Component} from 'react'; | |
import {StyleSheet, TabBarIOS, Text, View} from 'react-native'; | |
import {connect} from 'react-redux'; | |
import Icon from 'react-native-vector-icons/Ionicons'; | |
class Dashboard extends Component { | |
state = { | |
selected_tab: 'home', | |
render_count: 0 | |
}; |
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
function doSomethingForAWhile() { | |
return new Promise((resolve, reject) => { | |
var maxStatusChecks = 10; | |
var statusCheckCount = 0; | |
var delay = 750; | |
(function doSomething() { | |
return checkSomethingAsync() | |
.then(() => { | |
return timeout(delay || 500); |
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
'use strict'; | |
import {post} from './http.service'; | |
import {API_PATH, SOCKET_ID} from '../constants/environment.js'; | |
import {USER} from '../constants/endpoints'; | |
export function login(username, password, phoneExt) { | |
return new Promise( | |
(resolve, reject) => { | |
var url = API_PATH + USER.LOGIN; |
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
'use strict'; | |
import {createStore, applyMiddleware, compose} from 'redux'; | |
import thunkMiddleware from 'redux-thunk'; | |
import createLogger from 'redux-logger'; | |
import rootReducer from '../reducers'; | |
import {ENV_TYPE} from '../constants/environment'; | |
export let createStores = (initialState) => { |
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
'use strict'; | |
import {cloneDeep} from 'lodash'; | |
import { | |
CHANGE_SITE_CONTEXT, | |
LEADS_PROFILE, | |
LOGIN_COMPLETE, | |
LOGIN_REQUEST, | |
LOGOUT_REQUEST, |
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
'use strict'; | |
import {combineReducers} from 'redux'; | |
import admin_reducer from './admin'; | |
import {dialer_reducer} from './dialer.reducer'; | |
import {disposition_reducer} from './disposition.reducer'; | |
import {lead_reducer} from './lead.reducer'; | |
import {loading_reducer} from './loading.reducer'; | |
import {navigation_reducer} from './navigation.reducer'; |
NewerOlder