@@ -91,7 +91,7 @@ window.app = Vue.createApp({
91
91
} ,
92
92
monochrome : this . $q . localStorage . getItem ( 'lnbits.tpos.color' ) || false ,
93
93
showPoS : true ,
94
- cartDrawer : this . $q . screen . width > 1200 ,
94
+ cartDrawer : this . $q . screen . gt . md ,
95
95
searchTerm : '' ,
96
96
categoryFilter : '' ,
97
97
cart : new Map ( ) ,
@@ -101,6 +101,7 @@ window.app = Vue.createApp({
101
101
computed : {
102
102
amount : function ( ) {
103
103
if ( ! this . stack . length ) return 0.0
104
+ if ( this . currency == 'sats' ) return Number ( this . stack . join ( '' ) )
104
105
return (
105
106
this . stack . reduce ( ( acc , dig ) => acc * 10 + dig , 0 ) *
106
107
( this . currency == 'sats' ? 1 : 0.01 )
@@ -179,7 +180,7 @@ window.app = Vue.createApp({
179
180
return items
180
181
} ,
181
182
drawerWidth ( ) {
182
- return this . $q . screen . width < 500 ? 375 : 450
183
+ return this . $q . screen . lt . sm ? 375 : 450
183
184
} ,
184
185
formattedCartTax ( ) {
185
186
return this . formatAmount ( this . cartTax , this . currency )
@@ -335,7 +336,7 @@ window.app = Vue.createApp({
335
336
dialog . show = false
336
337
this . atmPin = null
337
338
this . atmToken = ''
338
- this . complete . show = true
339
+ this . showComplete ( )
339
340
this . atmMode = false
340
341
this . connectionWithdraw . close ( )
341
342
}
@@ -476,7 +477,7 @@ window.app = Vue.createApp({
476
477
dialog . show = false
477
478
this . clearCart ( )
478
479
479
- this . complete . show = true
480
+ this . showComplete ( )
480
481
}
481
482
} )
482
483
} , 3000 )
@@ -619,11 +620,13 @@ window.app = Vue.createApp({
619
620
getRates ( ) {
620
621
if ( this . currency == 'sats' ) {
621
622
this . exchangeRate = 1
623
+ Quasar . Loading . hide ( )
622
624
} else {
623
625
LNbits . api
624
626
. request ( 'GET' , `/tpos/api/v1/rate/${ this . currency } ` )
625
627
. then ( response => {
626
628
this . exchangeRate = response . data . rate
629
+ Quasar . Loading . hide ( )
627
630
} )
628
631
. catch ( e => console . error ( e ) )
629
632
}
@@ -689,9 +692,16 @@ window.app = Vue.createApp({
689
692
} else {
690
693
return LNbits . utils . formatCurrency ( Number ( amount ) . toFixed ( 2 ) , currency )
691
694
}
695
+ } ,
696
+ showComplete ( ) {
697
+ this . complete . show = true
698
+ if ( this . $q . screen . lt . lg && this . cartDrawer ) {
699
+ this . cartDrawer = false
700
+ }
692
701
}
693
702
} ,
694
703
created ( ) {
704
+ Quasar . Loading . show ( )
695
705
this . tposId = tpos . id
696
706
this . currency = tpos . currency
697
707
this . atmPremium = tpos . withdraw_premium / 100
0 commit comments