diff --git a/app/routes/activity/components/components/Invoices.js b/app/routes/activity/components/components/Invoices.js
deleted file mode 100644
index 6be86f51..00000000
--- a/app/routes/activity/components/components/Invoices.js
+++ /dev/null
@@ -1,110 +0,0 @@
-import React from 'react'
-import PropTypes from 'prop-types'
-import Moment from 'react-moment'
-import 'moment-timezone'
-import { MdCheck } from 'react-icons/lib/md'
-import QRCode from 'qrcode.react'
-import Modal from './Modal'
-import CurrencyIcon from '../../../../components/CurrencyIcon'
-import { btc } from '../../../../utils'
-import styles from './Invoices.scss'
-
-const Invoices = ({
- invoice,
- invoices,
- ticker,
- setInvoice,
- invoiceModalOpen,
- currentTicker
-}) => (
-
-
- {
- invoice ?
-
-
{invoice.memo}
-
-
-
- {
- ticker.currency === 'usd' ?
- btc.satoshisToUsd(invoice.value, currentTicker.price_usd)
- :
- btc.satoshisToBtc(invoice.value)
- }
-
-
-
-
- event.target.select()}
- defaultValue={invoice.payment_request}
- />
-
-
- {
- invoice.settled ?
-
Paid
- :
-
Not Paid
- }
-
-
- Created on
- {invoice.creation_date * 1000}
-
-
- :
- null
- }
-
-
- -
-
-
-
-
- {
- invoices.map((invoiceItem, index) => (
- - setInvoice(invoiceItem)}>
-
-
{`${invoiceItem.payment_request.substring(0, 75)}...`}
-
-
-
-
- {
- ticker.currency === 'usd' ?
- btc.satoshisToUsd(invoiceItem.value, currentTicker.price_usd)
- :
- btc.satoshisToBtc(invoiceItem.value)
- }
-
-
-
- ))
- }
-
-
-)
-
-Invoices.propTypes = {
- invoice: PropTypes.object,
- invoices: PropTypes.array.isRequired,
- ticker: PropTypes.object.isRequired,
- setInvoice: PropTypes.func.isRequired,
- invoiceModalOpen: PropTypes.bool.isRequired,
- currentTicker: PropTypes.object.isRequired
-}
-
-export default Invoices
diff --git a/app/routes/activity/components/components/Invoices.scss b/app/routes/activity/components/components/Invoices.scss
deleted file mode 100644
index 0a30b26b..00000000
--- a/app/routes/activity/components/components/Invoices.scss
+++ /dev/null
@@ -1,125 +0,0 @@
-@import '../../../../variables.scss';
-
-.invoiceModal {
- padding: 40px;
-
- h3 {
- font-size: 24px;
- color: $black;
- font-weight: bold;
- text-align: center;
- margin-bottom: 10px;
- }
-
- h1 {
- text-align: center;
- color: $main;
- margin: 20px 20px 60px 0;
-
- svg {
- font-size: 30px;
- vertical-align: top;
- }
-
- span svg[data-icon='ltc'] {
- width: 30px;
- height: 30px;
- vertical-align: top;
-
- g {
- transform: scale(1.75) translate(-5px, -5px);
- }
- }
-
- .value {
- font-size: 60px;
- }
- }
-
- .qrcode {
- text-align: center;
-
- .paymentRequest {
- text-align: center;
- font-size: 0.5vw;
- margin-top: 20px;
- padding: 5px;
- border-radius: 5px;
- background: $lightgrey;
- border: 1px solid $darkgrey;
- display: block;
- width: 100%;
- }
- }
-
- .settled {
- text-align: center;
- color: $main;
- text-transform: uppercase;
- font-size: 20px;
- margin: 30px 0;
- font-weight: bold;
-
- svg {
- line-height: 20px;
- }
- }
-
- .date {
- text-align: center;
-
- time {
- margin-left: 3px;
- }
- }
-}
-
-.invoices {
- width: 75%;
- margin: 0 auto;
- background: $white;
-}
-
-.invoice, .invoiceTitles {
- display: flex;
- flex-direction: 'row';
- padding: 35px 10px;
- border-bottom: 1px solid $grey;
- font-size: 14px;
-
- .left {
- flex: 7;
- }
-
- .center {
- flex: 2;
- }
-
- .right {
- flex: 1;
- }
-
- .settled {
- color: $main;
- font-weight: bold;
- }
-}
-
-.invoiceTitles {
- border: none;
-
- .left, .center, .right {
- color: $black;
- text-transform: uppercase;
- font-size: 16px;
- font-weight: bold;
- }
-}
-
-.invoice {
- cursor: pointer;
-
- &:hover {
- background: #f0f0f0;
- }
-}
diff --git a/app/routes/activity/components/components/Payments.js b/app/routes/activity/components/components/Payments.js
deleted file mode 100644
index b65875e4..00000000
--- a/app/routes/activity/components/components/Payments.js
+++ /dev/null
@@ -1,112 +0,0 @@
-import React from 'react'
-import PropTypes from 'prop-types'
-import Moment from 'react-moment'
-import 'moment-timezone'
-import Modal from './Modal'
-import CurrencyIcon from '../../../../components/CurrencyIcon'
-import { btc } from '../../../../utils'
-import styles from './Payments.scss'
-
-const Payments = ({
- payment,
- payments,
- ticker,
- setPayment,
- paymentModalOpen,
- currentTicker
-}) => (
-
-
- {
- payment ?
-
-
{payment.payment_hash}
-
-
-
- {
- ticker.currency === 'usd' ?
- btc.satoshisToUsd(payment.value, currentTicker.price_usd)
- :
- btc.satoshisToBtc(payment.value)
- }
-
-
-
- - Fee
- - {payment.fee}
- - Date
- -
- {payment.creation_date * 1000}
-
-
-
- :
- null
- }
-
-
- -
-
-
-
-
-
- {
- payments.map((paymentItem, index) =>
- (
- - setPayment(paymentItem)}>
-
-
{paymentItem.path[0]}
-
-
-
- {paymentItem.creation_date * 1000}
-
-
-
-
- {
- ticker.currency === 'usd' ?
- btc.satoshisToUsd(paymentItem.fee, currentTicker.price_usd)
- :
- btc.satoshisToBtc(paymentItem.fee)
- }
-
-
-
-
- {
- ticker.currency === 'usd' ?
- btc.satoshisToUsd(paymentItem.value, currentTicker.price_usd)
- :
- btc.satoshisToBtc(paymentItem.value)
- }
-
-
-
- )
- )
- }
-
-
-)
-
-Payments.propTypes = {
- payment: PropTypes.object,
- payments: PropTypes.array.isRequired,
- ticker: PropTypes.object.isRequired,
- setPayment: PropTypes.func.isRequired,
- paymentModalOpen: PropTypes.bool.isRequired,
- currentTicker: PropTypes.object.isRequired
-}
-
-export default Payments
diff --git a/app/routes/activity/components/components/Payments.scss b/app/routes/activity/components/components/Payments.scss
deleted file mode 100644
index c7a697cb..00000000
--- a/app/routes/activity/components/components/Payments.scss
+++ /dev/null
@@ -1,102 +0,0 @@
-@import '../../../../variables.scss';
-
-.paymentModal {
- padding: 40px;
-
- h1 {
- text-align: center;
- color: $main;
- margin: 60px 30px 60px 0;
-
- svg {
- font-size: 30px;
- vertical-align: top;
- }
-
- span svg[data-icon='ltc'] {
- width: 30px;
- height: 30px;
- vertical-align: top;
-
- g {
- transform: scale(1.75) translate(-5px, -5px);
- }
- }
-
- .value {
- font-size: 80px;
- }
- }
-
- h3 {
- font-size: 14px;
- text-align: center;
- color: $black;
- font-weight: bold;
- }
-
- dt {
- text-align: left;
- float: left;
- clear: left;
- font-weight: 500;
- padding: 20px 35px 19px 0;
- color: $black;
- font-weight: bold;
- }
-
- dd {
- text-align: right;
- font-weight: 400;
- padding: 19px 0;
- margin-left: 0;
- border-top: 1px solid $darkgrey;
- }
-}
-
-.payments {
- width: 75%;
- margin: 0 auto;
- background: $white;
-}
-
-.payment, .paymentTitles {
- display: flex;
- flex-direction: 'row';
- padding: 35px 10px;
- border-bottom: 1px solid $grey;
- font-size: 14px;
-
- .left, .center, .right {
- display: inline-block;
- vertical-align: top;
- }
-
- .center, .right {
- flex: 1;
- }
-
- .left {
- flex: 7;
- }
-}
-
-.paymentTitles {
- border: none;
-
- .left, .center, .right {
- color: $black;
- text-transform: uppercase;
- font-size: 16px;
- font-weight: bold;
- }
-}
-
-
-.payment {
- cursor: pointer;
-
- &:hover {
- background: #f0f0f0;
- }
-}