frequi_origin/src/components/ftbot/ForceBuyForm.vue

101 lines
2.2 KiB
Vue
Raw Normal View History

2020-05-14 16:10:57 +00:00
<template>
<div>
<b-modal
id="forcebuy-modal"
ref="modal"
title="Force buying a pair"
@show="resetForm"
@hidden="resetForm"
@ok="handleBuy"
>
<form ref="form" @submit.stop.prevent="handleSubmit">
<b-form-group label="Pair" label-for="pair-input" invalid-feedback="Pair is required">
<b-form-input
id="pair-input"
v-model="pair"
required
2020-08-31 15:43:44 +00:00
@keydown.enter.native="handleBuy"
2020-05-14 16:10:57 +00:00
></b-form-input>
</b-form-group>
<b-form-group
label="*Price [optional]"
label-for="price-input"
invalid-feedback="Price must be empty or a positive number"
>
<b-form-input
id="price-input"
v-model="price"
type="number"
step="0.00000001"
2020-08-31 15:43:44 +00:00
@keydown.enter.native="handleBuy"
2020-05-14 16:10:57 +00:00
></b-form-input>
</b-form-group>
</form>
</b-modal>
</div>
</template>
2020-08-09 13:11:47 +00:00
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
2020-08-29 09:23:39 +00:00
import { ForcebuyPayload } from '@/types';
2020-08-09 13:11:47 +00:00
const ftbot = namespace('ftbot');
@Component({})
export default class ForceBuyForm extends Vue {
pair = '';
price = null;
2020-08-09 13:19:16 +00:00
$refs!: {
form: HTMLFormElement;
};
2020-09-08 13:45:01 +00:00
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2020-08-09 13:11:47 +00:00
@ftbot.Action forcebuy!: (payload: ForcebuyPayload) => Promise<string>;
2020-05-14 16:10:57 +00:00
created() {
2020-08-17 05:17:10 +00:00
this.$bvModal.show('forcebuy-modal');
2020-08-09 13:11:47 +00:00
}
close() {
this.$emit('close');
}
checkFormValidity() {
const valid = this.$refs.form.checkValidity();
return valid;
}
handleBuy(bvModalEvt) {
// Prevent modal from closing
bvModalEvt.preventDefault();
// Trigger submit handler
this.handleSubmit();
}
resetForm() {
this.pair = '';
this.price = null;
}
2020-05-14 16:10:57 +00:00
2020-08-09 13:11:47 +00:00
handleSubmit() {
// Exit when the form isn't valid
if (!this.checkFormValidity()) {
return;
}
// call forcebuy
const payload: ForcebuyPayload = { pair: this.pair };
if (this.price) {
payload.price = Number(this.price);
}
this.forcebuy(payload);
this.$nextTick(() => {
this.$bvModal.hide('forcebuy-modal');
});
}
}
2020-05-14 16:10:57 +00:00
</script>