Files
newfreeplanet_OLD/src/components/CSendCoins/CSendCoins.vue

217 lines
6.5 KiB
Vue
Raw Normal View History

2022-09-03 13:06:35 +02:00
<template>
<div>
2023-01-12 01:03:19 +01:00
<q-dialog
v-model="show"
:maximized="$q.screen.lt.sm"
@hide="hide"
@show="qtyRef ? qtyRef.focus() : ''"
>
2022-09-03 13:06:35 +02:00
<q-card class="dialog_card">
<q-toolbar class="bg-primary text-white">
<q-toolbar-title>
{{ $t('circuit.sendcoins') }}
</q-toolbar-title>
<q-btn flat round color="white" icon="close" v-close-popup></q-btn>
</q-toolbar>
<q-card-section class="q-pa-xs inset-shadow">
2022-12-02 10:55:04 +01:00
<q-select
2023-01-12 01:03:19 +01:00
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"
rounded
outlined
v-model="circuitsel"
:options="bothcircuits"
label="Circuito"
>
2022-09-03 13:06:35 +02:00
</q-select>
2022-09-14 11:31:48 +02:00
<CSaldo
v-if="circuitloaded"
2022-09-12 18:36:54 +02:00
:symbol="circuitloaded.symbol"
:color="circuitloaded.color"
2022-09-14 11:31:48 +02:00
:saldo="accountloaded ? accountloaded.saldo : 0"
2023-01-12 01:03:19 +01:00
:qtarem="
accountloaded
? circuitStore.getRemainingCoinsToSend(accountloaded)
: 0
"
>
2022-09-14 11:31:48 +02:00
</CSaldo>
2022-09-12 18:36:54 +02:00
2023-01-12 01:03:19 +01:00
<div>
<q-btn-toggle
v-model="tipoConto"
class="my-custom-toggle"
no-caps
rounded
unelevated
toggle-color="primary"
color="white"
text-color="primary"
:options="[
{ label: 'Utente', value: costanti.AccountType.USER },
{
label: 'Conto Comunitario',
value: costanti.AccountType.COMMUNITY_ACCOUNT,
},
]"
/>
</div>
<q-input
v-if="tipoConto === costanti.AccountType.USER"
v-model="from_username"
label="Mittente"
class="full-width"
readonly
>
2022-09-03 13:06:35 +02:00
</q-input>
2023-01-12 01:03:19 +01:00
<div v-else>
<q-select
v-model="from_groupname"
:options="arrGroupsList"
label="Gruppo"
rounded
emit-value
map-options
>
<!-- Mostra i gruppi su cui sei Admin -->
</q-select>
</div>
<!-- Destination -->
<CMyUserOnlyView
2023-01-12 01:03:19 +01:00
v-if="to_user"
2022-09-13 12:28:33 +02:00
:mycontact="to_user"
:visu="costanti.FIND_PEOPLE"
@setCmd="tools.setCmd"
labelextra="Destinatario"
>
</CMyUserOnlyView>
2022-09-03 13:06:35 +02:00
2023-01-12 01:03:19 +01:00
<CMyGroupOnlyView v-if="to_group" :mygrp="to_group" :visu="costanti.USER_GROUPS"
:circuitname="circuitloaded.name"
labelextra="Destinatario">
</CMyGroupOnlyView>
<div v-if="circuitloaded">
<q-banner
v-if="!circuitloaded.transactionsEnabled"
rounded
class="bg-red text-white"
2023-01-12 01:03:19 +01:00
style="text-align: center"
>
2023-01-12 01:03:19 +01:00
<em style="font-weight: bold">{{
$t('circuit.transactionsEnabled_text')
}}</em
><br />
</q-banner>
2022-09-13 12:28:33 +02:00
<q-input
ref="qtyRef"
class="q-py-sm text-h5"
2023-01-12 01:03:19 +01:00
outlined
v-model="qty"
type="number"
:rules="[
2023-01-12 01:03:19 +01:00
(val) =>
val <= circuitStore.getRemainingCoinsToSend(accountloaded) ||
t('circuit.qta_remaining_to_send', {
maxqta: circuitStore.getRemainingCoinsToSend(accountloaded),
symbol: circuitloaded.symbol,
}),
(val) => val > 0 || t('circuit.qta_not_valid'),
]"
:label="
t('movement.amount_to_send', {
qtamax: circuitStore.getRemainingCoinsToSend(accountloaded)
? circuitStore
.getRemainingCoinsToSend(accountloaded)
.toFixed(2)
: 0 + ` ` + circuitloaded.symbol,
})
"
input-class="text-right"
v-on:keyup.enter="$event.target.nextElementSibling.focus()"
2022-09-13 12:28:33 +02:00
>
<!--val => val > circuitStore.getMaxCoinsToSend(accountloaded) || t('circuit.qta_max_to_send', { maxqta: tools.getRemainingCoinsToSend(accountloaded), symbol: circuitloaded.symbol })]" -->
<template v-slot:append>
<div class="text-h5">
2023-01-12 01:03:19 +01:00
<em
class="q-px-sm text-white rounded-borders"
:style="
`background-color: ` +
(circuitloaded.color ? circuitloaded.color : '#ff5500')
"
>{{ circuitloaded.symbol }}</em
>
2022-09-13 12:28:33 +02:00
</div>
</template>
</q-input>
2022-09-13 12:28:33 +02:00
<q-slider
2022-09-14 11:31:48 +02:00
class="q-ma-xs"
2023-01-12 01:03:19 +01:00
v-if="
qty !== '' &&
circuitStore.getRemainingCoinsToSend(accountloaded) > 0
"
2022-09-13 12:28:33 +02:00
v-model="qty"
color="green"
markers
track-size="10px"
2023-01-12 01:03:19 +01:00
:step="numstep / 2"
2022-09-13 12:28:33 +02:00
:marker-labels="arrayMarkerLabel"
label-always
:label-value="priceLabel"
switch-label-side
switch-marker-labels-side
:inner-max="remainingCoins"
:min="0"
2023-01-12 01:03:19 +01:00
:max="Number(maxsendable ? maxsendable : 0)"
2022-09-13 12:28:33 +02:00
/>
</div>
<q-input
ref="causalRef"
2023-01-12 01:03:19 +01:00
v-model="causal"
label="Note"
class="q-my-sm full-width"
>
2022-09-14 11:31:48 +02:00
</q-input>
2022-09-03 13:06:35 +02:00
</q-card-section>
<q-card-actions align="center">
<q-btn
v-if="circuitloaded"
2023-01-12 01:03:19 +01:00
:disable="
qtyRef
? qtyRef.hasError || !circuitloaded.transactionsEnabled
: false
"
:label="
$t('circuit.sendcoinsto', {
qty,
coin: circuitsel,
dest: to_group ? to_group.groupname : to_user.username,
})
"
color="positive"
@click="sendCoin()"
></q-btn>
<q-btn
flat
:label="$t('dialog.cancel')"
color="primary"
v-close-popup
></q-btn>
2022-09-03 13:06:35 +02:00
</q-card-actions>
</q-card>
</q-dialog>
</div>
</template>
<script lang="ts" src="./CSendCoins.ts">
</script>
<style lang="scss" scoped>
@import './CSendCoins.scss';
</style>