petitPapillon
8 years ago
70 changed files with 289 additions and 207 deletions
@ -1,6 +1,6 @@ |
|||
import React from 'react'; |
|||
import { atomic } from '../../actions/actionCreators'; |
|||
import Store from '../../store'; |
|||
import { atomic } from '../../../actions/actionCreators'; |
|||
import Store from '../../../store'; |
|||
|
|||
import AtomicRender from './atomic.render'; |
|||
|
@ -1,9 +1,9 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
import AddCoinOptionsCrypto from '../addcoin/addcoinOptionsCrypto'; |
|||
import AddCoinOptionsAC from '../addcoin/addcoinOptionsAC'; |
|||
import AddCoinOptionsACFiat from '../addcoin/addcoinOptionsACFiat'; |
|||
import AddCoinOptionsCrypto from '../../addcoin/addcoinOptionsCrypto'; |
|||
import AddCoinOptionsAC from '../../addcoin/addcoinOptionsAC'; |
|||
import AddCoinOptionsACFiat from '../../addcoin/addcoinOptionsACFiat'; |
|||
|
|||
const AtomicRender = function () { |
|||
return ( |
@ -1,7 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
/*import { dashboardChangeSection, toggleAddcoinModal, logout } from '../../actions/actionCreators'; |
|||
import Store from '../../store';*/ |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
import JumblrRender from './jumblr.render'; |
|||
|
@ -1,7 +1,7 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
import WalletsHeader from './walletsHeader'; |
|||
import WalletsHeader from '../walletsHeader/walletsHeader'; |
|||
|
|||
const JumblrRender = function() { |
|||
return ( |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
const LoginModalRender = function () { |
|||
return ( |
@ -1,21 +1,21 @@ |
|||
import React from 'react'; |
|||
|
|||
import Navbar from './navbar'; |
|||
import CoinTile from './coinTile'; |
|||
import EDEX from './edex'; |
|||
import WalletsBalance from './walletsBalance'; |
|||
import WalletsProgress from './walletsProgress'; |
|||
import WalletsNav from './walletsNav'; |
|||
import SendCoin from './sendCoin'; |
|||
import WalletsData from './walletsData'; |
|||
import Atomic from './atomic'; |
|||
import Jumblr from './jumblr'; |
|||
import Settings from './settings'; |
|||
import ReceiveCoin from './receiveCoin'; |
|||
import About from './about'; |
|||
import WalletsNative from './walletsNative'; |
|||
import WalletsNativeTxInfo from './walletsNativeTxInfo'; |
|||
import WalletsTxInfo from './walletsTxInfo'; |
|||
import Navbar from '../navbar/navbar'; |
|||
import CoinTile from '../coinTile/coinTile'; |
|||
import EDEX from '../edex/edex'; |
|||
import WalletsBalance from '../walletsBalance/walletsBalance'; |
|||
import WalletsProgress from '../walletsProgress/walletsProgress'; |
|||
import WalletsNav from '../walletsNav/walletsNav'; |
|||
import SendCoin from '../sendCoin/sendCoin'; |
|||
import WalletsData from '../walletsData/walletsData'; |
|||
import Atomic from '../atomic/atomic'; |
|||
import Jumblr from '../jumblr/jumblr'; |
|||
import Settings from '../settings/settings'; |
|||
import ReceiveCoin from '../receiveCoin/receiveCoin'; |
|||
import About from '../about/about'; |
|||
import WalletsNative from '../walletsNative/walletsNative'; |
|||
import WalletsNativeTxInfo from '../walletsNativeTxInfo/walletsNativeTxInfo'; |
|||
import WalletsTxInfo from '../walletsTxInfo/walletsTxInfo'; |
|||
|
|||
const DashboardRender = function() { |
|||
return ( |
@ -1,7 +1,5 @@ |
|||
import React from 'react'; |
|||
|
|||
import { sortByDate } from '../../util/sort'; |
|||
|
|||
import { sortByDate } from '../../../util/sort'; |
|||
import { |
|||
NotificationsByTypeRender, |
|||
NotificationsModalRender, |
@ -1,8 +1,8 @@ |
|||
import React from 'react'; |
|||
import { |
|||
secondsToString |
|||
} from '../../util/time'; |
|||
import { translate } from '../../translate/translate'; |
|||
} from '../../../util/time'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
export const NotificationsByTypeRender = function(logItem, type, index) { |
|||
return ( |
@ -1,9 +1,9 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import { |
|||
secondsElapsedToString, |
|||
secondsToString |
|||
} from '../../util/time'; |
|||
} from '../../../util/time'; |
|||
|
|||
export const UTXOCacheInfoRender = function(refreshCacheData, isReadyToUpdate, waitUntilCallIsFinished, timestamp) { |
|||
return ( |
@ -1,13 +1,13 @@ |
|||
import React from 'react'; |
|||
import { getCoinTitle } from '../../util/coinHelper'; |
|||
import { getCoinTitle } from '../../../util/coinHelper'; |
|||
import { |
|||
stopInterval, |
|||
addCoin, |
|||
toggleSyncOnlyModal, |
|||
stopIguanaFork, |
|||
restartIguanaInstance |
|||
} from '../../actions/actionCreators'; |
|||
import Store from '../../store'; |
|||
} from '../../../actions/actionCreators'; |
|||
import Store from '../../../store'; |
|||
|
|||
import { |
|||
ProgressRender, |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
export const ProgressRender = function (fork) { |
|||
return ( |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
import WalletsBalanceRender from './walletsBalance.render'; |
|||
|
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
const WalletsBalanceRender = function() { |
|||
return ( |
@ -1,6 +1,6 @@ |
|||
import React from 'react'; |
|||
import { basiliskConnection } from '../../actions/actionCreators'; |
|||
import Store from '../../store'; |
|||
import { basiliskConnection } from '../../../actions/actionCreators'; |
|||
import Store from '../../../store'; |
|||
import WalletsBasiliskConnectionRender from './walletsBasiliskConnection.render'; |
|||
|
|||
class WalletsBasiliskConnection extends React.Component { |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
const WalletsBasiliskConnectionRender = function() { |
|||
return ( |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
const WalletsBasiliskRefreshRender = function() { |
|||
return ( |
@ -1,7 +1,7 @@ |
|||
import React from 'react'; |
|||
import { secondsToString } from '../../util/time'; |
|||
import { toggleViewCacheModal } from '../../actions/actionCreators'; |
|||
import Store from '../../store'; |
|||
import { secondsToString } from '../../../util/time'; |
|||
import { toggleViewCacheModal } from '../../../actions/actionCreators'; |
|||
import Store from '../../../store'; |
|||
import { TreeNode } from 'rc-tree'; |
|||
import WalletsCacheDataRender from './walletsCacheData.render'; |
|||
|
@ -1,6 +1,6 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { animation } from '../../util/rc-tree-animate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import { animation } from '../../../util/rc-tree-animate'; |
|||
import { TreeNode } from 'rc-tree'; |
|||
|
|||
const WalletsCacheDataRender = function() { |
@ -1,10 +1,10 @@ |
|||
import React from 'react'; |
|||
import WalletsNativeBalance from './walletsNativeBalance'; |
|||
import WalletsNativeInfo from './walletsNativeInfo'; |
|||
import WalletsNativeReceive from './walletsNativeReceive'; |
|||
import WalletsNativeSend from './walletsNativeSend'; |
|||
import WalletsNativeSyncProgress from './walletsNativeSyncProgress'; |
|||
import WalletsNativeTxHistory from './walletsNativeTxHistory'; |
|||
import WalletsNativeBalance from '../walletsNativeBalance/walletsNativeBalance'; |
|||
import WalletsNativeInfo from '../walletsNativeInfo/walletsNativeInfo'; |
|||
import WalletsNativeReceive from '../walletsNativeReceive/walletsNativeReceive'; |
|||
import WalletsNativeSend from '../walletsNativeSend/walletsNativeSend'; |
|||
import WalletsNativeSyncProgress from '../walletsNativeSyncProgress/walletsNativeSyncProgress'; |
|||
import WalletsNativeTxHistory from '../walletsNativeTxHistory/walletsNativeTxHistory'; |
|||
|
|||
const WalletsNativeRender = function() { |
|||
return ( |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
const WalletsNativeAlertRender = function() { |
|||
return ( |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
const WalletsNativeBalanceRender = function() { |
|||
return ( |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
const WalletsNativeInfoRender = function() { |
|||
return ( |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
export const AddressListRender = function(address, type) { |
|||
return ( |
@ -1,14 +1,14 @@ |
|||
import React from 'react'; |
|||
import Config from '../../config'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { secondsToString } from '../../util/time'; |
|||
import Config from '../../../config'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import { secondsToString } from '../../../util/time'; |
|||
import { |
|||
resolveOpenAliasAddress, |
|||
triggerToaster, |
|||
sendNativeTx, |
|||
getKMDOPID |
|||
} from '../../actions/actionCreators'; |
|||
import Store from '../../store'; |
|||
} from '../../../actions/actionCreators'; |
|||
import Store from '../../../store'; |
|||
import { |
|||
AddressListRender, |
|||
OASendUIRender, |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
export const AddressListRender = function() { |
|||
return ( |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
export const ChainActivationNotificationRender = function() { |
|||
return ( |
@ -1,8 +1,8 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { sortByDate } from '../../util/sort'; |
|||
import { toggleDashboardTxInfoModal } from '../../actions/actionCreators'; |
|||
import Store from '../../store'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import { sortByDate } from '../../../util/sort'; |
|||
import { toggleDashboardTxInfoModal } from '../../../actions/actionCreators'; |
|||
import Store from '../../../store'; |
|||
import { |
|||
PaginationItemsPerPageSelectorRender, |
|||
PaginationRender, |
@ -1,6 +1,6 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { secondsToString } from '../../util/time'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import { secondsToString } from '../../../util/time'; |
|||
|
|||
export const PaginationItemsPerPageSelectorRender = function() { |
|||
return ( |
@ -1,6 +1,6 @@ |
|||
import React from 'react'; |
|||
import { toggleDashboardTxInfoModal } from '../../actions/actionCreators'; |
|||
import Store from '../../store'; |
|||
import { toggleDashboardTxInfoModal } from '../../../actions/actionCreators'; |
|||
import Store from '../../../store'; |
|||
|
|||
class WalletsNativeTxInfo extends React.Component { |
|||
constructor(props) { |
@ -1,6 +1,6 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { secondsToString } from '../../util/time'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import { secondsToString } from '../../../util/time'; |
|||
|
|||
const WalletsNativeTxInfoRender = function(txInfo) { |
|||
return ( |
@ -1,7 +1,7 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { displayNotariesModal } from '../../actions/actionCreators'; |
|||
import Store from '../../store'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import { displayNotariesModal } from '../../../actions/actionCreators'; |
|||
import Store from '../../../store'; |
|||
import { TreeNode } from 'rc-tree'; |
|||
import { |
|||
NotariesListRender, |
@ -1,7 +1,7 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import Tree, { TreeNode } from 'rc-tree'; |
|||
import { animation } from '../../util/rc-tree-animate'; |
|||
import { animation } from '../../../util/rc-tree-animate'; |
|||
|
|||
export const NotariesListRender = function (node, index) { |
|||
<TreeNode title={ `Node ${index}` } key={ `node-${index}` }> |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import WalletsProgressRender from './walletsProgress.render'; |
|||
|
|||
class WalletsProgress extends React.Component { |
@ -1,5 +1,5 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { translate } from '../../../translate/translate'; |
|||
|
|||
const WalletsProgressRender = function () { |
|||
return ( |
@ -1,6 +1,6 @@ |
|||
import React from 'react'; |
|||
import { toggleDashboardTxInfoModal } from '../../actions/actionCreators'; |
|||
import Store from '../../store'; |
|||
import { toggleDashboardTxInfoModal } from '../../../actions/actionCreators'; |
|||
import Store from '../../../store'; |
|||
import WalletsTxInfoRender from './walletsTxInfo.render'; |
|||
|
|||
class WalletsTxInfo extends React.Component { |
@ -1,6 +1,6 @@ |
|||
import React from 'react'; |
|||
import { translate } from '../../translate/translate'; |
|||
import { secondsToString } from '../../util/time'; |
|||
import { translate } from '../../../translate/translate'; |
|||
import { secondsToString } from '../../../util/time'; |
|||
|
|||
const WalletsTxInfoRender = function(txInfo) { |
|||
return ( |
Loading…
Reference in new issue