frequi_origin/src/components/ftbot/TradeList.vue

265 lines
7.3 KiB
Vue
Raw Normal View History

2020-05-04 18:34:59 +00:00
<template>
2021-07-11 18:43:19 +00:00
<div class="h-100 overflow-auto w-100">
2021-07-04 14:12:13 +00:00
<b-table
ref="tradesTable"
small
hover
2021-07-17 15:31:01 +00:00
stacked="md"
2021-07-04 14:12:13 +00:00
:items="trades"
:fields="tableFields"
show-empty
:empty-text="emptyText"
:per-page="perPage"
:current-page="currentPage"
primary-key="trade_id"
selectable
select-mode="single"
2021-08-09 17:56:11 +00:00
:filter="filterText"
2021-07-04 14:12:13 +00:00
@row-contextmenu="handleContextMenuEvent"
@row-clicked="onRowClicked"
@row-selected="onRowSelected"
>
<template #cell(actions)="row">
<b-button class="btn-xs" size="sm" title="Forcesell" @click="forcesellHandler(row.item)">
<ForceSellIcon :size="16" title="Forcesell" />
</b-button>
<b-button
class="btn-xs ml-1"
size="sm"
title="Delete trade"
@click="removeTradeHandler(row.item)"
>
<DeleteIcon :size="16" title="Delete trade" />
</b-button>
</template>
<template #cell(pair)="row">
<ProfitSymbol :trade="row.item" />
<span>
{{
`${row.item.pair}${
row.item.open_order_id === undefined || row.item.open_order_id === null ? '' : '*'
}`
}}
2021-07-04 14:12:13 +00:00
</span>
</template>
<template #cell(profit)="row">
{{ formatPercent(row.item.profit_ratio, 2) }}
<small :title="row.item.stake_currency || stakeCurrency">
{{ `(${formatPriceWithDecimals(row.item.profit_abs)})` }}
</small>
</template>
2021-07-04 14:12:13 +00:00
<template #cell(open_timestamp)="row">
<DateTimeTZ :date="row.item.open_timestamp" />
</template>
<template #cell(close_timestamp)="row">
<DateTimeTZ :date="row.item.close_timestamp" />
</template>
</b-table>
2021-08-09 17:56:11 +00:00
<div class="w-100 d-flex justify-content-between">
<b-pagination
v-if="!activeTrades"
v-model="currentPage"
:total-rows="rows"
:per-page="perPage"
aria-controls="my-table"
></b-pagination>
<b-input
v-if="showFilter"
v-model="filterText"
type="text"
placeholder="Filter"
size="sm"
style="width: unset"
/>
</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
2021-07-01 05:15:11 +00:00
import { formatPercent, formatPrice } from '@/shared/formatters';
2020-08-29 09:23:39 +00:00
import { Trade } from '@/types';
2020-12-28 09:55:42 +00:00
import DeleteIcon from 'vue-material-design-icons/Delete.vue';
import ForceSellIcon from 'vue-material-design-icons/CloseBoxMultiple.vue';
2021-07-01 05:15:11 +00:00
import DateTimeTZ from '@/components/general/DateTimeTZ.vue';
2021-07-17 14:00:15 +00:00
import { BotStoreGetters } from '@/store/modules/ftbot';
import ProfitSymbol from './ProfitSymbol.vue';
2020-06-29 19:14:16 +00:00
const ftbot = namespace('ftbot');
@Component({
2021-07-01 05:15:11 +00:00
components: { ProfitSymbol, DeleteIcon, ForceSellIcon, DateTimeTZ },
})
2020-06-29 19:14:16 +00:00
export default class TradeList extends Vue {
$refs!: {
tradesTable: HTMLFormElement;
};
formatPercent = formatPercent;
formatPrice = formatPrice;
@Prop({ required: true }) trades!: Array<Trade>;
2020-06-29 19:14:16 +00:00
@Prop({ default: 'Trades' }) title!: string;
2020-06-29 19:14:16 +00:00
@Prop({ required: false, default: '' }) stakeCurrency!: string;
2020-06-29 19:14:16 +00:00
@Prop({ default: false }) activeTrades!: boolean;
2020-06-29 19:14:16 +00:00
2021-08-09 17:56:11 +00:00
@Prop({ default: false }) showFilter!: boolean;
@Prop({ default: 'No Trades to show.' }) emptyText!: string;
2020-08-08 18:22:05 +00:00
@ftbot.State detailTradeId?: number;
2020-06-29 19:14:16 +00:00
2021-07-17 14:00:15 +00:00
@ftbot.Getter [BotStoreGetters.stakeCurrencyDecimals]!: number;
@ftbot.Action setDetailTrade;
2020-06-29 19:14:16 +00:00
2020-09-08 13:45:01 +00:00
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2020-08-04 05:19:43 +00:00
@ftbot.Action forcesell!: (tradeid: string) => Promise<string>;
2020-09-08 13:45:01 +00:00
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2020-08-04 05:19:43 +00:00
@ftbot.Action deleteTrade!: (tradeid: string) => Promise<string>;
2020-06-29 19:14:16 +00:00
currentPage = 1;
selectedItemIndex? = undefined;
2021-08-09 17:56:11 +00:00
filterText = '';
@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
2021-02-04 18:35:28 +00:00
closedFields: Record<string, string | Function>[] = [
2021-07-01 05:15:11 +00:00
{ key: 'close_timestamp', label: 'Close date' },
2021-02-04 18:35:28 +00:00
{ key: 'sell_reason', label: 'Close Reason' },
];
2020-09-03 15:22:52 +00:00
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' },
2021-07-30 18:34:12 +00:00
{
key: 'stake_amount',
label: 'Stake amount',
formatter: (value: number) => this.formatPriceWithDecimals(value),
},
2021-07-17 15:31:01 +00:00
{
key: 'open_rate',
label: 'Open rate',
},
2020-06-29 19:14:16 +00:00
{
key: this.activeTrades ? 'current_rate' : 'close_rate',
label: this.activeTrades ? 'Current rate' : 'Close rate',
2020-05-11 18:22:23 +00:00
},
2020-06-29 19:14:16 +00:00
{
key: 'profit',
2020-08-17 17:55:43 +00:00
label: this.activeTrades ? 'Current profit %' : 'Profit %',
2021-07-17 15:31:01 +00:00
formatter: (value: number, key, item: Trade) => {
2021-07-17 15:05:17 +00:00
const percent = formatPercent(item.profit_ratio, 2);
return `${percent} ${`(${this.formatPriceWithDecimals(item.profit_abs)})`}`;
2021-07-17 14:00:15 +00:00
},
2020-06-02 11:05:16 +00:00
},
2021-07-01 05:15:11 +00:00
{ key: 'open_timestamp', 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
];
2021-07-17 14:00:15 +00:00
formatPriceWithDecimals(price) {
return formatPrice(price, this.stakeCurrencyDecimals);
}
forcesellHandler(item: Trade) {
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) {
2021-07-17 14:00:15 +00:00
this.forcesell(String(item.trade_id))
2020-08-29 15:18:56 +00:00
.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
}
}
2020-09-08 13:45:01 +00:00
onRowSelected() {
if (this.detailTradeId) {
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 lang="scss" scoped>
.card-body {
padding: 0 0.2em;
2020-07-11 18:00:13 +00:00
}
.table-sm {
font-size: $fontsize-small;
}
2020-09-12 14:39:52 +00:00
.btn-xs {
padding: 0.1rem 0.25rem;
font-size: 0.75rem;
}
</style>