frequi_origin/src/components/ftbot/TradeList.vue
2020-09-03 06:58:06 +02:00

182 lines
4.8 KiB
Vue

<template>
<div class="h-100 d-flex overflow-auto">
<div>
<b-table
ref="tradesTable"
class="table-sm"
:items="trades"
:fields="tableFields"
show-empty
:empty-text="emptyText"
:per-page="perPage"
:current-page="currentPage"
primary-key="trade_id"
selectable
select-mode="single"
@row-contextmenu="handleContextMenuEvent"
@row-clicked="onRowClicked"
@row-selected="onRowSelected"
>
<template v-slot:cell(actions)="row">
<b-button size="sm" title="Forcesell" @click="forcesellHandler(row.item)"> FS </b-button>
<b-button size="sm" title="Delete trade" @click="removeTradeHandler(row.item)">
RM
</b-button>
</template>
<template v-slot:cell(pair)="row">
<ProfitSymbol :trade="row.item" />
<span>
{{ row.item.pair }}
</span>
</template>
</b-table>
<b-pagination
v-if="!activeTrades"
v-model="currentPage"
:total-rows="rows"
:per-page="perPage"
aria-controls="my-table"
></b-pagination>
</div>
</div>
</template>
<script lang="ts">
import { Component, Vue, Prop } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { formatPercent } from '@/shared/formatters';
import { Trade } from '@/types';
import ProfitSymbol from './ProfitSymbol.vue';
const ftbot = namespace('ftbot');
@Component({
components: { ProfitSymbol },
})
export default class TradeList extends Vue {
$refs!: {
tradesTable: HTMLFormElement;
};
@Prop({ required: true })
trades!: Array<Trade>;
@Prop({ default: 'Trades' })
title!: string;
@Prop({ default: false })
activeTrades!: boolean;
@Prop({ default: 'No Trades to show.' })
emptyText!: string;
@ftbot.State detailTradeId?: number;
@ftbot.Action setDetailTrade;
@ftbot.Action forcesell!: (tradeid: string) => Promise<string>;
@ftbot.Action deleteTrade!: (tradeid: string) => Promise<string>;
currentPage = 1;
selectedItemIndex? = undefined;
get rows(): number {
return this.trades.length;
}
perPage = this.activeTrades ? 200 : 15;
tableFields: Record<string, string | Function>[] = [
{ key: 'trade_id', label: 'ID' },
{ key: 'pair', label: 'Pair' },
{ key: 'amount', label: 'Amount' },
{ key: 'stake_amount', label: 'Stake amount' },
{ key: 'open_rate', label: 'Open rate' },
{
key: this.activeTrades ? 'current_rate' : 'close_rate',
label: this.activeTrades ? 'Current rate' : 'Close rate',
},
{
key: this.activeTrades ? 'current_profit' : 'close_profit',
label: this.activeTrades ? 'Current profit %' : 'Profit %',
formatter: (value) => formatPercent(value, 3),
},
{ key: 'open_date', label: 'Open date' },
{ key: 'close_date', label: 'Close date' },
...(this.activeTrades ? [{ key: 'actions' }] : []),
];
forcesellHandler(item) {
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));
}
});
}
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);
}
removeTradeHandler(item) {
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));
}
});
}
onRowClicked(item, index) {
// Only allow single selection mode!
if (
item &&
item.trade_id !== this.detailTradeId &&
!this.$refs.tradesTable.isRowSelected(index)
) {
this.setDetailTrade(item);
} else {
console.log('unsetting item');
this.setDetailTrade(null);
}
}
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;
}
}
}
}
</script>
<style scoped>
.card-body {
padding: 0 0.2em;
}
</style>