2021-08-29 08:29:53 +00:00
|
|
|
<template>
|
2021-09-26 09:06:07 +00:00
|
|
|
<div v-if="botCount > 0">
|
2021-08-29 18:17:34 +00:00
|
|
|
<h3 v-if="!small">Available bots</h3>
|
2021-08-29 09:07:41 +00:00
|
|
|
<b-list-group>
|
|
|
|
<b-list-group-item
|
|
|
|
v-for="bot in allAvailableBots"
|
2021-08-29 11:54:45 +00:00
|
|
|
:key="bot.botId"
|
|
|
|
:active="bot.botId === selectedBot"
|
2021-08-29 18:33:48 +00:00
|
|
|
button
|
2021-08-29 11:59:39 +00:00
|
|
|
:title="`${bot.botId} - ${bot.botName} - ${bot.botUrl}`"
|
2021-08-29 11:54:45 +00:00
|
|
|
@click="selectBot(bot.botId)"
|
2021-08-29 09:07:41 +00:00
|
|
|
>
|
2021-08-29 18:17:34 +00:00
|
|
|
<bot-entry :bot="bot" :no-buttons="small" />
|
2021-08-29 09:07:41 +00:00
|
|
|
</b-list-group-item>
|
|
|
|
</b-list-group>
|
2021-08-29 18:17:34 +00:00
|
|
|
<LoginModal v-if="!small" class="mt-2" login-text="Add new bot" />
|
2021-08-29 08:29:53 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-08-29 18:17:34 +00:00
|
|
|
import { Component, Prop, Vue } from 'vue-property-decorator';
|
2021-08-29 08:29:53 +00:00
|
|
|
import { namespace } from 'vuex-class';
|
|
|
|
import { MultiBotStoreGetters } from '@/store/modules/botStoreWrapper';
|
|
|
|
import LoginModal from '@/views/LoginModal.vue';
|
2021-08-29 18:17:34 +00:00
|
|
|
import BotEntry from '@/components/BotEntry.vue';
|
|
|
|
import { BotDescriptors } from '@/types';
|
2021-12-20 19:12:57 +00:00
|
|
|
import StoreModules from '@/store/storeSubModules';
|
2021-08-29 08:29:53 +00:00
|
|
|
|
2021-12-20 19:12:57 +00:00
|
|
|
const ftbot = namespace(StoreModules.ftbot);
|
2021-08-29 08:29:53 +00:00
|
|
|
|
2021-08-29 18:17:34 +00:00
|
|
|
@Component({ components: { LoginModal, BotEntry } })
|
2021-08-29 08:29:53 +00:00
|
|
|
export default class BotList extends Vue {
|
2021-08-29 18:17:34 +00:00
|
|
|
@Prop({ default: false, type: Boolean }) small!: boolean;
|
|
|
|
|
2021-09-26 09:06:07 +00:00
|
|
|
@ftbot.Getter [MultiBotStoreGetters.botCount]: number;
|
|
|
|
|
2021-08-29 09:07:41 +00:00
|
|
|
@ftbot.Getter [MultiBotStoreGetters.selectedBot]: string;
|
|
|
|
|
2021-09-04 08:35:00 +00:00
|
|
|
@ftbot.Getter [MultiBotStoreGetters.allIsBotOnline]: Record<string, boolean>;
|
2021-08-29 12:08:32 +00:00
|
|
|
|
2021-08-29 11:54:45 +00:00
|
|
|
@ftbot.Getter [MultiBotStoreGetters.allAvailableBots]: BotDescriptors;
|
2021-08-29 08:29:53 +00:00
|
|
|
|
2021-08-29 09:07:41 +00:00
|
|
|
@ftbot.Action selectBot;
|
2021-08-29 08:29:53 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped></style>
|