Skip to content

Commit d42e1d1

Browse files
fix currency errors on v1 (#109)
* fix currency errors on v1 * fix: close cart drawer on completion * chore: fix lint * fix: use quasar screen api --------- Co-authored-by: Vlad Stan <[email protected]>
1 parent 4a26f33 commit d42e1d1

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

static/js/tpos.js

+14-4
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ window.app = Vue.createApp({
9191
},
9292
monochrome: this.$q.localStorage.getItem('lnbits.tpos.color') || false,
9393
showPoS: true,
94-
cartDrawer: this.$q.screen.width > 1200,
94+
cartDrawer: this.$q.screen.gt.md,
9595
searchTerm: '',
9696
categoryFilter: '',
9797
cart: new Map(),
@@ -101,6 +101,7 @@ window.app = Vue.createApp({
101101
computed: {
102102
amount: function () {
103103
if (!this.stack.length) return 0.0
104+
if (this.currency == 'sats') return Number(this.stack.join(''))
104105
return (
105106
this.stack.reduce((acc, dig) => acc * 10 + dig, 0) *
106107
(this.currency == 'sats' ? 1 : 0.01)
@@ -179,7 +180,7 @@ window.app = Vue.createApp({
179180
return items
180181
},
181182
drawerWidth() {
182-
return this.$q.screen.width < 500 ? 375 : 450
183+
return this.$q.screen.lt.sm ? 375 : 450
183184
},
184185
formattedCartTax() {
185186
return this.formatAmount(this.cartTax, this.currency)
@@ -335,7 +336,7 @@ window.app = Vue.createApp({
335336
dialog.show = false
336337
this.atmPin = null
337338
this.atmToken = ''
338-
this.complete.show = true
339+
this.showComplete()
339340
this.atmMode = false
340341
this.connectionWithdraw.close()
341342
}
@@ -476,7 +477,7 @@ window.app = Vue.createApp({
476477
dialog.show = false
477478
this.clearCart()
478479

479-
this.complete.show = true
480+
this.showComplete()
480481
}
481482
})
482483
}, 3000)
@@ -619,11 +620,13 @@ window.app = Vue.createApp({
619620
getRates() {
620621
if (this.currency == 'sats') {
621622
this.exchangeRate = 1
623+
Quasar.Loading.hide()
622624
} else {
623625
LNbits.api
624626
.request('GET', `/tpos/api/v1/rate/${this.currency}`)
625627
.then(response => {
626628
this.exchangeRate = response.data.rate
629+
Quasar.Loading.hide()
627630
})
628631
.catch(e => console.error(e))
629632
}
@@ -689,9 +692,16 @@ window.app = Vue.createApp({
689692
} else {
690693
return LNbits.utils.formatCurrency(Number(amount).toFixed(2), currency)
691694
}
695+
},
696+
showComplete() {
697+
this.complete.show = true
698+
if (this.$q.screen.lt.lg && this.cartDrawer) {
699+
this.cartDrawer = false
700+
}
692701
}
693702
},
694703
created() {
704+
Quasar.Loading.show()
695705
this.tposId = tpos.id
696706
this.currency = tpos.currency
697707
this.atmPremium = tpos.withdraw_premium / 100

templates/tpos/tpos.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ <h5>
244244
show-if-above
245245
bordered
246246
:width="drawerWidth"
247-
:breakpoint="1200"
247+
:breakpoint="1024"
248248
>
249249
<div class="row full-width q-pa-md">
250250
<div class="absolute-top-right q-pa-md">

views.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from http import HTTPStatus
2+
from typing import Optional
23

34
from fastapi import APIRouter, Depends, HTTPException, Request
45
from lnbits.core.models import User
@@ -31,7 +32,7 @@ async def tpos(request: Request, tpos_id):
3132
raise HTTPException(
3233
status_code=HTTPStatus.NOT_FOUND, detail="TPoS does not exist."
3334
)
34-
withdraw_pin_open = 0
35+
withdraw_pin_open: Optional[int] = 0
3536
if tpos.withdraw_pin_disabled:
3637
withdraw_pin_open = tpos.withdraw_pin
3738

0 commit comments

Comments
 (0)