2018-12-26 21:02:16 +01:00
|
|
|
<template>
|
|
|
|
|
<button class="relative-position animate-bounce">
|
|
|
|
|
<i class="fa fa-2x fa-envelope-o"></i>
|
|
|
|
|
<span class="floating label bg-dark">5</span>
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-menu self="top right">
|
2019-10-24 23:30:18 +02:00
|
|
|
<q-list bordered class="rounded-borders" style="max-width: 350px; min-width: 250px;">
|
|
|
|
|
<q-item-label header>{{$t('msgs.messages')}}</q-item-label>
|
|
|
|
|
|
|
|
|
|
<q-separator inset="item"/>
|
|
|
|
|
|
|
|
|
|
<div v-if="lasts_messages().length === 0">
|
|
|
|
|
<q-item>
|
|
|
|
|
{{$t('msgs.nomessage')}}
|
|
|
|
|
|
|
|
|
|
</q-item>
|
2018-12-26 21:02:16 +01:00
|
|
|
</div>
|
2019-10-24 23:30:18 +02:00
|
|
|
|
|
|
|
|
<q-item clickable v-ripple v-for="(msg, index) in lasts_messages()" :key="index">
|
|
|
|
|
|
|
|
|
|
<q-item-section avatar>
|
|
|
|
|
<q-avatar>
|
|
|
|
|
{{msg.origin.username}}
|
|
|
|
|
<img src="https://cdn.quasar.dev/img/avatar2.jpg">
|
|
|
|
|
</q-avatar>
|
|
|
|
|
</q-item-section>
|
|
|
|
|
|
|
|
|
|
<q-item-section>
|
|
|
|
|
<q-item-label lines="1">{{msg.message}}</q-item-label>
|
|
|
|
|
<q-item-label caption lines="2">
|
|
|
|
|
|
|
|
|
|
</q-item-label>
|
|
|
|
|
</q-item-section>
|
|
|
|
|
|
|
|
|
|
<q-item-section side top>
|
|
|
|
|
{{tools.getstrDateTime(msg.datemsg)}}
|
|
|
|
|
</q-item-section>
|
|
|
|
|
</q-item>
|
|
|
|
|
|
|
|
|
|
<q-separator inset="item"/>
|
|
|
|
|
</q-list>
|
2019-03-11 19:16:39 +01:00
|
|
|
</q-menu>
|
2018-12-26 21:02:16 +01:00
|
|
|
</button>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./messagePopover.ts">
|
|
|
|
|
</script>
|