164 lines
No EOL
9.7 KiB
HTML
164 lines
No EOL
9.7 KiB
HTML
<ion-modal-view ng-controller="txDetailsController">
|
|
<ion-content>
|
|
<nav class="tab-bar" ng-style="{'background-color':color}">
|
|
<section class="left-small">
|
|
<a ng-click="cancel()" class="p10">
|
|
<span class="text-close" translate>Close</span>
|
|
</a>
|
|
</section>
|
|
|
|
<section class="middle tab-bar-section">
|
|
<h1 class="title ellipsis" translate>Transaction</h1>
|
|
</section>
|
|
</nav>
|
|
|
|
<div class="modal-content" ng-class="{'status-bar-content':index.useViewManagedStatusBar}" ng-style="{'background':skin.view.viewBackground}">
|
|
<div class="header-modal text-center" ng-init="getAlternativeAmount()"
|
|
ng-style="{'background':skin.view.viewSectionHeaderBackground}">
|
|
<div ng-show="btx.action != 'invalid'">
|
|
<div ng-show="btx.action == 'received'">
|
|
<img src="img/icon-receive-history.svg" alt="sync" width="50">
|
|
<p class="m0 text-gray size-14" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>Received</p>
|
|
</div>
|
|
<div ng-show="btx.action == 'sent'">
|
|
<img src="img/icon-sent-history.svg" alt="sync" width="50">
|
|
<p class="m0 text-gray size-14" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>Sent</p>
|
|
</div>
|
|
<div ng-show="btx.action == 'moved'">
|
|
<img src="img/icon-moved.svg" alt="sync" width="50">
|
|
<p class="m0 text-gray size-14" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>Moved</p>
|
|
</div>
|
|
|
|
<div class="size-36" ng-style="{'color':skin.view.viewPrimaryTextColor}">
|
|
<span ng-if="btx.action == 'received'">+</span><span ng-if="btx.action == 'sent'">-</span>{{btx.amountStr}}
|
|
</div>
|
|
<div class="alternative-amount" ng-click="showRate=!showRate" ng-init="showRate = false">
|
|
<span class="label gray radius" ng-show="!showRate && alternativeAmountStr"
|
|
ng-style="{'color':skin.view.complementaryColor, 'background-color':skin.view.primaryColor}">
|
|
{{alternativeAmountStr}}
|
|
</span>
|
|
<span class="size-12" ng-show="showRate && alternativeAmountStr"
|
|
ng-style="{'color':skin.view.complementaryColor, 'background-color':skin.view.primaryColor}">
|
|
{{rateStr}} ({{rateDate | amDateFormat:'MM/DD/YYYY HH:mm a'}})
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div ng-style="{'color':skin.view.viewPrimaryTextColor}" ng-show="btx.action == 'invalid'">
|
|
-
|
|
</div>
|
|
</div>
|
|
|
|
<h4 class="title m0" ng-style="{'color':skin.view.viewSectionHeaderColor, 'background':skin.view.viewSectionHeaderBackground}" translate>Details</h4>
|
|
|
|
<ul class="no-bullet size-14 m0">
|
|
|
|
<li ng-if="!btx.hasMultiplesOutputs && btx.addressTo && btx.addressTo != 'N/A'" class="line-b p10 oh" ng-click="copyToClipboard(btx.addressTo)"
|
|
ng-style="{'background':skin.view.viewListItemBackground, 'border-bottom-color':skin.view.viewListItemSeparatorColor}">
|
|
<span class="text-gray" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>To</span>
|
|
<span class="right" ng-style="{'color':skin.view.viewSecondaryTextColor}">
|
|
<span ng-if="btx.merchant">
|
|
<span ng-show="btx.merchant.pr.ca"><i class="fi-lock color-greeni"></i> {{btx.merchant.domain}}</span>
|
|
<span ng-show="!btx.merchant.pr.ca"><i class="fi-unlock color-yellowi"></i> {{btx.merchant.domain}}</span>
|
|
</span>
|
|
<span ng-if="!btx.merchant">
|
|
<span ng-show="btx.labelTo">{{btx.labelTo}}</span>
|
|
<contact ng-show="!btx.labelTo" class="enable_text_select" address="{{btx.addressTo}}"></contact>
|
|
</span>
|
|
</span>
|
|
</li>
|
|
|
|
<li ng-show="btx.hasMultiplesOutputs" class="line-b p10 oh"
|
|
ng-click="showMultiplesOutputs = !showMultiplesOutputs"
|
|
ng-style="{'background':skin.view.viewListItemBackground, 'border-bottom-color':skin.view.viewListItemSeparatorColor}">
|
|
<span class="text-gray" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>Recipients</span>
|
|
<span class="right" ng-style="{'color':skin.view.viewSecondaryTextColor}">{{btx.recipientCount}}
|
|
<i ng-show="showMultiplesOutputs" class="icon-arrow-up3 size-24"></i>
|
|
<i ng-show="!showMultiplesOutputs" class="icon-arrow-down3 size-24"></i>
|
|
</span>
|
|
</li>
|
|
|
|
<div class="line-b" ng-show="btx.hasMultiplesOutputs && showMultiplesOutputs"
|
|
ng-repeat="output in btx.outputs"
|
|
ng-include="'views/includes/output.html'">
|
|
</div>
|
|
|
|
<li ng-if="btx.action == 'invalid'" class="line-b p10 oh"
|
|
ng-style="{'background':skin.view.viewListItemBackground, 'border-bottom-color':skin.view.viewListItemSeparatorColor}">
|
|
<span class="right" ng-style="{'color':skin.view.viewSecondaryTextColor}" translate>
|
|
This transaction has become invalid; possibly due to a double spend attempt.
|
|
</span>
|
|
</li>
|
|
<li ng-if="btx.time" class="line-b p10 oh"
|
|
ng-style="{'background':skin.view.viewListItemBackground, 'border-bottom-color':skin.view.viewListItemSeparatorColor}">
|
|
<span class="text-gray" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>Date</span>
|
|
<span class="right enable_text_select" ng-style="{'color':skin.view.viewSecondaryTextColor}">
|
|
<time>{{ btx.time * 1000 | amDateFormat:'MM/DD/YYYY HH:mm a'}}</time>
|
|
<time>({{ btx.time * 1000 | amTimeAgo}})</time>
|
|
</span>
|
|
</li>
|
|
<li class="line-b p10" ng-show="btx.action != 'received'" ng-click="copyToClipboard(btx.feeStr)"
|
|
ng-style="{'background':skin.view.viewListItemBackground, 'border-bottom-color':skin.view.viewListItemSeparatorColor}">
|
|
<span class="text-gray" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>Fee</span>
|
|
<span class="right enable_text_select" ng-style="{'color':skin.view.viewSecondaryTextColor}">{{btx.feeStr}}</span>
|
|
</li>
|
|
<li class="line-b p10 oh" ng-show="btx.message && btx.action != 'received'" ng-click="copyToClipboard(btx.message)"
|
|
ng-style="{'background':skin.view.viewListItemBackground, 'border-bottom-color':skin.view.viewListItemSeparatorColor}">
|
|
<span class="text-gray" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>Note</span>
|
|
<span class="right enable_text_select" ng-style="{'color':skin.view.viewSecondaryTextColor}">{{btx.message}}</span>
|
|
</li>
|
|
<li ng-if="btx.merchant" class="line-b p10 oh" ng-click="copyToClipboard(btx.merchant.pr.pd.memo)"
|
|
ng-style="{'background':skin.view.viewListItemBackground, 'border-bottom-color':skin.view.viewListItemSeparatorColor}">
|
|
<span class="text-gray" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>Merchant message</span>
|
|
<span class="right enable_text_select" ng-style="{'color':skin.view.viewSecondaryTextColor}">
|
|
{{btx.merchant.pr.pd.memo}}
|
|
</span>
|
|
</li>
|
|
<li ng-if="btx.time" class="line-b p10 oh"
|
|
ng-style="{'background':skin.view.viewListItemBackground, 'border-bottom-color':skin.view.viewListItemSeparatorColor}">
|
|
<span class="text-gray" ng-style="{'color':skin.view.viewPrimaryTextColor}" translate>Confirmations</span>
|
|
<span class="right" ng-style="{'color':skin.view.viewAlertTextColor}">
|
|
<span ng-style="{'color':skin.view.viewAlertTextColor}" ng-show="!btx.confirmations || btx.confirmations == 0" translate>
|
|
Unconfirmed
|
|
</span>
|
|
<span class="label gray radius" ng-show="btx.confirmations>0 && !btx.safeConfirmed"
|
|
ng-style="{'color':skin.view.complementaryColor, 'background-color':skin.view.primaryColor}">
|
|
{{btx.confirmations}}
|
|
</span>
|
|
<span class="label gray radius" ng-show="btx.safeConfirmed"
|
|
ng-style="{'color':skin.view.complementaryColor, 'background-color':skin.view.primaryColor}">
|
|
{{btx.safeConfirmed}}
|
|
</span>
|
|
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
|
|
<div ng-if="btx.actions[0] && isShared">
|
|
<h4 class="title m0" ng-style="{'color':skin.view.viewSectionHeaderColor, 'background':skin.view.viewSectionHeaderBackground}" translate>Participants</h4>
|
|
<ul class="no-bullet size-14 m0">
|
|
<li class="line-b p10 text-gray" ng-style="{'color':skin.view.viewPrimaryTextColor}" ng-repeat="c in btx.actions"
|
|
ng-style="{'background':skin.view.viewListItemBackground, 'border-bottom-color':skin.view.viewListItemSeparatorColor}">
|
|
<i class="icon-contact size-24"></i>
|
|
<span class="right" ng-style="{'color':skin.view.viewSecondaryTextColor}">
|
|
<i ng-if="c.type == 'reject'" class="fi-x icon-sign x db"></i>
|
|
<i ng-if="c.type == 'accept'" class="fi-check icon-sign check db"></i>
|
|
</span>
|
|
{{c.copayerName}} <span ng-if="c.copayerId == copayerId">({{'Me'|translate}})</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div ng-show="btx.txid" class="tx-details-blockchain">
|
|
<div class="text-center m20t">
|
|
<button class="button outline round dark-gray tiny"
|
|
ng-style="{'background':skin.view.secondaryButtonBackground, 'border':skin.view.secondaryButtonBorder, 'color':skin.view.secondaryButtonTextColor}"
|
|
ng-click="$root.openExternalLink('https://' + (getShortNetworkName() == 'test' ? 'test-' : '') + 'insight.bitpay.com/tx/' + btx.txid)">
|
|
<span class="text-gray" ng-style="{'color':skin.view.viewSecondaryTextColor}" translate>See it on the blockchain</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="extra-margin-bottom"></div>
|
|
</div>
|
|
</ion-content>
|
|
</ion-modal-view> |