mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 10:43:52 +00:00
61 lines
1.9 KiB
Vue
61 lines
1.9 KiB
Vue
|
<template>
|
||
|
<div
|
||
|
class="flex-align-center justify-content-between w-100"
|
||
|
:class="noButtons ? 'd-inline' : 'd-flex'"
|
||
|
>
|
||
|
<span class="mr-2">{{ bot.botName || bot.botId }}</span>
|
||
|
|
||
|
<div class="flex-align-center" :class="noButtons ? 'd-inline' : 'd-flex'">
|
||
|
<span class="ml-2 align-middle">{{
|
||
|
allIsBotOnline[bot.botId] ? '🟢' : '🔴'
|
||
|
}}</span>
|
||
|
<div v-if="!noButtons" class="d-flex flex-align-cent">
|
||
|
<b-button class="ml-1" size="sm" title="Edit bot" @click="clickRemoveBot(bot)">
|
||
|
<EditIcon :size="16" title="Edit Button" />
|
||
|
</b-button>
|
||
|
<b-button class="ml-1" size="sm" title="Delete bot" @click.prevent="clickRemoveBot(bot)">
|
||
|
<DeleteIcon :size="16" title="Delete Bot" />
|
||
|
</b-button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||
|
import { namespace } from 'vuex-class';
|
||
|
import { MultiBotStoreGetters } from '@/store/modules/botStoreWrapper';
|
||
|
import LoginModal from '@/views/LoginModal.vue';
|
||
|
import EditIcon from 'vue-material-design-icons/Cog.vue';
|
||
|
import DeleteIcon from 'vue-material-design-icons/Delete.vue';
|
||
|
import { BotDescriptor, BotDescriptors } from '@/types';
|
||
|
|
||
|
const ftbot = namespace('ftbot');
|
||
|
|
||
|
@Component({ components: { LoginModal, DeleteIcon, EditIcon } })
|
||
|
export default class BotList extends Vue {
|
||
|
@Prop({ default: false, type: Object }) bot!: BotDescriptor;
|
||
|
|
||
|
@Prop({ default: false, type: Boolean }) noButtons!: boolean;
|
||
|
|
||
|
@ftbot.Getter [MultiBotStoreGetters.allIsBotOnline];
|
||
|
|
||
|
@ftbot.Getter [MultiBotStoreGetters.allAvailableBots]: BotDescriptors;
|
||
|
|
||
|
@ftbot.Action removeBot;
|
||
|
|
||
|
@ftbot.Action selectBot;
|
||
|
|
||
|
clickRemoveBot(botId: BotDescriptor) {
|
||
|
//
|
||
|
this.$bvModal.msgBoxConfirm(`Really remove (logout) from ${botId}?`).then((value: boolean) => {
|
||
|
if (value) {
|
||
|
this.removeBot(botId.botId);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped></style>
|