* feat: add shortcuts for insert_query and update_query into `Database`
example: await db.insert("table_name", base_model)
* remove where from argument
* chore: code clean-up
* extension manager
* lnbits-qrcode components
* parse date from dict
* refactor: make `settings` a fixture
* chore: remove verbose key names
* fix: time column
* fix: cast balance to `int`
* extension toggle vue3
* vue3 @input migration
* fix: payment extra and payment hash
* fix dynamic fields and ext db migration
* remove shadow on cards in dark theme
* screwed up and made more css pushes to this branch
* attempt to make chip component in settings dynamic fields
* dynamic chips
* qrscanner
* clean init admin settings
* make get_user better
* add dbversion model
* remove update_payment_status/extra/details
* traces for value and assertion errors
* refactor services
* add PaymentFiatAmount
* return Payment on api endpoints
* rename to get_user_from_account
* refactor: just refactor (#2740)
* rc5
* Fix db cache (#2741)
* [refactor] split services.py (#2742)
* refactor: spit `core.py` (#2743)
* refactor: make QR more customizable
* fix: print.html
* fix: qrcode options
* fix: white shadow on dark theme
* fix: datetime wasnt parsed in dict_to_model
* add timezone for conversion
* only parse timestamp for sqlite, postgres does it
* log internal payment success
* fix: export wallet to phone QR
* Adding a customisable border theme, like gradient (#2746)
* fixed mobile scan btn
* fix test websocket
* fix get_payments tests
* dict_to_model skip none values
* preimage none instead of defaulting to 0000...
* fixup test real invoice tests
* fixed pheonixd for wss
* fix nodemanager test settings
* fix lnbits funding
* only insert extension when they dont exist
---------
Co-authored-by: Vlad Stan <stan.v.vlad@gmail.com>
Co-authored-by: Tiago Vasconcelos <talvasconcelos@gmail.com>
Co-authored-by: Arc <ben@arc.wales>
Co-authored-by: Arc <33088785+arcbtc@users.noreply.github.com>
113 lines
3.4 KiB
HTML
113 lines
3.4 KiB
HTML
<q-dialog v-model="walletDialog.show">
|
|
<q-card class="q-pa-lg" style="width: 700px; max-width: 80vw">
|
|
<h2 class="text-h6 q-mb-md">Wallets</h2>
|
|
<q-dialog v-model="paymentDialog.show">
|
|
<q-card class="q-pa-lg" style="width: 700px; max-width: 80vw">
|
|
<payment-list :wallet="activeWallet" />
|
|
</q-card>
|
|
</q-dialog>
|
|
<q-table :rows="wallets" :columns="walletTable.columns">
|
|
<template v-slot:header="props">
|
|
<q-tr :props="props">
|
|
<q-th auto-width></q-th>
|
|
<q-th
|
|
auto-width
|
|
v-for="col in props.cols"
|
|
v-text="col.label"
|
|
:key="col.name"
|
|
:props="props"
|
|
></q-th>
|
|
</q-tr>
|
|
</template>
|
|
<template v-slot:body="props">
|
|
<q-tr :props="props">
|
|
<q-td auto-width>
|
|
<q-btn
|
|
round
|
|
icon="menu"
|
|
size="sm"
|
|
color="secondary"
|
|
@click="showPayments(props.row.id)"
|
|
>
|
|
<q-tooltip>Show Payments</q-tooltip>
|
|
</q-btn>
|
|
<q-btn
|
|
v-if="!props.row.deleted"
|
|
round
|
|
icon="content_copy"
|
|
size="sm"
|
|
color="primary"
|
|
class="q-ml-xs"
|
|
@click="copyText(props.row.id)"
|
|
>
|
|
<q-tooltip>Copy Wallet ID</q-tooltip>
|
|
</q-btn>
|
|
<lnbits-update-balance
|
|
v-if="!props.row.deleted"
|
|
:wallet_id="props.row.id"
|
|
:callback="topupCallback"
|
|
class="q-ml-xs"
|
|
></lnbits-update-balance>
|
|
<q-btn
|
|
round
|
|
v-if="!props.row.deleted"
|
|
icon="vpn_key"
|
|
size="sm"
|
|
color="primary"
|
|
class="q-ml-xs"
|
|
@click="copyText(props.row.adminkey)"
|
|
>
|
|
<q-tooltip>Copy Admin Key</q-tooltip>
|
|
</q-btn>
|
|
<q-btn
|
|
round
|
|
v-if="!props.row.deleted"
|
|
icon="vpn_key"
|
|
size="sm"
|
|
color="secondary"
|
|
class="q-ml-xs"
|
|
@click="copyText(props.row.inkey)"
|
|
>
|
|
<q-tooltip>Copy Invoice Key</q-tooltip>
|
|
</q-btn>
|
|
<q-btn
|
|
round
|
|
v-if="props.row.deleted"
|
|
icon="toggle_off"
|
|
size="sm"
|
|
color="secondary"
|
|
class="q-ml-xs"
|
|
@click="undeleteUserWallet(props.row.user, props.row.id)"
|
|
>
|
|
<q-tooltip>Undelete Wallet</q-tooltip>
|
|
</q-btn>
|
|
<q-btn
|
|
round
|
|
icon="delete"
|
|
size="sm"
|
|
color="negative"
|
|
class="q-ml-xs"
|
|
@click="deleteUserWallet(props.row.user, props.row.id, props.row.deleted)"
|
|
>
|
|
<q-tooltip>Delete Wallet</q-tooltip>
|
|
</q-btn>
|
|
</q-td>
|
|
<q-td auto-width v-text="props.row.name"></q-td>
|
|
<q-td auto-width v-text="props.row.currency"></q-td>
|
|
<q-td auto-width v-text="formatSat(props.row.balance_msat)"></q-td>
|
|
<q-td auto-width v-text="props.row.deleted"></q-td>
|
|
</q-tr>
|
|
</template>
|
|
</q-table>
|
|
<div class="row q-mt-lg">
|
|
<q-btn
|
|
v-close-popup
|
|
flat
|
|
color="grey"
|
|
class="q-ml-auto"
|
|
:label="$t('close')"
|
|
></q-btn>
|
|
</div>
|
|
</q-card>
|
|
</q-dialog>
|