2021-08-29 18:17:34 +00:00
|
|
|
<template>
|
2021-08-30 05:12:46 +00:00
|
|
|
<div class="d-flex align-items-center justify-content-between w-100">
|
2021-08-29 18:17:34 +00:00
|
|
|
<span class="mr-2">{{ bot.botName || bot.botId }}</span>
|
|
|
|
|
2021-08-30 05:12:46 +00:00
|
|
|
<div class="align-items-center" :class="noButtons ? 'd-inline' : 'd-flex'">
|
2021-08-29 18:17:34 +00:00
|
|
|
<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;
|
|
|
|
|
2021-08-29 18:33:48 +00:00
|
|
|
clickRemoveBot(bot: BotDescriptor) {
|
2021-08-29 18:17:34 +00:00
|
|
|
//
|
2021-08-29 18:33:48 +00:00
|
|
|
this.$bvModal
|
|
|
|
.msgBoxConfirm(`Really remove (logout) from '${bot.botName}' (${bot.botId})?`)
|
|
|
|
.then((value: boolean) => {
|
|
|
|
if (value) {
|
|
|
|
this.removeBot(bot.botId);
|
|
|
|
}
|
|
|
|
});
|
2021-08-29 18:17:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped></style>
|