mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
add MessageListGroup component to handle websocket messages
This commit is contained in:
parent
a2705a3651
commit
8eb9001c37
1 changed files with 65 additions and 0 deletions
65
app/src/components/MessageListGroup.vue
Normal file
65
app/src/components/MessageListGroup.vue
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
<template>
|
||||||
|
<b-list-group
|
||||||
|
v-bind="$attrs" ref="self"
|
||||||
|
flush :class="{ 'fixed-height': fixedHeight, 'bordered': bordered }"
|
||||||
|
>
|
||||||
|
<b-list-group-item v-for="({ type, text }, i) in messages" :key="i">
|
||||||
|
<span class="status" :class="'bg-' + type" />
|
||||||
|
<span v-html="text" />
|
||||||
|
</b-list-group-item>
|
||||||
|
</b-list-group>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'MessageListGroup',
|
||||||
|
|
||||||
|
props: {
|
||||||
|
messages: { type: Array, required: true },
|
||||||
|
fixedHeight: { type: Boolean, default: false },
|
||||||
|
bordered: { type: Boolean, default: false },
|
||||||
|
autoScroll: { type: Boolean, default: false }
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
scrollToEnd () {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
const container = this.$refs.self
|
||||||
|
container.scrollTo(0, container.lastElementChild.offsetTop)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
created () {
|
||||||
|
if (this.autoScroll) {
|
||||||
|
this.$watch('messages', this.scrollToEnd)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.fixed-height {
|
||||||
|
max-height: 20vh;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bordered {
|
||||||
|
border: $card-border-width solid $card-border-color;
|
||||||
|
@include border-radius($card-border-radius);
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-group-item {
|
||||||
|
font-size: $font-size-sm;
|
||||||
|
padding: $tooltip-padding-y $tooltip-padding-x;
|
||||||
|
padding-left: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status {
|
||||||
|
position: absolute;
|
||||||
|
width: .4rem;
|
||||||
|
height: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in a new issue