|
@@ -1,13 +1,18 @@
|
|
<template>
|
|
<template>
|
|
<footer class="nodes-history no-events-container" v-if="history.length">
|
|
<footer class="nodes-history no-events-container" v-if="history.length">
|
|
<b-dropdown
|
|
<b-dropdown
|
|
- :text="$t('history')"
|
|
|
|
variant="outline-dark"
|
|
variant="outline-dark"
|
|
- dropup no-flip
|
|
|
|
|
|
+ dropup no-flip no-caret
|
|
boundary="main"
|
|
boundary="main"
|
|
class="no-events-container"
|
|
class="no-events-container"
|
|
@shown="scrollToEnd"
|
|
@shown="scrollToEnd"
|
|
|
|
+ @hide="shown = false"
|
|
>
|
|
>
|
|
|
|
+ <template #button-content>
|
|
|
|
+ <span class="collapse-icon" :class="{ collapsed: shown }">></span>
|
|
|
|
+ {{ $t('history') }}
|
|
|
|
+ </template>
|
|
|
|
+
|
|
<b-dropdown-text class="dropdown-item-arrow left">
|
|
<b-dropdown-text class="dropdown-item-arrow left">
|
|
<b-button variant="link" @click="onArrowClick('left')" :disabled="leftDisabled"><</b-button>
|
|
<b-button variant="link" @click="onArrowClick('left')" :disabled="leftDisabled"><</b-button>
|
|
</b-dropdown-text>
|
|
</b-dropdown-text>
|
|
@@ -55,7 +60,8 @@ export default {
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
leftDisabled: false,
|
|
leftDisabled: false,
|
|
- rightDisabled: false
|
|
|
|
|
|
+ rightDisabled: false,
|
|
|
|
+ shown: false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
@@ -78,6 +84,7 @@ export default {
|
|
const container = this.$el.querySelector('.dropdown-menu')
|
|
const container = this.$el.querySelector('.dropdown-menu')
|
|
container.scrollTo({ left: container.scrollWidth })
|
|
container.scrollTo({ left: container.scrollWidth })
|
|
this.updateBtnDir()
|
|
this.updateBtnDir()
|
|
|
|
+ this.shown = true
|
|
},
|
|
},
|
|
|
|
|
|
onArrowClick (dir) {
|
|
onArrowClick (dir) {
|
|
@@ -224,5 +231,10 @@ export default {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .collapse-icon {
|
|
|
|
+ margin-right: .25rem;
|
|
|
|
+ font-weight: 700;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|