1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00
mailinabox/management/reporting/ui/wbr-text.js
downtownallday 2a0e50c8d4 Initial commit of a log capture and reporting feature
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.
2021-01-11 18:02:07 -05:00

49 lines
1.6 KiB
JavaScript

/*
* This component adds <wbr> elements after all characters given by
* `break_chars` in the given text.
*
* <wbr> enables the browser to wrap long text at those points
* (without it the browser will only wrap at space and hyphen).
*
* Additionally, if `text_break_threshold` is greater than 0 and there
* is a segment of text that exceeds that length, the bootstrap css
* class "text-break" will be added to the <span>, which causes the
* browser to wrap at any character of the text.
*/
Vue.component('wbr-text', {
props: {
text: { type:String, required: true },
break_chars: { type:String, default:'@_.,:+=' },
text_break_threshold: { type:Number, default:0 },
},
render: function(ce) {
var children = [];
var start=-1;
var idx=0;
var longest=-1;
while (idx < this.text.length) {
if (this.break_chars.indexOf(this.text[idx]) != -1) {
var sliver = this.text.substring(start+1, idx+1);
longest = Math.max(longest, sliver.length);
children.push(sliver);
children.push(ce('wbr'));
start=idx;
}
idx++;
}
if (start < this.text.length-1) {
var sliver = this.text.substring(start+1);
longest = Math.max(longest, sliver.length);
children.push(sliver);
}
var data = { };
if (this.text_break_threshold>0 && longest>this.text_break_threshold)
data['class'] = { 'text-break': true };
return ce('span', data, children);
}
});