frequi_origin/src/components/ftbot/TradeList.vue

197 lines
5.3 KiB
Vue
Raw Normal View History

2020-05-04 18:34:59 +00:00
<template>
<div class="h-100 d-flex overflow-auto">
<div>
2020-05-11 18:22:23 +00:00
<b-table
ref="tradesTable"
2020-05-11 18:22:23 +00:00
class="table-sm"
:items="trades"
2020-06-04 18:06:58 +00:00
:fields="tableFields"
2020-05-27 18:24:57 +00:00
show-empty
2020-08-31 15:43:44 +00:00
:empty-text="emptyText"
:per-page="perPage"
:current-page="currentPage"
primary-key="trade_id"
2020-08-29 08:52:33 +00:00
selectable
select-mode="single"
2020-08-31 15:43:44 +00:00
@row-contextmenu="handleContextMenuEvent"
@row-clicked="onRowClicked"
2020-08-29 08:52:33 +00:00
@row-selected="onRowSelected"
2020-05-11 18:22:23 +00:00
>
<template v-slot:cell(actions)="row">
2020-08-31 15:43:44 +00:00
<b-button size="sm" title="Forcesell" @click="forcesellHandler(row.item)"> FS </b-button>
<b-button size="sm" title="Delete trade" @click="removeTradeHandler(row.item)">
2020-08-29 15:31:45 +00:00
RM
</b-button>
2020-05-11 18:22:23 +00:00
</template>
<template v-slot:cell(pair)="row">
<ProfitSymbol :trade="row.item" />
<span>
{{ row.item.pair }}
</span>
</template>
2020-05-11 18:22:23 +00:00
</b-table>
<b-pagination
v-if="!activeTrades"
v-model="currentPage"
:total-rows="rows"
:per-page="perPage"
aria-controls="my-table"
></b-pagination>
</div>
</div>
2020-05-04 18:34:59 +00:00
</template>
2020-06-29 19:14:16 +00:00
<script lang="ts">
import { Component, Vue, Prop, Watch } from 'vue-property-decorator';
2020-06-29 19:14:16 +00:00
import { namespace } from 'vuex-class';
2020-06-29 19:29:09 +00:00
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2020-09-03 05:11:24 +00:00
import { formatPercent, formatPrice } from '@/shared/formatters';
2020-08-29 09:23:39 +00:00
import { Trade } from '@/types';
import ProfitSymbol from './ProfitSymbol.vue';
2020-06-29 19:14:16 +00:00
const ftbot = namespace('ftbot');
@Component({
components: { ProfitSymbol },
})
2020-06-29 19:14:16 +00:00
export default class TradeList extends Vue {
$refs!: {
tradesTable: HTMLFormElement;
};
2020-06-29 19:14:16 +00:00
@Prop({ required: true })
trades!: Array<Trade>;
2020-06-29 19:14:16 +00:00
@Prop({ default: 'Trades' })
title!: string;
@Prop({ default: false })
activeTrades!: boolean;
@Prop({ default: 'No Trades to show.' })
emptyText!: string;
2020-06-29 19:14:16 +00:00
@ftbot.State detailTradeId?: number;
2020-06-29 19:14:16 +00:00
@ftbot.Action setDetailTrade;
2020-06-29 19:14:16 +00:00
2020-08-04 05:19:43 +00:00
@ftbot.Action forcesell!: (tradeid: string) => Promise<string>;
@ftbot.Action deleteTrade!: (tradeid: string) => Promise<string>;
2020-06-29 19:14:16 +00:00
currentPage = 1;
selectedItemIndex? = undefined;
@Watch('detailTradeId')
watchTradeDetail(val) {
const index = this.trades.findIndex((v) => v.trade_id === val);
// Unselect when another tradeTable is selected!
if (index < 0) {
this.$refs.tradesTable.clearSelected();
}
}
get rows(): number {
return this.trades.length;
}
perPage = this.activeTrades ? 200 : 15;
2020-06-29 19:14:16 +00:00
2020-09-03 15:22:52 +00:00
// Added to table-fields for current trades
openFields: Record<string, string | Function>[] = [{ key: 'actions' }];
// Added to table-fields for historic trades
closedFields: Record<string, string | Function>[] = [{ key: 'close_date', label: 'Close date' }];
tableFields: Record<string, string | Function>[] = [
2020-06-29 19:14:16 +00:00
{ key: 'trade_id', label: 'ID' },
{ key: 'pair', label: 'Pair' },
{ key: 'amount', label: 'Amount' },
{ key: 'stake_amount', label: 'Stake amount' },
2020-09-03 05:11:24 +00:00
{ key: 'open_rate', label: 'Open rate', formatter: (value) => formatPrice(value) },
2020-06-29 19:14:16 +00:00
{
key: this.activeTrades ? 'current_rate' : 'close_rate',
label: this.activeTrades ? 'Current rate' : 'Close rate',
2020-09-03 05:11:24 +00:00
formatter: (value) => formatPrice(value),
2020-05-11 18:22:23 +00:00
},
2020-06-29 19:14:16 +00:00
{
key: this.activeTrades ? 'current_profit' : 'close_profit',
2020-08-17 17:55:43 +00:00
label: this.activeTrades ? 'Current profit %' : 'Profit %',
2020-08-25 17:36:14 +00:00
formatter: (value) => formatPercent(value, 3),
2020-06-02 11:05:16 +00:00
},
2020-06-29 19:14:16 +00:00
{ key: 'open_date', label: 'Open date' },
2020-09-03 15:22:52 +00:00
...(this.activeTrades ? this.openFields : this.closedFields),
2020-06-29 19:14:16 +00:00
];
forcesellHandler(item) {
2020-08-29 15:18:56 +00:00
this.$bvModal
.msgBoxConfirm(`Really forcesell trade ${item.trade_id} (Pair ${item.pair})?`)
.then((value: boolean) => {
if (value) {
this.forcesell(item.trade_id)
.then((xxx) => console.log(xxx))
.catch((error) => console.log(error.response));
}
});
2020-06-29 19:14:16 +00:00
}
handleContextMenuEvent(item, index, event) {
// stop browser context menu from appearing
if (!this.activeTrades) {
return;
}
event.preventDefault();
// log the selected item to the console
console.log(item);
}
2020-08-04 06:00:11 +00:00
removeTradeHandler(item) {
2020-08-29 15:18:56 +00:00
console.log(item);
this.$bvModal
.msgBoxConfirm(`Really delete trade ${item.trade_id} (Pair ${item.pair})?`)
.then((value: boolean) => {
if (value) {
this.deleteTrade(item.trade_id).catch((error) => console.log(error.response));
}
});
2020-08-04 05:19:43 +00:00
}
onRowClicked(item, index) {
2020-08-29 08:52:33 +00:00
// Only allow single selection mode!
if (
item &&
item.trade_id !== this.detailTradeId &&
!this.$refs.tradesTable.isRowSelected(index)
) {
this.setDetailTrade(item);
2020-06-29 19:14:16 +00:00
} else {
console.log('unsetting item');
2020-08-29 08:52:33 +00:00
this.setDetailTrade(null);
2020-06-29 19:14:16 +00:00
}
}
onRowSelected(items) {
// console.log('onRowSelected1');
// console.log(items);
if (this.detailTradeId) {
// console.log('onRowSelected2');
const itemIndex = this.trades.findIndex((v) => v.trade_id === this.detailTradeId);
if (itemIndex >= 0) {
this.$refs.tradesTable.selectRow(itemIndex);
} else {
console.log(`Unsetting item for tradeid ${this.selectedItemIndex}`);
this.selectedItemIndex = undefined;
}
}
}
2020-06-29 19:14:16 +00:00
}
2020-05-04 18:34:59 +00:00
</script>
<style scoped>
.card-body {
padding: 0 0.2em;
2020-07-11 18:00:13 +00:00
}
</style>