2023-05-30 11:28:55 +00:00
|
|
|
<template>
|
|
|
|
<b-card no-body class="mb-2">
|
|
|
|
<template #header>
|
2023-05-30 18:43:35 +00:00
|
|
|
<div
|
2023-05-31 18:55:11 +00:00
|
|
|
class="d-flex flex-row align-items-center justify-content-between"
|
2023-05-30 18:43:35 +00:00
|
|
|
role="button"
|
|
|
|
@click="visible = !visible"
|
|
|
|
>
|
2023-05-31 18:55:11 +00:00
|
|
|
<span class="fw-bold fd-italic">Blacklist</span>
|
|
|
|
<i-mdi-chevron-down
|
|
|
|
v-if="!visible"
|
|
|
|
:class="!visible ? 'visible' : 'invisible'"
|
|
|
|
role="button"
|
|
|
|
class="fs-4"
|
|
|
|
@click="visible = !visible"
|
|
|
|
/>
|
|
|
|
<i-mdi-chevron-up
|
|
|
|
v-if="visible"
|
|
|
|
:class="visible ? 'visible' : 'invisible'"
|
|
|
|
role="button"
|
|
|
|
class="fs-4"
|
|
|
|
@click="visible = !visible"
|
|
|
|
/>
|
2023-05-30 11:28:55 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2023-05-31 20:36:04 +00:00
|
|
|
<b-collapse v-model="visible">
|
|
|
|
<b-card-body>
|
|
|
|
<b-input-group v-for="(item, i) in pairlistStore.blacklist" :key="i" class="mb-2">
|
|
|
|
<b-form-input v-model="pairlistStore.blacklist[i]" />
|
|
|
|
<b-input-group-append>
|
|
|
|
<b-button size="sm" @click="pairlistStore.removeFromBlacklist(i)"
|
|
|
|
><i-mdi-close
|
|
|
|
/></b-button>
|
|
|
|
</b-input-group-append>
|
|
|
|
</b-input-group>
|
|
|
|
<b-button @click="pairlistStore.addToBlacklist()">Add</b-button>
|
|
|
|
</b-card-body>
|
|
|
|
</b-collapse>
|
2023-05-30 11:28:55 +00:00
|
|
|
</b-card>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
import { usePairlistConfigStore } from '@/stores/pairlistConfig';
|
|
|
|
const pairlistStore = usePairlistConfigStore();
|
|
|
|
|
|
|
|
const visible = ref(false);
|
|
|
|
</script>
|
2023-05-31 18:55:11 +00:00
|
|
|
<style lang="scss" scoped></style>
|