mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
This adds a new section to the admin panel called "Activity", that supplies charts, graphs and details about messages entering and leaving the host. A new daemon captures details of system mail activity by monitoring the /var/log/mail.log file, summarizing it into a sqllite database that's kept in user-data.
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
Vue.component('chart-table', {
|
|
props: {
|
|
items: Array,
|
|
fields: Array,
|
|
caption: String
|
|
},
|
|
|
|
/* <b-table-lite striped small :fields="fields_x" :items="items" caption-top><template #table-caption><span class="text-nowrap">{{caption}}</span></template></b-table>*/
|
|
render: function(ce) {
|
|
var scopedSlots= {
|
|
'table-caption': props =>
|
|
ce('span', { class: { 'text-nowrap':true }}, this.caption)
|
|
};
|
|
if (this.$scopedSlots) {
|
|
for (var slotName in this.$scopedSlots) {
|
|
scopedSlots[slotName] = this.$scopedSlots[slotName];
|
|
}
|
|
}
|
|
var table = ce('b-table-lite', {
|
|
props: {
|
|
'striped': true,
|
|
'small': true,
|
|
'fields': this.fields_x,
|
|
'items': this.items,
|
|
'caption-top': true
|
|
},
|
|
scopedSlots: scopedSlots
|
|
});
|
|
|
|
return table;
|
|
},
|
|
|
|
computed: {
|
|
fields_x: function() {
|
|
if (this.items.length == 0) {
|
|
return [{
|
|
key: 'no data',
|
|
thClass: 'text-nowrap'
|
|
}];
|
|
}
|
|
return this.fields;
|
|
}
|
|
}
|
|
|
|
});
|